Skip to content

Commit

Permalink
Fix unsafe conditional (#1984) (#1988)
Browse files Browse the repository at this point in the history
[PR #1984/dc7a3fb2 backport][stable-6] Fix unsafe conditional

This is a backport of PR #1984 as merged into main (dc7a3fb).
SUMMARY

This fixes an unsafe conditional in integration tests that was missed by our previous mass updates for unsafe conditionals (#1891 and #1911).

ISSUE TYPE


Bugfix Pull Request

COMPONENT NAME

ADDITIONAL INFORMATION

Reviewed-by: Mark Chappell
  • Loading branch information
patchback[bot] authored Feb 26, 2024
1 parent 512fe44 commit ae6b50d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
register: changed_sg_info
retries: 5
until:
- changed_sg_info.instances[0].security_groups[0].group_id == "{{ sg2.group_id }}"
- changed_sg_info.instances[0].security_groups[0].group_id == sg2.group_id

- name: Change instance state from running to stopped, and change sg and termination protection
amazon.aws.ec2_instance:
Expand Down

0 comments on commit ae6b50d

Please sign in to comment.