diff --git a/vpc.tf b/vpc.tf new file mode 100644 index 0000000..26c7509 --- /dev/null +++ b/vpc.tf @@ -0,0 +1,10 @@ +resource "aws_vpc" "vpc" { + cidr_block = "10.0.0.0/16" + enable_dns_hostnames = true + enable_dns_support = true + + tags = { + Name = "dev-vpc" + Environment = "Production" + } +} \ No newline at end of file