Moving fargate things to their own folder

This commit is contained in:
2023-10-04 01:15:32 -07:00
parent caf09a63cb
commit 3029fbb3f6
10 changed files with 127 additions and 4 deletions

24
infra/fargate/backend.tf Normal file
View File

@@ -0,0 +1,24 @@
terraform {
required_version = ">= 0.13"
backend "s3" {
bucket = "project-athens"
key = "infra/fargate/state/build.tfstate"
region = "us-west-1"
encrypt = true
}
required_providers {
aws = {
source = "hashicorp/aws"
version = "4.13.0"
}
}
}
# Base config for using AWS features w/ Terraform
provider "aws" {
access_key = var.aws_key
secret_key = var.aws_secret
region = var.aws_region
max_retries = 1
}