Files
homelab/terraform/state.tf
T

18 lines
398 B
Terraform
Raw Normal View History

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"
# }
# }