Answers for "aws terraform subnet"

1

aws terraform subnet

resource "aws_subnet" "<name your subnet>" {
    vpc_id = aws_vpc.<name of vpc you created>.id
    cidr_block = "10.0.1.0/24"
  
  tags = { (optional)
      Name = "<name your subnet>"
  }
}
Posted by: Guest on March-30-2021

Browse Popular Code Answers by Language