⚙️ A GitHub Action for running Ansible playbooks
Go to file
2022-10-21 16:44:44 +02:00
.github build(deps): bump actions/checkout from 2 to 3 (#37) 2022-04-19 19:30:40 +02:00
node_modules node_modules: upgrade 2022-10-21 16:44:44 +02:00
test put test stuff intooo... test/ dir 2021-02-11 17:28:46 +01:00
action.yml Use node16 (#62) 2022-10-15 09:24:02 +02:00
LICENSE init 2020-03-21 17:06:40 +01:00
main.js Add ability to turn off colored output (#32) 2021-08-01 17:03:21 +02:00
package-lock.json node_modules: upgrade 2022-10-21 16:44:44 +02:00
package.json build(deps): bump yaml from 2.1.1 to 2.1.3 (#58) 2022-10-14 08:24:50 +02:00
post.js post: remove arrow 2022-09-01 08:37:48 +02:00
README.md README: update 2021-07-26 18:46:29 +02:00

Run Ansible playbook GitHub Action

An Action that executes given Ansible playbook on selected hosts.

Should work on any OS, if ansible-playbook command is available in PATH.

Usage

- name: Run playbook
  uses: dawidd6/action-ansible-playbook@v2
  with:
    # Required, playbook filepath
    playbook: deploy.yml
    # Optional, directory where playbooks live
    directory: ./
    # Optional, SSH private key
    key: ${{secrets.SSH_PRIVATE_KEY}}
    # Optional, literal inventory file contents
    inventory: |
      [all]
      example.com

      [group1]
      example.com      
    # Optional, SSH known hosts file content
    known_hosts: .known_hosts
    # Optional, encrypted vault password
    vault_password: ${{secrets.VAULT_PASSWORD}}
    # Optional, galaxy requirements filepath
    requirements: galaxy-requirements.yml
    # Optional, additional flags to pass to ansible-playbook
    options: |
      --inventory .hosts
      --limit group1
      --extra-vars hello=there
      --verbose