From 6606d7cf13fef9edbae21bdb343cb7ddff67476f Mon Sep 17 00:00:00 2001 From: Lance Kuo Date: Thu, 25 May 2017 15:35:03 -0400 Subject: [PATCH] Add workaround for Terraform bug. https://github.com/hashicorp/terraform/issues/13018 --- swarm/variables.tf | 1 + 1 file changed, 1 insertion(+) diff --git a/swarm/variables.tf b/swarm/variables.tf index 13030e9..5bdc016 100644 --- a/swarm/variables.tf +++ b/swarm/variables.tf @@ -35,5 +35,6 @@ variable "domain" {} variable "availability_zones" {} provider "aws" { +// region = "ca-central-1" region = "${var.region}" }