diff --git a/modules/apigee/main.tf b/modules/apigee/main.tf index 225bc5918..2f7a21303 100644 --- a/modules/apigee/main.tf +++ b/modules/apigee/main.tf @@ -38,8 +38,8 @@ resource "google_apigee_organization" "organization" { dynamic "property" { for_each = var.organization.properties content { - name = properties.key - value = properties.value + name = property.key + value = property.value } } }