2
0
Fork 0
mirror of https://github.com/bazel-contrib/bazel-lib synced 2024-12-03 11:52:43 +00:00
bazel-lib/.aspect/workflows/terraform/main.tf
2024-02-07 23:43:24 -08:00

16 lines
423 B
HCL

terraform {
required_version = ">= 1.5.0"
backend "gcs" {
bucket = "aw-deployment-terraform-state-bazel-lib"
prefix = "terraform/state"
}
}
locals {
# Project & region of the Workflows deployment. Alternately, you may configure a global `provider
# "google"` with the desired project & region and the Workflows module will default to that.
project = "aw-deployment-bazel-lib"
region = "us-west2"
}