add tofu auto-deployment workflows #12
Workflow file for this run
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
name: Apply OpenTofu plan | |
on: | |
workflow_dispatch: # manual trigger | |
pull_request: # delete! | |
push: | |
branches: | |
- main | |
permissions: | |
contents: read | |
pull-requests: write | |
jobs: | |
apply: | |
runs-on: ubuntu-latest | |
name: Apply pre-prepared plan | |
env: | |
GITHUB_TOKEN: ${{ secrets.TF_GITHUB_TOKEN }} | |
NOMAD_ADDR: ${{ vars.NOMAD_ADDR }} | |
NOMAD_TOKEN: ${{ secrets.NOMAD_TOKEN }} | |
# to access state db | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: add ssh key | |
uses: webfactory/[email protected] | |
with: | |
ssh-private-key: ${{ secrets.TF_SSH_PRIVATE_KEY }} | |
- name: tofu apply | |
uses: dflook/[email protected] | |
with: | |
label: dsekt-infra | |
variables: | | |
hcloud_token = "${{ secrets.TF_HCLOUD_TOKEN }}" | |
cloudflare_api_token = "${{ secrets.TF_CLOUDFLARE_TOKEN }}" | |
ssh_user = "${{ vars.TF_SSH_USER }}" |