]> git.immae.eu Git - github/fretlink/terraform-provider-statuscake.git/blob - vendor/github.com/hashicorp/terraform/addrs/count_attr.go
Upgrade to 0.12
[github/fretlink/terraform-provider-statuscake.git] / vendor / github.com / hashicorp / terraform / addrs / count_attr.go
1 package addrs
2
3 // CountAttr is the address of an attribute of the "count" object in
4 // the interpolation scope, like "count.index".
5 type CountAttr struct {
6 referenceable
7 Name string
8 }
9
10 func (ca CountAttr) String() string {
11 return "count." + ca.Name
12 }