aws_subnet terraform aws code example
Example: aws terraform subnet
resource "aws_subnet" "" {
vpc_id = aws_vpc..id
cidr_block = "10.0.1.0/24"
tags = { (optional)
Name = ""
}
}
resource "aws_subnet" "" {
vpc_id = aws_vpc..id
cidr_block = "10.0.1.0/24"
tags = { (optional)
Name = ""
}
}