Skip to content

Commit

Permalink
save terraform state in s3 (#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenelleman authored Oct 5, 2024
1 parent fc3359b commit 52e222c
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions deployment/backend.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
terraform {
backend "s3" {
bucket = "connections-tfstate" # name of the s3 bucket that was manually created
key = "connections/terraform.tfstate"
region = var.region
encrypt = true
}
}

0 comments on commit 52e222c

Please sign in to comment.