action-ansible-playbook/action.yml

44 lines
1.2 KiB
YAML
Raw Permalink Normal View History

2020-03-21 10:06:40 -06:00
name: Run Ansible playbook
description: Execute Ansible playbook on selected hosts
branding:
color: red
icon: play
inputs:
playbook:
description: Ansible playbook filepath
required: true
2020-12-06 09:05:44 -07:00
requirements:
description: Ansible Galaxy requirements filepath
required: false
2020-03-24 15:23:19 -06:00
directory:
description: Root directory of Ansible project (defaults to current)
2020-03-24 15:23:19 -06:00
required: false
2020-03-21 10:06:40 -06:00
key:
description: SSH private key used to connect to the host
2020-05-01 12:11:28 -06:00
required: false
inventory:
description: Custom content to write into hosts
required: false
vault_password:
description: The password used for decrypting vaulted files
required: false
known_hosts:
description: Contents of SSH known_hosts file
required: false
2020-03-21 10:06:40 -06:00
options:
description: Extra options that should be passed to ansible-playbook command
required: false
sudo:
description: Set to "true" if root is required for running your playbook
required: false
no_color:
description: Set to "true" if the Ansible output should not include colors (defaults to "false")
required: false
outputs:
output:
description: The captured output of both stdout and stderr from the Ansible Playbook run
2020-03-21 09:36:23 -06:00
runs:
using: node16
2020-05-01 12:11:28 -06:00
main: main.js
2020-05-07 03:41:53 -06:00
post: post.js