Ajouter vpc.tf
Some checks failed
Terraform Apply / Terraform Apply (push) Has been cancelled

This commit is contained in:
2025-08-07 13:10:57 +02:00
parent a204e32617
commit b2fc8a5152

10
vpc.tf Normal file
View File

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