Skip to content

Commit

Permalink
corrected subnets cidr
Browse files Browse the repository at this point in the history
  • Loading branch information
kunduso committed Oct 14, 2023
1 parent 10157dc commit ed8e049
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions variable.tf
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ variable "vpc_cidr" {
}
variable "subnet_cidr_private" {
description = "cidr blocks for the private subnets"
default = ["10.20.30.0/27", "10.20.30.32/27", "10.20.30.64/27"]
default = ["10.20.32.0/27", "10.20.32.32/27", "10.20.32.64/27"]
type = list(any)
}
variable "subnet_cidr_public" {
description = "cidr blocks for the public subnets"
default = ["10.20.30.96/27"]
default = ["10.20.32.96/27"]
type = list(any)
}

0 comments on commit ed8e049

Please sign in to comment.