From ef16d4f7c8d219bf99e62087b91c4fd6dab62866 Mon Sep 17 00:00:00 2001 From: Chris Long Date: Thu, 24 Jun 2021 21:54:11 -0700 Subject: [PATCH] Fix terraform verify test --- AWS/Terraform/modules/exchange/main.tf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/AWS/Terraform/modules/exchange/main.tf b/AWS/Terraform/modules/exchange/main.tf index 8fb10e5..6c6820c 100644 --- a/AWS/Terraform/modules/exchange/main.tf +++ b/AWS/Terraform/modules/exchange/main.tf @@ -1,3 +1,8 @@ +# Shouldnt need this but alas: https://github.com/hashicorp/terraform-provider-aws/issues/14917 +provider "aws" { + region = var.region +} + resource "aws_instance" "exchange" { instance_type = "t3.xlarge"