Skip to content

Commit

Permalink
Merge pull request #8 from opzkit/typo
Browse files Browse the repository at this point in the history
  • Loading branch information
peter-svensson authored May 5, 2022
2 parents d25ee29 + 8d6133a commit 7d35874
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vars.tf
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,6 @@ resource "null_resource" "public_subnet_zones_check_1" {
count = length(var.public_subnet_zones) < 1 && length(var.public_subnet_cidrs) < 1 ? "At least one public zone (or override) must be provided." : 0
}

resource "null_resource" "public_peivate_subnet_zones_check" {
resource "null_resource" "public_private_subnet_zones_check" {
count = length(var.private_subnet_cidrs) > 0 && (keys(var.private_subnet_cidrs) != keys(var.public_subnet_cidrs)) ? "The same zones must be supplied when overriding CIDRs" : 0
}

0 comments on commit 7d35874

Please sign in to comment.