devops-exercises/topics/aws/exercises/new_vpc/terraform/main.tf
abregman 03a92d5bea Add different solutions to AWS exercises
Not only console solutions, but also Terraform and Pulumi.

In addition, this change fixes issues #279 and #280
2022-08-24 21:13:39 +03:00

11 lines
169 B
HCL

resource "aws_vpc" "exercise-vpc" {
cidr_block = "10.0.0.0/16"
tags = {
Name = "exercise-vpc"
}
}
output "vpc-id" {
value = aws_vpc.exercise-vpc.id
}