Skip to content

Commit

Permalink
fix bad default in azure open env (redhat-cop#7016)
Browse files Browse the repository at this point in the history
Co-authored-by: rut31337 <rut31337@gmail.com>
  • Loading branch information
rut31337 and rut31337 authored Sep 14, 2023
1 parent 7ca4fd7 commit c2c5143
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@

- name: Provide installed bastion data as soon as we have it
when:
- azure_bastion_enable | bool
- azure_bastion_enable | default(false) | bool
agnosticd_user_info:
msg:
- "bastion_ssh_command: ssh {{ remote_user }}@bastion.{{ guid }}.{{ cluster_dns_zone }}"
Expand Down
2 changes: 1 addition & 1 deletion ansible/configs/open-environment-azure/post_software.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@

- name: Provide installed bastion data
when:
- azure_bastion_enable | bool
- azure_bastion_enable | default(false) | bool
agnosticd_user_info:
data:
bastion_ssh_command: "ssh {{ remote_user }}@bastion.{{ guid }}.{{ cluster_dns_zone }}"
Expand Down

0 comments on commit c2c5143

Please sign in to comment.