Skip to content

Commit

Permalink
Add changelog fragment
Browse files Browse the repository at this point in the history
Signed-off-by: Alina Buzachis <abuzachis@redhat.com>
  • Loading branch information
alinabuzachis committed Aug 24, 2023
1 parent 50fa80a commit d86e852
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
4 changes: 4 additions & 0 deletions changelogs/fragments/ansible_lint_sanity_fixes.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
breaking_changes:
- role/aws_setup_credentials - Due to ansible-lint issue, the AWS generated credentials are now stored into variable `aws_setup_credentials__output` instead of `aws_role_credentials` (https://github.com/redhat-cop/cloud.aws_troubleshooting/pull/24)."
- role/connectivity_troubleshooter_validated - Due to ansible-lint issue, the next hop information stored into variable `connectivity_troubleshooter_validate__next_hop` instead of `next_hop` (https://github.com/redhat-cop/cloud.aws_troubleshooting/pull/24)."

Check failure on line 4 in changelogs/fragments/ansible_lint_sanity_fixes.yml

View workflow job for this annotation

GitHub Actions / Ansible Lint

yaml[empty-lines]

Too many blank lines (1 > 0)

Check failure on line 4 in changelogs/fragments/ansible_lint_sanity_fixes.yml

View workflow job for this annotation

GitHub Actions / Ansible Lint

yaml[empty-lines]

Too many blank lines (1 > 0)
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,15 @@
ansible.builtin.include_role:
name: cloud.aws_troubleshooting.aws_setup_credentials
vars:
aws_security_token: '{{ security_token | default(omit) }}'
aws_security_token: "{{ security_token | default(omit) }}"
tags:
- skip_ansible_lint

- name: Trying calling module using generating credentials
module_defaults:
group/aws:
"{{ aws_setup_credentials__output }}"
group/aws: "{{ aws_setup_credentials__output }}"
block:
- name: Get instances to be terminated
amazon.aws.ec2_instance_info:
filters:
instance-state-name: 'running'
instance-state-name: running

0 comments on commit d86e852

Please sign in to comment.