bsmsapp/terraform/organization/provider.tf

22 lines
454 B
HCL

provider "aws" {
alias = "aws"
region = "us-east-1"
shared_credentials_files = ["~/.aws/credentials"]
profile = "default"
s3_use_path_style = true
skip_requesting_account_id = true
skip_get_ec2_platforms = true
skip_metadata_api_check = true
skip_region_validation = true
skip_credentials_validation = true
default_tags {
tags = {
author = "g3"
version = 1
}
}
}