Skip to content

Instantly share code, notes, and snippets.

@guivin
Created August 21, 2021 10:55
Show Gist options
  • Save guivin/a5f35dc827b4b3564ac7fd00a3997ac2 to your computer and use it in GitHub Desktop.
Save guivin/a5f35dc827b4b3564ac7fd00a3997ac2 to your computer and use it in GitHub Desktop.
terraform/modules/aws-ecs-wordpress/providers.tf
terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 3.46.0"
}
random = {
source = "hashicorp/random"
version = "~> 3.1.0"
}
}
}
provider "aws" {
region = var.region
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment