You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
terraform/addrs/terraform_attr.go

13 lines
282 B

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
}