mirror of
https://github.com/multipleof4/git.planetrenox.com.git
synced 2026-01-13 16:07:55 +00:00
16 lines
252 B
HCL
16 lines
252 B
HCL
terraform {
|
|
required_version = ">= 1.6.0"
|
|
required_providers {
|
|
google = {
|
|
source = "hashicorp/google"
|
|
version = "~> 5.0"
|
|
}
|
|
}
|
|
}
|
|
|
|
provider "google" {
|
|
project = var.project_id
|
|
region = "us-west1"
|
|
zone = "us-west1-a"
|
|
}
|