Created
February 28, 2022 11:26
-
-
Save amaurybsouza/8413a4734fdb84b4ee135eccf5e1266b to your computer and use it in GitHub Desktop.
ansible-variaveisv2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| - hosts: prod | |
| become: true | |
| gather_facts: false | |
| vars: | |
| package: git | |
| tasks: | |
| - name: Install packages on system | |
| apt: | |
| name={{ package }} | |
| state=latest | |
| ... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment