fix typo in tfstate s3 location

This commit is contained in:
Daniel Roth 2026-03-11 14:36:13 +00:00
parent a14ee7b4ef
commit bf8e65be1f

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