ansible ec2 运行 list 需要是一个实例列表

ansible ec2 running list needs to be a list of instances

我正在尝试使用 ansible 部署 ec2 实例。

我不断收到一条错误消息:

FAILED! => {"msg": "running list needs to be a list of instances to run: None",

site.yml

---
- hosts: hornet
  user: root
  sudo: false
  gather_facts: False
  serial: 1
  roles:
    -  role: ec2

roles/ec2/tasks/main.yml

---
- include_vars: "env.yml"
- name: create an EC2 instance
  local_action:
    module: ec2
    key_name: "{{ key_name }}"
    region: "{{ region }}"
    instance_type: "{{ instance_type }}"
    image: "{{ image }}"
    group_id: "{{ security_group }}"
    wait: yes
    private_ip: "{{ privip }}"
    assign_public_ip: True
    state: running
    instance_tags: { "{{ ectags }}","name: {{ inventory_hostname }}"}
    count: 1
    register: basic_ec2

我在主机文件中有两个主机。

[hornet]
awo-p01-hm02 privip=`UniqueIP` ectags="{purpose:hornetMQ}"
awo-p01-hm03 privip=`UniqueIP` ectags="{purpose:hornetMQ}"

我怀疑你真的想要 state: presentstate: running 用于启动现有实例(您通过 instance_ids: [ ... ] 传递)。

我知道,这非常令人困惑,而且文档不足。 ec2 模块试图做太多事情。 :(