mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-25 08:21:07 -06:00
9 lines
186 B
Go
9 lines
186 B
Go
|
package addrs
|
||
|
|
||
|
// CountAttr is the address of an attribute of the "count" object in
|
||
|
// the interpolation scope, like "count.index".
|
||
|
type CountAttr struct {
|
||
|
referenceable
|
||
|
Name string
|
||
|
}
|