我正在使用Ansible创建一个新的EC2实例,并尝试在其上安装一些软件包。问题是我正在向主机组添加新主机,但我无法在另一个游戏中看到该主机组。当它达到“配置EC2实例”时,它说:
播放[配置EC2实例] ***************************************** ********************** 跳过:没有匹配的主机
以下是代码:
---
- name: Provision an EC2 Instance
hosts: localhost
connection: local
gather_facts: False
tags: provisioning
# Necessary Variables for creating/provisioning the EC2 Instance
vars_files:
- vars/variables.yml
- vars/aws_auth.yml
# Task that will be used to Launch/Create an EC2 Instance
tasks:
- name: Create security group
ec2_group:
aws_access_key: "{{ec2_access_key}}"
aws_secret_key: "{{ec2_secret_key}}"
name: "{{ project_name }}_security_group"
description: "{{ project_name }} security group"
region: "{{ aws_region }}"
rules:
- proto: tcp
from_port: 22
to_port: 22
cidr_ip: 0.0.0.0/0
- proto: tcp
from_port: 80
to_port: 80
cidr_ip: 0.0.0.0/0
- proto: tcp
from_port: 443
to_port: 443
cidr_ip: 0.0.0.0/0
rules_egress:
- proto: all
cidr_ip: 0.0.0.0/0
register: basic_firewall
- name: Create an EC2 key
ec2_key:
aws_access_key: "{{ec2_access_key}}"
aws_secret_key: "{{ec2_secret_key}}"
name: "{{ project_name }}-{{ env }}-key"
region: "{{ aws_region }}"
register: ec2_key
- name: save private key
copy:
content: "{{ ec2_key.key.private_key }}"
dest: "private_keys/aws-{{ env }}-private.pem"
mode: 0600
when: ec2_key.changed
- name: Create an EC2 instance
ec2:
aws_access_key: "{{ec2_access_key}}"
aws_secret_key: "{{ec2_secret_key}}"
key_name: "{{ project_name }}-{{ env }}-key"
region: "{{ aws_region }}"
group_id: "{{ basic_firewall.group_id }}"
instance_type: "{{ instance_type }}"
image: "{{ ami }}"
wait: yes
instance_tags:
env: "{{ env }}"
count_tag: env
exact_count: 1
register: ec2
- name: Add new instance to host group
add_host:
name: "{{ item.public_dns_name }}"
groups: launched
with_items: "{{ ec2.tagged_instances }}"
- name: Wait for SSH to come up
wait_for:
host: "{{ item.public_dns_name }}"
port: 22
delay: 60
timeout: 320
state: started
with_items: "{{ ec2.tagged_instances }}"
- name: Refresh inventory to ensure new instaces exist in inventory
meta: refresh_inventory
- name: Configure EC2 instance
hosts: launched
gather_facts: False
tasks:
- debug: var=group_names
- debug: msg="{{ inventory_hostname }}"
- debug: var=hostvars[inventory_hostname]
- debug: msg="groups={{groups}}"
run_once: true
- name: install drush
yum: name=drush state=present
- name: install git
yum: name=git state=present
- name: download Drupal
shell: drush dl drupal-7
这是add_host的输出:
"add_host": {
"groups": [
"launched"
],
"host_name": "xxx.us-east-2.compute.amazonaws.com",
"host_vars": {}
},
以下是ec2.tagged_instances的值:
"tagged_instances": [
{
"ami_launch_index": "0",
"architecture": "x86_64",
"block_device_mapping": {
"/dev/sda1": {
"delete_on_termination": true,
"status": "attached",
"volume_id": "vol-0a095bd6e62ca6xxx"
}
},
"dns_name": "xxx.us-east-2.compute.amazonaws.com",
"ebs_optimized": false,
"groups": {
"sg-90a9bxxx": "xxx_automation_security_group"
},
"hypervisor": "xen",
"id": "i-0f39cd12657aad100",
"image_id": "ami-11aa8c74",
"instance_type": "t2.micro",
"kernel": null,
"key_name": "xxx_automation-staging-key",
"launch_time": "2017-07-19T00:12:52.000Z",
"placement": "us-east-2b",
"private_dns_name": "xxx.us-east-2.compute.internal",
"private_ip": "172.31.24.xxx",
"public_dns_name": "xxx.us-east-2.compute.amazonaws.com",
"public_ip": "18.220.52.xxx",
"ramdisk": null,
"region": "us-east-2",
"root_device_name": "/dev/sda1",
"root_device_type": "ebs",
"state": "running",
"state_code": 16,
"tags": {
"env": "staging"
},
"tenancy": "default",
"virtualization_type": "hvm"
}
答案 0 :(得分:0)
从游戏中移除meta: refresh_inventory
任务。
内存库存不需要它,它会导致Ansible根据文件和动态库存脚本刷新库存。它实际上清除了上一步中创建的内存中库存。