opentofu/internal/configs/state_encryption.go
Christian Mesh 2f5dcd5c0a
Integrate Encryption into State Backends (#1288)
Signed-off-by: Christian Mesh <christianmesh1@gmail.com>
2024-03-04 09:25:14 -05:00

17 lines
311 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 configs
import "github.com/hashicorp/hcl/v2"
type StateEncryption struct {
Type string
Config hcl.Body
TypeRange hcl.Range
DeclRange hcl.Range
}