Files
terraform-aws-vpc/vpc.tf
Hubert Cornet b2fc8a5152
Some checks failed
Terraform Apply / Terraform Apply (push) Has been cancelled
Ajouter vpc.tf
2025-08-07 13:10:57 +02:00

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"
}
}