From 9536ccab3520486e3cc83ebdbdc233e38f511505 Mon Sep 17 00:00:00 2001 From: aatighi Date: Thu, 15 Nov 2018 21:46:08 +1100 Subject: [PATCH] Update elb_target.py (#48701) In the first Examples, the value for target_id has been set as IP Address instead of ID. +label: docsite_pr --- lib/ansible/modules/cloud/amazon/elb_target.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/cloud/amazon/elb_target.py b/lib/ansible/modules/cloud/amazon/elb_target.py index 5351440f6c7..ec969c2092f 100644 --- a/lib/ansible/modules/cloud/amazon/elb_target.py +++ b/lib/ansible/modules/cloud/amazon/elb_target.py @@ -70,7 +70,7 @@ EXAMPLES = ''' # Register an IP address target to a target group - elb_target: target_group_name: myiptargetgroup - target_id: 10.0.0.10 + target_id: i-1234567 state: present # Register an instance target to a target group