Terraform or OpenTofu

From docwiki
Revision as of 07:04, 19 April 2024 by Mond (talk | contribs) (Creating a Network)
Jump to: navigation, search

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

Creating a Network

main.tf

<syntaxhighlight lang="c">

terraform { }

provider "google" {

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

}

</syntaxhighlight>