mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-25 18:45:20 -06:00
37 lines
811 B
Go
37 lines
811 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 addrs
|
|
|
|
const (
|
|
IdentTerraform = "terraform"
|
|
IdentTofu = "tofu"
|
|
)
|
|
|
|
func NewTerraformAttr(alias, name string) TerraformAttr {
|
|
return TerraformAttr{
|
|
Name: name,
|
|
Alias: alias,
|
|
}
|
|
}
|
|
|
|
// TerraformAttr is the address of an attribute of the "terraform" and "tofu" object in
|
|
// the interpolation scope, like "terraform.workspace" and "tofu.workspace".
|
|
type TerraformAttr struct {
|
|
referenceable
|
|
Name string
|
|
Alias string
|
|
}
|
|
|
|
func (ta TerraformAttr) String() string {
|
|
return ta.Alias + "." + ta.Name
|
|
}
|
|
|
|
func (ta TerraformAttr) UniqueKey() UniqueKey {
|
|
return ta // A TerraformAttr is its own UniqueKey
|
|
}
|
|
|
|
func (ta TerraformAttr) uniqueKeySigil() {}
|