Skip to content

Commit

Permalink
Don't-Override-With-Empty-Kwargs (#166)
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmadiesa-abu authored Apr 25, 2022
1 parent 92c6c2d commit 35d2892
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cloudify_tf/terraform/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ def from_ctx(ctx, terraform_source, skip_tf=False, **kwargs):
'tfvars': tfvars_name_file,
}
for k in key_word_args.keys():
if k in kwargs:
if k in kwargs and kwargs[k]:
key_word_args[k] = kwargs[k]

tf = Terraform(
Expand Down

0 comments on commit 35d2892

Please sign in to comment.