我正在使用此播放创建一组新的EC2实例
- hosts: localhost
connection: local
gather_facts: False
tasks:
- name: Provision a set of instances
ec2:
assign_public_ip: yes
aws_access_key: XXXXXXXXXX
aws_secret_key: XXXXXXXXXX
group_id: XXXXXXXXXX
instance_type: t2.micro
image: ami-32a85152
vpc_subnet_id: XXXXXXXXXX
region: XXXXXXXXXX
user_data: "{{ lookup('file', '/SOME_PATH/cloud-config.yaml') }}"
wait: true
exact_count: 1
count_tag:
Name: Demo
instance_tags:
Name: Demo
register: ec2
- name: Add new CoreOS machines to coreos-launched group
add_host: hostname="{{ item.public_ip }}" groups=coreos-launched
with_items: "{{ ec2.instances }}"
- name: Wait for SSH to come up
wait_for: host="{{ item.public_dns_name }}" port=22 delay=60 timeout=320
with_items: "{{ ec2.instances }}"
现在,我需要为每台新机器创建一个SSL / TLS证书。为此,我需要他们的私人IP。但是,我不知道如何访问我在之前的剧中注册的“{{ec2.instances}}”。
我在同一本剧本中尝试过做类似的事情
- hosts: coreos-launched
gather_facts: False
tasks:
- name: Find the current machine IP addresse
command: echo "{{ item.private_ip }}" > /tmp/private_ip
with_items: "{{ ec2.instances }}"
sudo: yes
但没有任何成功。有没有办法在同一个剧本中使用“{{ec2.instances}}”项目但是在不同的游戏中?
- 编辑 -
按照Theo建议,我设法使用
获取实例属性- name: Gather current facts
action: ec2_facts
register: ec2_facts
- name: Use the current facts
command: echo "{{ ec2_facts.ansible_facts.ansible_ec2_local_ipv4 }}"
with_items: "{{ ec2_facts }}"
答案 0 :(得分:2)
了解返回结构(缺少文档)的最佳方法是将其包装在调试任务中。
- name: Debug ec2 variable
debug: var=ec2.instances
从那里开始,按照结构来获取你寻找的变量。
此外(在幂等模型之后),您可以使用ec2_remote_facts模块从实例中获取事实,并在将来的播放/任务中调用它们。
有关调用已注册变量的详细信息,请参阅Variables -- Ansible Documentation。