03a92d5bea
Not only console solutions, but also Terraform and Pulumi. In addition, this change fixes issues #279 and #280
11 lines
169 B
HCL
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
|
|
} |