aboutsummaryrefslogtreecommitdiffhomepage
path: root/vendor/github.com/hashicorp/terraform/addrs/for_each_attr.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/hashicorp/terraform/addrs/for_each_attr.go')
-rw-r--r--vendor/github.com/hashicorp/terraform/addrs/for_each_attr.go12
1 files changed, 12 insertions, 0 deletions
diff --git a/vendor/github.com/hashicorp/terraform/addrs/for_each_attr.go b/vendor/github.com/hashicorp/terraform/addrs/for_each_attr.go
new file mode 100644
index 0000000..7a63850
--- /dev/null
+++ b/vendor/github.com/hashicorp/terraform/addrs/for_each_attr.go
@@ -0,0 +1,12 @@
1package addrs
2
3// ForEachAttr is the address of an attribute referencing the current "for_each" object in
4// the interpolation scope, addressed using the "each" keyword, ex. "each.key" and "each.value"
5type ForEachAttr struct {
6 referenceable
7 Name string
8}
9
10func (f ForEachAttr) String() string {
11 return "each." + f.Name
12}