Some checks failed
Terraform Apply / Terraform Apply (push) Has been cancelled
10 lines
202 B
HCL
10 lines
202 B
HCL
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"
|
|
}
|
|
} |