mirror of
https://github.com/bregman-arie/devops-exercises.git
synced 2026-02-06 16:49:12 +00:00
11 lines
169 B
Terraform
11 lines
169 B
Terraform
|
|
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
|
||
|
|
}
|