From 4cc7f413953606cda79596c7682eac0319936199 Mon Sep 17 00:00:00 2001 From: Webster Mudge Date: Thu, 10 Mar 2022 15:38:29 -0500 Subject: [PATCH] Allow complex values in variables parameter of terraform module (#4281) * Allow complex values in variables parameter Signed-off-by: Webster Mudge * Add changelog fragment Signed-off-by: Webster Mudge * Update changelogs fragments formatting Co-authored-by: Felix Fontein Co-authored-by: Felix Fontein --- changelogs/fragments/4281-terraform-complex-variables.yml | 2 ++ plugins/modules/cloud/misc/terraform.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 changelogs/fragments/4281-terraform-complex-variables.yml diff --git a/changelogs/fragments/4281-terraform-complex-variables.yml b/changelogs/fragments/4281-terraform-complex-variables.yml new file mode 100644 index 00000000000..92538791f08 --- /dev/null +++ b/changelogs/fragments/4281-terraform-complex-variables.yml @@ -0,0 +1,2 @@ +bugfixes: + - terraform - fix ``variable`` handling to allow complex values (https://github.com/ansible-collections/community.general/pull/4281). \ No newline at end of file diff --git a/plugins/modules/cloud/misc/terraform.py b/plugins/modules/cloud/misc/terraform.py index 8eca14e712c..310dd77c8e1 100644 --- a/plugins/modules/cloud/misc/terraform.py +++ b/plugins/modules/cloud/misc/terraform.py @@ -443,7 +443,7 @@ def main(): for k, v in variables.items(): variables_args.extend([ '-var', - '{0}={1}'.format(k, v) + '{0}={1}'.format(k, json.dumps(v)) ]) if variables_files: for f in variables_files: