2020-03-21 16:06:40 +00:00
|
|
|
# Run Ansible playbook Github Action
|
2020-03-21 15:36:23 +00:00
|
|
|
|
2020-03-22 12:01:58 +00:00
|
|
|
An action that executes given Ansible playbook on selected hosts.
|
|
|
|
|
2020-05-03 16:04:31 +00:00
|
|
|
Should work on any OS, if `ansible-playbook` command is available in `PATH`.
|
|
|
|
|
2020-03-22 12:01:58 +00:00
|
|
|
## Usage
|
|
|
|
|
|
|
|
```yaml
|
|
|
|
- name: Run playbook
|
2020-05-03 09:59:16 +00:00
|
|
|
uses: dawidd6/action-ansible-playbook@v2
|
2020-03-22 12:01:58 +00:00
|
|
|
with:
|
2021-07-26 16:44:13 +00:00
|
|
|
# Required, playbook filepath
|
2020-03-22 12:01:58 +00:00
|
|
|
playbook: deploy.yml
|
2021-07-26 16:44:13 +00:00
|
|
|
# Optional, directory where playbooks live
|
2020-03-24 21:30:07 +00:00
|
|
|
directory: ./
|
2021-07-26 16:44:13 +00:00
|
|
|
# Optional, SSH private key
|
2020-03-22 12:01:58 +00:00
|
|
|
key: ${{secrets.SSH_PRIVATE_KEY}}
|
2021-07-26 16:44:13 +00:00
|
|
|
# Optional, literal inventory file contents
|
2020-03-22 19:30:44 +00:00
|
|
|
inventory: |
|
|
|
|
[all]
|
|
|
|
example.com
|
|
|
|
|
|
|
|
[group1]
|
|
|
|
example.com
|
2021-07-26 16:44:13 +00:00
|
|
|
# Optional, encrypted vault password
|
2020-03-22 19:30:44 +00:00
|
|
|
vault_password: ${{secrets.VAULT_PASSWORD}}
|
2021-07-26 16:44:13 +00:00
|
|
|
# Optional, galaxy requirements filepath
|
|
|
|
requirements: galaxy-requirements.yml
|
|
|
|
# Optional, additional flags to pass to ansible-playbook
|
2020-03-22 12:01:58 +00:00
|
|
|
options: |
|
2021-07-26 16:44:13 +00:00
|
|
|
--inventory .hosts
|
2020-04-06 22:07:48 +00:00
|
|
|
--limit group1
|
2020-03-22 12:01:58 +00:00
|
|
|
--extra-vars hello=there
|
|
|
|
--verbose
|
|
|
|
```
|