Skip to content

Commit

Permalink
Revert "Allow complex values in variables parameter of terraform modu…
Browse files Browse the repository at this point in the history
  • Loading branch information
felixfontein authored Mar 16, 2022
1 parent 5552738 commit 9618fb9
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions changelogs/fragments/4281-terraform-complex-variables.yml

This file was deleted.

2 changes: 1 addition & 1 deletion plugins/modules/cloud/misc/terraform.py
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ def main():
for k, v in variables.items():
variables_args.extend([
'-var',
'{0}={1}'.format(k, json.dumps(v))
'{0}={1}'.format(k, v)
])
if variables_files:
for f in variables_files:
Expand Down

0 comments on commit 9618fb9

Please sign in to comment.