mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-25 16:31:10 -06:00
f3a57db293
Many times now we've seen situations where we need to use addresses as map keys, but not all of our address types are comparable and thus we tend to end up using string representations as keys instead. That's problematic because conversion to string uses type information and some of the address types have string representations that are ambiguous with one another. UniqueKey therefore represents an opaque key that is unique for each functionally-distinct address across all types that implement UniqueKeyer. For this initial commit I've implemented UniqueKeyer only for the Referenceable family of types. These are an easy case because they were all already comparable (intentionally) anyway. Later commits can implement UniqueKeyer for other types that are not naturally comparable, such as any which include a ModuleInstance. This also includes a new type addrs.Set which wraps a map as a set of addresses, using the unique keys to ensure that there can be only one element for each distinct address.
19 lines
429 B
Go
19 lines
429 B
Go
package addrs
|
|
|
|
// TerraformAttr is the address of an attribute of the "terraform" object in
|
|
// the interpolation scope, like "terraform.workspace".
|
|
type TerraformAttr struct {
|
|
referenceable
|
|
Name string
|
|
}
|
|
|
|
func (ta TerraformAttr) String() string {
|
|
return "terraform." + ta.Name
|
|
}
|
|
|
|
func (ta TerraformAttr) UniqueKey() UniqueKey {
|
|
return ta // A TerraformAttr is its own UniqueKey
|
|
}
|
|
|
|
func (ta TerraformAttr) uniqueKeySigil() {}
|