From 0e6c167239c52ca4be6a630bb01f3c99e68dc207 Mon Sep 17 00:00:00 2001 From: Anuj Modi Date: Tue, 1 Oct 2019 13:47:53 -0400 Subject: [PATCH] feat: Update to terraform 0.12.9 --- .terraform-version | 2 +- main.tf | 41 ++++++++++++++++++++++------------------- variables.tf | 10 ++++++---- 3 files changed, 29 insertions(+), 24 deletions(-) diff --git a/.terraform-version b/.terraform-version index b80f98e..0de787f 100644 --- a/.terraform-version +++ b/.terraform-version @@ -1 +1 @@ -0.11.7 +0.12.9 diff --git a/main.tf b/main.tf index cf0060f..e3bad64 100644 --- a/main.tf +++ b/main.tf @@ -1,11 +1,12 @@ data "template_file" "json_config" { - vars { - rds_vpc_ids = "${jsonencode(var.rds_vpc_ids)}" + vars = { + rds_vpc_ids = jsonencode(var.rds_vpc_ids) } template = <