bugfix: Fix Apigee organization properties assignments (#3817)
This commit is contained in:
committed by
GitHub
parent
44d00ed670
commit
ce1d0a6d2a
@@ -38,8 +38,8 @@ resource "google_apigee_organization" "organization" {
|
|||||||
dynamic "property" {
|
dynamic "property" {
|
||||||
for_each = var.organization.properties
|
for_each = var.organization.properties
|
||||||
content {
|
content {
|
||||||
name = properties.key
|
name = property.key
|
||||||
value = properties.value
|
value = property.value
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user