We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d5b5f3 commit 1fe196dCopy full SHA for 1fe196d
plugins/module_utils/terraform_commands.py
@@ -75,9 +75,9 @@ def apply_plan(
75
command.append("-lock-timeout={0}s".format(lock_timeout))
76
77
for t in targets:
78
- command.extend(["-target", t])
+ command.append(f"-target={t}")
79
for e in excludes:
80
- command.extend(["-exclude", e])
+ command.append(f"-exclude={e}")
81
82
command.append(plan_file_path)
83
@@ -114,7 +114,7 @@ def init(
114
if backend_config:
115
for key, val in backend_config.items():
116
command.extend(["-backend-config", "{0}={1}".format(key, val)])
117
- if backend_config_files:
+ if bckend_config_files:
118
for f in backend_config_files:
119
command.extend(["-backend-config", f])
120
if reconfigure:
0 commit comments