我是Ansible的新手,我不確定我的主機文件是什麼樣子,如果我想從本地配置羣集。我的yaml文件如下:使用Ansible Clouldformation模塊配置CoreOS羣集
---
- hosts: coreos
tasks:
- name: Automation CoreOS Cluster
action: cloudformation >
stack_name="automation_ansible_coreos_cluster" state=present
region=us-east-1 disable_rollback=true
template=files/coreos-stable-pv.template
args:
template_parameters:
InstanceType: m1.small
ClusterSize: 3
DiscoveryURL: 'https://discovery.etcd.io/<val>'
KeyPair: Automation
tags:
Stack: ansible-cloudformation-coreos
任何意見將不勝感激。