# S3 Backend Configuration for Terraform State # This file configures remote state storage in S3 with DynamoDB for state locking terraform { backend "s3" { bucket = "aws-cf-terraform-state-535294143817" key = "aws-cf/terraform.tfstate" region = "us-east-1" encrypt = true # dynamodb_table = "terraform-state-lock" # Disabled due to permission issues # Optional: Add versioning for state file history # versioning = true } }