81 discription note01
yum install の内容を個別に書く
- name: Install git
yum:
name: git
state: present
- name: Install aws-cli
yum:
name: aws-cli
state: present
yum install の内容をまとめて書く。
state を分け書いても、1行にまとめて書いてもいい。
- name: Install yum package
yum: name={{item}} state=latest
with_items:
- git
- aws-cli
- name: Install yum package
yum:
name: "{{ item }}"
state: present
with_items:
- git
- aws-cli
↑の書き方だと警告が出る。
2.7 以降なら、こんな感じ。
- yum:
state: present
name:
- git
- aws-cli
- yum:
state: present
name:
- git
- aws-cli