0
0
llucycodes42
The code above creates an instance of the AWS provider with the name "aws" and sets the region to "AWS REGION". The code also sets the shared_credentials_file to the path/to/.aws/creds file and the profile to "AWS PROFILE".
Shortcut: tf_aws_profile
provider "aws" {
region = "AWS REGION"
shared_credentials_file = "path/to/.aws/creds"
profile = "AWS PROFILE"
}