terraform-provider-google/vendor/github.com/hashicorp/terraform/addrs/terraform_attr.go
2019-02-26 14:56:13 -08:00

13 lines
282 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
}