-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Separate ansible workflow from terraform check
- Loading branch information
Showing
11 changed files
with
107 additions
and
83 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
# For docs on this see: | ||
# * https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions | ||
# * https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#pull_request | ||
# * https://docs.github.com/en/webhooks/webhook-events-and-payloads?actionType=synchronize#pull_request | ||
on: | ||
pull_request: | ||
types: | ||
- opened | ||
- synchronize # when commits are pushed to the PR | ||
- reopened | ||
- edited # title or body of a pull request was edited, or the base branch of a pull request was changed | ||
|
||
jobs: | ||
ansible: | ||
strategy: | ||
matrix: | ||
environment: ["dev"] | ||
runs-on: ubuntu-latest | ||
defaults: | ||
run: | ||
working-directory: ansible/ | ||
permissions: | ||
pull-requests: write | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Install Ansible | ||
run: | | ||
sudo apt update | ||
sudo apt install software-properties-common | ||
sudo add-apt-repository --yes --update ppa:ansible/ansible-9 | ||
sudo apt install -y ansible | ||
- name: Write devops ssh key to .ssh | ||
run: | | ||
mkdir -p ~/.ssh/ | ||
chmod 700 ~/.ssh/ | ||
echo "${{ secrets.AWS_SSH_KEY }}" > ~/.ssh/ooni-devops-prod.pem | ||
chmod 600 ~/.ssh/ooni-devops-prod.pem | ||
- name: Run Ansible Playbook | ||
id: playbook | ||
env: | ||
ANSIBLE_SSH_ARGS: "-o UserKnownHostsFile=known_hosts" | ||
INVENTORY_FILE_PATH: "tf/modules/ansible_inventory/inventories/inventory-${{ matrix.environment }}.ini" | ||
run: | | ||
echo "ansible_playbook<<EOF" >> "$GITHUB_OUTPUT" | ||
echo "\$ ansible-playbook playbook.yml --check --diff -i $INVENTORY_FILE_PATH" >> "$GITHUB_OUTPUT" | ||
ansible-playbook playbook.yml --check --diff -i $INVENTORY_FILE_PATH \ | ||
--key-file ~/.ssh/ooni-devops-prod.pem 2>&1 | tee -a "$GITHUB_OUTPUT" | ||
echo "EOF" >> "$GITHUB_OUTPUT" | ||
continue-on-error: true | ||
|
||
# This can be uncommmented to make it possible to ssh into the container to debug the run | ||
#- name: Setup tmate session | ||
# uses: mxschmitt/action-tmate@v3 | ||
|
||
- uses: actions/github-script@v6 | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
script: | | ||
const commentTitle = "Ansible Run Output"; | ||
const ansiblePlaybookOutput = `${{ steps.playbook.outputs.ansible_playbook}}`; | ||
const parts = ansiblePlaybookOutput.split(/PLAY RECAP \*+/); | ||
const ansiblePlaybookRecap = parts.length > 1 ? parts[1].trim() : ''; | ||
const commentBody = ` | ||
#### Ansible Playbook Recap 🔍 | ||
\`\`\`\n | ||
${ansiblePlaybookRecap} | ||
\`\`\` | ||
#### Ansible playbook output 📖\`${{ steps.playbook.outcome }}\` | ||
<details><summary>Show Execution</summary> | ||
\`\`\`\n | ||
${ansiblePlaybookOutput} | ||
\`\`\` | ||
</details> | ||
| | | | ||
|-------------------|------------------------------------| | ||
| Pusher | @${{ github.actor }} | | ||
| Action | ${{ github.event_name }} | | ||
| Working Directory | ${{ env.tf_actions_working_dir }} | | ||
| Workflow | ${{ github.workflow }} | | ||
| Last updated | ${(new Date()).toUTCString()} | | ||
`; | ||
// Call the script to write the comment | ||
const script = require('./scripts/ghactions/comment-on-pr.js'); | ||
await script({github, context, core, commentTitle, commentBody}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
variable "server_groups" { | ||
type = map(list(string)) | ||
} | ||
|
||
variable "environment" { | ||
type = string | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters