dev.metalisp.survey/main.tf

9 lines
192 B
Terraform
Raw Normal View History

2024-06-26 17:29:56 +02:00
resource "aws_vpc" "survey-buttler-vpc" {
cidr_block = "10.123.0.0/16"
enable_dns_hostnames = true
enable_dns_support = true
tags = {
Name = "survey-buttler-vpc"
}
}