August 2015
Intermediate to advanced
168 pages
3h 32m
English
Equipped with the basic rules explained previously and assuming readers have done a quick dive into YAML fundamentals, we will now begin writing our first playbook. Our problem statement includes the following:
devops group.Now, we will create our first playbook and save it as simple_playbook.yml containing the following code:
--- - hosts: all remote_user: vagrant sudo: yes tasks: - group: name: devops state: present - name: create devops user with admin privileges user: name: devops comment: ...
Read now
Unlock full access