terraform/configs/backend.go

15 lines
231 B
Go
Raw Normal View History

package configs
import (
"github.com/hashicorp/hcl2/hcl"
)
// Backend represents a "backend" block inside a "terraform" block in a module
// or file.
type Backend struct {
Type string
Config hcl.Body
DeclRange hcl.Range
}