Terraform or OpenTofu

From docwiki
Revision as of 07:05, 19 April 2024 by Mond (talk | contribs) (main.tf)
Jump to: navigation, search

Example how to configure a simple network in Google via Terraform/OpenTofu

Creating a Network

main.tf

terraform { }

provider "google" {

 project = "linux-lv-test"
 region  = "europe-west1"
 zone    = "europe-west1-d"

}