CM> Basically, assuming this were possible somehow, it's what I want to do
CM> (note the same dict key on both sides of assignment):
CM>
CM> hostvars[host].zookeeper_myid = hostvars[host].ec2_private_ip_address
This seems like the thing that someone else helped me figure out how to
do, e.g. I now have as part of my aws-launch.yml playbook:
- name: Add new instance to a temporary group
local_action:
module: add_host
name: "{{ item.public_ip }}"
groups: newly_launched
ec2_tag_Name: "{{ instance_hostname }}"
with_items: ec2.instances
Does that help? (instance_hostname is a variable that I passed in to the
playbook on the command line, which gets set for real at AWS with
instance_tags:
Name: "{{ instance_hostname }}"
in the ec2 launch task.)
-Josh (
j...@care.com)
This email is intended for the person(s) to whom it is addressed and may contain information that is PRIVILEGED or CONFIDENTIAL. Any unauthorized use, distribution, copying, or disclosure by any person other than the addressee(s) is strictly prohibited. If you have received this email in error, please notify the sender immediately by return email and delete the message and any attachments from your system.