Merge pull request #837 from Hestia-Homes/deploy-fastapi-with-terraform

Deploy fastapi with terraform: fix typo in tfstate s3 location
This commit is contained in:
Daniel Roth 2026-03-11 14:37:20 +00:00 committed by GitHub
commit fc4e96ac35
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -14,7 +14,7 @@ data "terraform_remote_state" "engine" {
backend = "s3"
config = {
bucket = "ara-engine-terraform-state",
key = "env:/${var.stage}/teraform.tfstate"
key = "env:/${var.stage}/terraform.tfstate"
region = "eu-west-2"
}
}
@ -23,7 +23,7 @@ data "terraform_remote_state" "categorisation" {
backend = "s3"
config = {
bucket = "categorisation-terraform-state",
key = "env:/${var.stage}/teraform.tfstate"
key = "env:/${var.stage}/terraform.tfstate"
region = "eu-west-2"
}
}