0
1
llucycodes42
You can use the following code to create an aws provider:
aws create-provider --name myprovider --access-key AWS ACCESS KEY --secret-key AWS SECRET KEY --region AWS REGION
Shortcut: tf_aws
provider "aws" {
access_key = "AWS ACCESS KEY"
secret_key = "AWS SECRET KEY"
region = "AWS REGION"
}