Skip to content

Commit

Permalink
bug(shared): ensure elasticIp is available
Browse files Browse the repository at this point in the history
A when condition has been added to ensure that elasticIp is only fetched when it is actually available.

fixes: quick-fix

Signed-off-by: saurabhkumarkardam <[email protected]>
  • Loading branch information
saurabhkumarkardam committed Nov 8, 2023
1 parent efc455f commit a973e0b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
set_fact:
allocation_ips_stdout: "{{ allocation_ips.stdout }}"
when:
- allocation_ips is defined
- allocation_ips is defined and allocation_ips.stdout is defined

# Create custom values for ambassador edge stack (aes) helm chart
- name: Create custom values for aes helm chart
Expand Down

0 comments on commit a973e0b

Please sign in to comment.