18 lines
398 B
Terraform
18 lines
398 B
Terraform
terraform {
|
|||
|
|
backend "local" {
|
||
|
|
path = "terraform.tfstate"
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
# TODO: Configure remote state (S3, GCS, or Terraform Cloud)
|
||
|
|
# Uncomment when ready:
|
||
|
|
# terraform {
|
||
|
|
# backend "s3" {
|
||
|
|
# bucket = "homelab-terraform-state"
|
||
|
|
# key = "prod/terraform.tfstate"
|
||
|
|
# region = "us-east-1"
|
||
|
|
# encrypt = true
|
||
|
|
# dynamodb_table = "terraform-lock"
|
||
|
|
# }
|
||
|
|
# }
|