aboutsummaryrefslogtreecommitdiff
path: root/infrastructure/providers.tf
blob: 8e06505681232d76a4995bf9cd6fcb69393b0e17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
provider "aws" {
  region     = local.aws_region
  access_key = var.aws_access_key
  secret_key = var.aws_secret_key
  default_tags {
    tags = {
      project = "joeac-website"
      owner   = "terraform"
    }
  }
}