provider.tf 366 B

123456789
  1. provider "aws" {
  2. version = "~> 2.29" # Probably only need this one
  3. profile = "default" # Specify this in ~/.aws/config
  4. region = "us-east-2"
  5. # You can specify keys if not provided by the credentials file.
  6. # access_key = "${var.access_key}"
  7. # secret_key = "${var.secret_key}"
  8. # You could also use other forms such as the 'assumerole' functionality.
  9. }