terraform-deploy-wordpress-site / provider.tf
provider.tf
Raw
terraform {
  required_providers {
    aws = {
      source = "hashicorp/aws"
      version = ">= 4.8.0"
    }
  }
}

provider "aws" {
  region  = var.aws_region
  profile = var.aws_profile
}