Skip to content

Commit

Permalink
aws modules: fix examples to use FQCN for builtin modules/plugins (an…
Browse files Browse the repository at this point in the history
  • Loading branch information
Andersson007 authored and mandar242 committed Aug 29, 2024
1 parent 77a9ae6 commit 3440a4a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions plugins/modules/elb_classic_lb_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
- community.aws.elb_classic_lb_info:
register: elb_info
- debug:
- ansible.builtin.debug:
msg: "{{ item.dns_name }}"
loop: "{{ elb_info.elbs }}"
Expand All @@ -60,7 +60,7 @@
names: frontend-prod-elb
register: elb_info
- debug:
- ansible.builtin.debug:
msg: "{{ elb_info.elbs.0.dns_name }}"
# Gather information about a set of ELBs
Expand All @@ -70,7 +70,7 @@
- backend-prod-elb
register: elb_info
- debug:
- ansible.builtin.debug:
msg: "{{ item.dns_name }}"
loop: "{{ elb_info.elbs }}"
Expand Down

0 comments on commit 3440a4a

Please sign in to comment.