Difference between revisions of "Use loops in task (Ansible)"
Jump to navigation
Jump to search
(3 intermediate revisions by one other user not shown) | |||
Line 25: | Line 25: | ||
</pre> | </pre> | ||
+ | == Related terms == | ||
+ | * <code>[[for]]</code> | ||
+ | * <code>[[with_items:]]</code> | ||
== See also == | == See also == | ||
− | * <code>[[ | + | * <code>[[with_items]]</code> https://docs.ansible.com/ansible/latest/plugins/lookup/items.html |
* [[User ssh access]] | * [[User ssh access]] | ||
+ | * {{Ansible}} | ||
− | [[Category: | + | [[Category:Ansible]] |
[[Category:Server administration]] | [[Category:Server administration]] |
Latest revision as of 16:48, 20 December 2022
Ansible offers two keywords for creating loops: loop
and with_<lookup>
.
$ vim create-users.yml --- - name: Create New Users hosts: all gather_facts: false tasks: - name: Create Users Task user: name: "{{ item }}" state: present password: "{{ default_user_password | password_hash('sha512', 'A512') }}" shell: /bin/bash groups: "{{ admin_group }}" append: true loop: - bob - wendy - lofty - dizzy ...
Related terms[edit]
See also[edit]
with_items
https://docs.ansible.com/ansible/latest/plugins/lookup/items.html- User ssh access
- Ansible: modules, plugins, Playbooks (examples)
ansible-playbook
,ansible-vault
,ansible-inventory
,ansible-config
, Ansible Tower, Ansible Galaxy (Roles) (ansible-galaxy
),ansible-cmdb
,gather facts
,ansible.cfg
,Ansible Molecule
, Ansible collections,register
,template
,--ask-pass
,--ask-become-pass
,remote_user:
,/etc/ansible/hosts
,ansible-doc
,ansible-lint
,.ansible/
,--forks
,--start-at-task
,changelog
,inventory
,Notify:
,ansible HOSTNAME -m ping
,gathering
,/usr/bin/ansible
,ansible -m ping
,ansible.builtin
,hosts: (Ansible)
,set fact:
,when:
,blockinfile:
,become method:
,include:
,git:
, AWX,ansible --help
, Tags, Ansible variables, versions
Advertising: