Skip to content

Commit

Permalink
Fixed unqualified global variables. (#80)
Browse files Browse the repository at this point in the history
* Update several unqualified variables used in the Terraform deployment code

Signed-off-by: Andre Araujo <araujo@cloudera.com>
  • Loading branch information
asdaraujo authored Mar 10, 2022
1 parent cd7b5cd commit 8a24377
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions roles/cloudera_deploy/tasks/init.yml
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@

- name: Check Supplied terraform_base_dir variable
when:
- infra_deployment_engine == 'terraform'
- globals.infra_deployment_engine == 'terraform'
ansible.builtin.assert:
that:
- globals.terraform_base_dir is defined
Expand All @@ -242,7 +242,7 @@

- name: Check Supplied terraform_auto_remote_state variable
when:
- infra_deployment_engine == 'terraform'
- globals.infra_deployment_engine == 'terraform'
ansible.builtin.assert:
that:
- (globals.terraform_auto_remote_state|bool is sameas true) or (globals.terraform_auto_remote_state|bool is sameas false)
Expand Down

0 comments on commit 8a24377

Please sign in to comment.