5. Terraform Files
Last updated
Last updated
terraform {
backend "remote" {
organization = "xyz"
}
workspaces {
name = "my-project"
}
}terraform {
backend "s3" {
bucket = "my-bucket"
key = "tf-infra/terraform.tfstate"
region = "us-east-1"
dynamodb-table = "terraform-state-locking"
encrypt = true
}
}