Skip to content

Commit

Permalink
Fix Formatting
Browse files Browse the repository at this point in the history
Signed-off-by: Jim Enright <[email protected]>
  • Loading branch information
jimright committed May 5, 2023
1 parent 92952af commit 02b106b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/terraform-cdp-aws-pre-reqs/modules/vpc/defaults.tf
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@

locals {

azs_to_exclude = [ "us-east-1e"] # List of AWS AZs which are not supported by CDP
azs_to_exclude = ["us-east-1e"] # List of AWS AZs which are not supported by CDP

# Create a list of supported zones in the region
# Create a list of supported zones in the region
zones_in_region = tolist(setsubtract(data.aws_availability_zones.zones_in_region.names, local.azs_to_exclude))

# ------- Determine subnet details from inputs -------
subnets_required = {
total = (var.deployment_template == "public") ? length(local.zones_in_region) : 2 * length(local.zones_in_region)
Expand Down

0 comments on commit 02b106b

Please sign in to comment.