From 17a8a2929dbd71786551b1b164fb6c0f6ba3dfee Mon Sep 17 00:00:00 2001 From: Mandar Kulkarni Date: Mon, 21 Oct 2024 14:25:33 -0700 Subject: [PATCH] Update FQDN --- plugins/modules/elb_classic_lb_info.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/modules/elb_classic_lb_info.py b/plugins/modules/elb_classic_lb_info.py index 2115ca70f1e..29950af068f 100644 --- a/plugins/modules/elb_classic_lb_info.py +++ b/plugins/modules/elb_classic_lb_info.py @@ -32,7 +32,7 @@ # 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: @@ -40,7 +40,7 @@ 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 @@ -48,7 +48,7 @@ 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