Skip to content

Commit

Permalink
typo fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mmaciejc committed Nov 11, 2024
1 parent a17eb52 commit 49ba36d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
2 changes: 2 additions & 0 deletions defaults/defaults.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ defaults:
physical_interfaces:
enabled: true
mode: "NONE"
vtis:
enabled: true
sub_interfaces:
mode: "NONE"
ipv4_static_routes:
Expand Down
1 change: 1 addition & 0 deletions fmc_access_rules.tf
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ resource "fmc_access_rules" "access_rule_0" {
lifecycle {
create_before_destroy = false
}

dynamic "destination_dynamic_objects" {
for_each = try(length(each.value.data.destination_dynamic_objects), 0) != 0 ? ["1"] : []
content {
Expand Down
1 change: 1 addition & 0 deletions fmc_devices.tf
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,7 @@ resource "fmc_device_vtep" "vtep" {
]
}


###
# VNI
###
Expand Down
4 changes: 2 additions & 2 deletions fmc_policies.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
###
locals {
res_accesspolicies = flatten([
for domains in local.domains : [
for object in try(domains.policies.access_policies, {}) : object if !contains(local.data_accesspolicies, object.name)
for domain in local.domains : [
for object in try(domain.policies.access_policies, {}) : object if !contains(local.data_accesspolicies, object.name)
]
])
}
Expand Down

0 comments on commit 49ba36d

Please sign in to comment.