use input variables for aws variables

This commit is contained in:
Ryan Malloy 2024-03-28 18:39:16 +00:00
parent 769ce803de
commit ace065d9d2
1 changed files with 12 additions and 11 deletions

View File

@ -5,8 +5,9 @@ terraform {
} }
} }
} }
# Configure the AWS Provider
provider "aws" { provider "aws" {
region = "us-east-1" region = var.aws_region
shared_credentials_files = ["~/.aws/credentials"] access_key = var.aws_access_key
profile = "vscode" secret_key = var.aws_secret_key
} }