Skip to content

Commit

Permalink
Fix | Typo in terraform destroy arguments (#85)
Browse files Browse the repository at this point in the history
  • Loading branch information
angelofenoglio authored Apr 12, 2022
1 parent aa12b75 commit e623836
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion leverage/modules/terraform.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def output(tf, args):
@pass_container
def destroy(tf, args):
""" Destroy infrastructure in this layer. """
exit_code = tf.start_in_layer("destroy", *tf.TF_DEFAULTS_ARGS, *args)
exit_code = tf.start_in_layer("destroy", *tf.TF_DEFAULT_ARGS, *args)

if exit_code:
raise Exit(exit_code)
Expand Down

0 comments on commit e623836

Please sign in to comment.