feat: add terraform infra as code for AWS fargate (#1987)

This commit is contained in:
dan sweeting
2021-02-23 17:10:33 +00:00
committed by GitHub
parent 347f49b2d4
commit d341ef72aa
10 changed files with 287 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 3.0"
}
}
}
provider "aws" {
region = var.region
shared_credentials_file = var.credential_file
profile = var.credential_profile
}