From cf390bec3b69b28b1046d4448e763d63efa8029d Mon Sep 17 00:00:00 2001 From: Anubhav Mishra Date: Mon, 1 Dec 2014 21:55:41 -0800 Subject: [PATCH] Fixed HCL variable declaration --- examples/consul/variables.tf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/consul/variables.tf b/examples/consul/variables.tf index 6bd2b8b20..195a44246 100644 --- a/examples/consul/variables.tf +++ b/examples/consul/variables.tf @@ -6,9 +6,9 @@ variable "aws_region" { # AMI's from http://cloud-images.ubuntu.com/locator/ec2/ variable "aws_amis" { default = { - "eu-west-1": "ami-b1cf19c6", - "us-east-1": "ami-de7ab6b6", - "us-west-1": "ami-3f75767a", - "us-west-2": "ami-21f78e11", + eu-west-1 = "ami-b1cf19c6" + us-east-1 = "ami-de7ab6b6" + us-west-1 = "ami-3f75767a" + us-west-2 = "ami-21f78e11" } }