Model/infrastructure/terraform/lambda/categorisation/provider.tf
2026-02-17 09:26:04 +00:00

16 lines
No EOL
275 B
HCL

terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 4.16"
}
}
backend "s3" {
bucket = "categorisation-terraform-state"
key = "terraform.tfstate"
region = "eu-west-2"
}
required_version = ">= 1.2.0"
}