Terraform or OpenTofu

From docwiki
Revision as of 07:03, 19 April 2024 by Mond (talk | contribs) (Created page with " Example how to configure a simple network in Google via Terraform/OpenTofu == Creating a Network == === main.tf === <syntaxhighlight lang="c"> terraform { } provider "go...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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>