mirror of
https://github.com/whekin/household-bot.git
synced 2026-03-31 17:24:02 +00:00
16 lines
403 B
HCL
16 lines
403 B
HCL
terraform {
|
|
required_version = ">= 1.8.0"
|
|
|
|
backend "gcs" {
|
|
# The bucket will need to be configured via `terraform init -backend-config="bucket=<YOUR_BUCKET>"`
|
|
# or you can hardcode the bucket name here. Since it's a generic module, we leave it to be configured via init args.
|
|
}
|
|
|
|
required_providers {
|
|
google = {
|
|
source = "hashicorp/google"
|
|
version = "~> 6.0"
|
|
}
|
|
}
|
|
}
|