Skip to content

Commit

Permalink
refactor: Update Meraki organization network configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
jon-humphries committed Jun 10, 2024
1 parent 7474d1e commit ed8c332
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions meraki_organization.tf
Original file line number Diff line number Diff line change
Expand Up @@ -34,16 +34,16 @@ output "test" {
# description = "Output the value of local.networks for debugging"
# value = local.networks
# }
resource "meraki_networks" "networks" {
for_each = { for network in local.networks : network.key => network }
# resource "meraki_networks" "networks" {
# for_each = { for network in local.networks : network.key => network }

name = each.value.name
notes = each.value.notes
organization_id = each.value.organization_id
product_types = each.value.product_types
tags = each.value.tags
time_zone = each.value.time_zone
}
# name = each.value.name
# notes = each.value.notes
# organization_id = each.value.organization_id
# product_types = each.value.product_types
# tags = each.value.tags
# time_zone = each.value.time_zone
# }

# locals {
# admins = flatten([
Expand Down

0 comments on commit ed8c332

Please sign in to comment.