Pauls-AWS-Dev-Pod/providers.tf

12 lines
250 B
Terraform
Raw Normal View History

2024-03-28 17:06:06 +00:00
terraform {
required_providers {
aws = {
source = "hashicorp/aws"
}
}
}
provider "aws" {
region = "us-east-1"
shared_credentials_files = ["~/.aws/credentials"]
profile = "vscode"
}