action-ansible-playbook/main.sh

56 lines
1.3 KiB
Bash
Raw Normal View History

2020-03-21 13:01:42 -06:00
#!/bin/sh
2020-03-21 10:06:40 -06:00
set -e
inventory_file="hosts"
vault_password_file=".vault_password"
2020-03-21 10:06:40 -06:00
playbook="$INPUT_PLAYBOOK"
2020-03-24 15:23:41 -06:00
directory="$INPUT_DIRECTORY"
2020-03-21 10:06:40 -06:00
key="$INPUT_KEY"
inventory="$INPUT_INVENTORY"
vault_password="$INPUT_VAULT_PASSWORD"
2020-03-21 10:06:40 -06:00
options="$INPUT_OPTIONS"
if test -z "$playbook"; then
echo "::error::You need to specify 'playbook' input (Ansible playbook filepath)"
2020-03-21 10:06:40 -06:00
exit 1
fi
2020-03-21 13:54:44 -06:00
if test -z "$key"; then
echo "::error::You need to specify 'key' input (SSH private key)"
2020-03-21 13:54:44 -06:00
exit 1
2020-03-21 10:06:40 -06:00
fi
2020-03-21 13:54:44 -06:00
mkdir -p "$HOME/.ssh"
echo "$key" > "$HOME/.ssh/id_rsa"
chmod 600 "$HOME/.ssh/id_rsa"
if test -n "$directory"; then
echo "==> Changing directory to: $directory"
cd "$directory"
fi
2020-04-06 16:01:30 -06:00
if test -n "$options"; then
options="$(echo "$options" | tr '\n' ' ')"
fi
if test -n "$inventory"; then
echo "==> Writing inventory with custom content:"
echo -e "$inventory" | tee "$inventory_file"
options="$options --inventory $inventory_file"
fi
if test -n "$vault_password"; then
echo "==> Setting vault password"
echo "$vault_password" > "$vault_password_file"
options="$options --vault-password-file $vault_password_file"
fi
2020-03-21 10:06:40 -06:00
export ANSIBLE_HOST_KEY_CHECKING=False
export ANSIBLE_FORCE_COLOR=True
2020-04-06 16:01:30 -06:00
echo "[command]ansible-playbook $options $playbook"
ansible-playbook $options $playbook