Skip to content

Commit

Permalink
Update FQDN
Browse files Browse the repository at this point in the history
  • Loading branch information
mandar242 committed Oct 21, 2024
1 parent 3186629 commit 17a8a29
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 @@ -32,23 +32,23 @@
# Output format tries to match amazon.aws.elb_classic_lb module input parameters
- name: Gather information about all ELBs
community.aws.elb_classic_lb_info:
amazon.aws.elb_classic_lb_info:
register: elb_info
- ansible.builtin.debug:
msg: "{{ item.dns_name }}"
loop: "{{ elb_info.elbs }}"
- name: Gather information about a particular ELB
community.aws.elb_classic_lb_info:
amazon.aws.elb_classic_lb_info:
names: frontend-prod-elb
register: elb_info
- ansible.builtin.debug:
msg: "{{ elb_info.elbs.0.dns_name }}"
- name: Gather information about a set of ELBs
community.aws.elb_classic_lb_info:
amazon.aws.elb_classic_lb_info:
names:
- frontend-prod-elb
- backend-prod-elb
Expand Down

0 comments on commit 17a8a29

Please sign in to comment.