Files
opentf/internal/encryption/keyprovider/external/descriptor.go
AbstractionFactory 5a6d2d3e98 Fixes #2022: Running external commands as a key provider (#2023)
Signed-off-by: AbstractionFactory <179820029+abstractionfactory@users.noreply.github.com>
Signed-off-by: ollevche <ollevche@gmail.com>
Co-authored-by: Oleksandr Levchenkov <ollevche@gmail.com>
2025-01-08 12:08:30 -05:00

36 lines
610 B
Go

// Copyright (c) The OpenTofu Authors
// SPDX-License-Identifier: MPL-2.0
// Copyright (c) 2023 HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
package external
import (
"github.com/opentofu/opentofu/internal/encryption/keyprovider"
)
func New() Descriptor {
return &descriptor{}
}
type Descriptor interface {
keyprovider.Descriptor
TypedConfig() *Config
}
type descriptor struct {
}
func (f descriptor) ID() keyprovider.ID {
return "external"
}
func (f descriptor) TypedConfig() *Config {
return &Config{}
}
func (f descriptor) ConfigStruct() keyprovider.Config {
return f.TypedConfig()
}