Terraform or OpenTofu
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>