* feat: Add Terraform configuration for AWS * feat: Update data models to use string identifiers and add DynamoDB table configurations * feat: Update Terraform S3 backend configuration
10 lines
144 B
HCL
10 lines
144 B
HCL
terraform {
|
|
backend "s3" {
|
|
bucket = "tasker-tf-infra"
|
|
key = "terraform.tfstate"
|
|
region = "eu-north-1"
|
|
}
|
|
}
|
|
|
|
provider "aws" {}
|