Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

terraform VPC setup

//network.tf
resource "aws_vpc" "test-env" {
  cidr_block = "10.0.0.0/16"
  enable_dns_hostnames = true
  enable_dns_support = true
  tags {
    Name = "test-env"
  }
}
Source by medium.com #
 
PREVIOUS NEXT
Tagged: #terraform #VPC #setup
ADD COMMENT
Topic
Name
6+1 =