You've already forked devops-exercises
Add different solutions to AWS exercises
Not only console solutions, but also Terraform and Pulumi. In addition, this change fixes issues #279 and #280
This commit is contained in:
11
topics/aws/exercises/new_vpc/terraform/main.tf
Normal file
11
topics/aws/exercises/new_vpc/terraform/main.tf
Normal file
@@ -0,0 +1,11 @@
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user