1
0
Fork 0
mirror of https://github.com/dawidd6/action-ansible-playbook.git synced 2024-11-21 23:19:24 +00:00
action-ansible-playbook/README.md

46 lines
1.3 KiB
Markdown
Raw Permalink Normal View History

2021-07-26 16:46:29 +00:00
# Run Ansible playbook GitHub Action
2020-03-21 15:36:23 +00:00
2021-07-26 16:46:29 +00:00
An Action that executes given Ansible playbook on selected hosts.
2020-03-22 12:01:58 +00:00
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: ./
# Optional, ansible configuration file content (ansible.cfg)
configuration: |
[defaults]
callbacks_enabled = ansible.posix.profile_tasks, ansible.posix.timer
stdout_callback = yaml
nocows = false
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
inventory: |
[all]
example.com
[group1]
example.com
2021-07-26 16:46:29 +00:00
# Optional, SSH known hosts file content
2023-04-06 07:11:50 +00:00
known_hosts: |
example.com ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOMqqnkVzrm0SdG6UOoqKLsabgH5C9okWi0dh2l9GKJl
2021-07-26 16:44:13 +00:00
# Optional, encrypted vault password
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
```