File tree Expand file tree Collapse file tree 2 files changed +12
-6
lines changed
v1.12.x/docs/language/block
v1.13.x/docs/language/block Expand file tree Collapse file tree 2 files changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -26,11 +26,14 @@ The following `module` block includes all built-in arguments:
2626``` hcl
2727import {
2828 to = resource.type.address
29- id = "cloud-provider-id"
30- for_each = { # `for_each` accepts a map or a set of strings
29+ id = "cloud-provider-id" # `id` is mutually exclusive with `identity`
30+ identity = { # `identity` is mutually exclusive with `id`
31+ <ATTRIBUTE> = <VALUE>
32+ }
33+ for_each = { # `for_each` accepts a map or a set of strings
3134 <KEY> = <VALUE>
3235 }
33- for_each = [ # `for_each` accepts a map or a set of strings
36+ for_each = [ # `for_each` accepts a map or a set of strings
3437 "<VALUE>",
3538 "<VALUE>"
3639 ]
Original file line number Diff line number Diff line change @@ -26,11 +26,14 @@ The following `module` block includes all built-in arguments:
2626``` hcl
2727import {
2828 to = resource.type.address
29- id = "cloud-provider-id"
30- for_each = { # `for_each` accepts a map or a set of strings
29+ id = "cloud-provider-id" # `id` is mutually exclusive with `identity`
30+ identity = { # `identity` is mutually exclusive with `id`
31+ <ATTRIBUTE> = <VALUE>
32+ }
33+ for_each = { # `for_each` accepts a map or a set of strings
3134 <KEY> = <VALUE>
3235 }
33- for_each = [ # `for_each` accepts a map or a set of strings
36+ for_each = [ # `for_each` accepts a map or a set of strings
3437 "<VALUE>",
3538 "<VALUE>"
3639 ]
You can’t perform that action at this time.
0 commit comments