This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ######################################################################################## | |
| # # | |
| # Create a new subnet in az-1a and associate it with the az-1a route table # | |
| # # | |
| ######################################################################################## | |
| resource "aws_subnet" "extra_az_1a" { | |
| vpc_id = var.eks_vpc_id | |
| cidr_block = "100.64.0.0/19" | |
| availability_zone = "eu-west-1a" |