Create versions.tf

This commit is contained in:
2025-09-11 12:08:12 -07:00
committed by GitHub
parent 093f6ad1c4
commit bf55149e9f

15
terraform/versions.tf Normal file
View File

@@ -0,0 +1,15 @@
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"
}