Challenge 2: Your very first provisioning
Previous Challenge Next Challenge
Introduction
We’ll need to create a VM in one of the next challenges, and that requires a network & subnet.
Description
Create a new network through Terraform with a single subnet in a region that’s close to you using the CIDR block 10.0.10.0/24
. Make sure that the project and the CIDR block are variables named gcp_project
and cidr_block
.
Success Criteria
- There’s a single subnet with the provided CIDR block in a new network, created by Terraform
- Both the project and CIDR block are passed through as variables
- All of this configuration is in the Cloud Source Repository