From a1b225d73a34f7be994c6c9dd0622d501c29f25f Mon Sep 17 00:00:00 2001 From: Rafael Oliveira Date: Thu, 19 Sep 2024 17:44:44 +0200 Subject: [PATCH] add tofu auto-deployment workflows --- .github/workflows/tofu-apply.yml | 25 ++++++++++++++++ .github/workflows/tofu-plan.yml | 51 ++++++++++++++++++++++++++++++++ profiles/users.nix | 12 ++++++++ 3 files changed, 88 insertions(+) create mode 100644 .github/workflows/tofu-apply.yml create mode 100644 .github/workflows/tofu-plan.yml diff --git a/.github/workflows/tofu-apply.yml b/.github/workflows/tofu-apply.yml new file mode 100644 index 0000000..8ee2b41 --- /dev/null +++ b/.github/workflows/tofu-apply.yml @@ -0,0 +1,25 @@ +name: Apply OpenTofu plan + +on: + push: + branches: + - main + +permissions: + contents: read + pull-requests: write + +jobs: + apply: + runs-on: ubuntu-latest + name: Apply pre-prepared plan + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + steps: + - name: checkout + uses: actions/checkout@v4 + + - name: tofu apply + uses: dflook/terraform-apply@v1.44.0 + with: + label: dsekt-infra diff --git a/.github/workflows/tofu-plan.yml b/.github/workflows/tofu-plan.yml new file mode 100644 index 0000000..c99ba8e --- /dev/null +++ b/.github/workflows/tofu-plan.yml @@ -0,0 +1,51 @@ +name: Create OpenTofu plan + +on: [pull_request] + +permissions: + contents: read + pull-requests: write + +jobs: + plan: + runs-on: ubuntu-latest + name: Create a plan for the changes introduced + env: + GITHUB_TOKEN: ${{ secrets.TF_GITHUB_TOKEN }} + + NOMAD_ADDR: ${{ vars.NOMAD_ADDR }} + NOMAD_TOKEN: ${{ secrets.NOMAD_TOKEN }} + + AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} + AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} + + # dflook/tofu-* actions run inside a debian:bullseye container, + # so we cannot use another action to prep the environment + TERRAFORM_PRE_RUN: | + # install nix + curl --proto '=https' --tlsv1.2 -sSf -L https://install.determinate.systems/nix | sh -s -- install linux --no-confirm --init none + . /nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh + ln -s $(which nix) /bin/nix + chown -R root:root /github + + df -h / + echo ----------- + du -ah / 2>/dev/null | sort -nr | head -n30 + + steps: + - name: checkout + uses: actions/checkout@v4 + + - name: add ssh key + uses: webfactory/ssh-agent@v0.9.0 + with: + ssh-private-key: ${{ secrets.TF_SSH_PRIVATE_KEY }} + + - name: tofu plan + uses: dflook/tofu-plan@v1.44.0 + with: + label: dsekt-infra + variables: | + hcloud_token = "${{ secrets.TF_HCLOUD_TOKEN }}" + cloudflare_api_token = "${{ secrets.TF_CLOUDFLARE_TOKEN }}" + ssh_user = "${{ vars.TF_SSH_USER }}" diff --git a/profiles/users.nix b/profiles/users.nix index 282750d..dba211d 100644 --- a/profiles/users.nix +++ b/profiles/users.nix @@ -26,4 +26,16 @@ hashedPassword = "$y$j9T$wGjTUbozJn.GeZyKWYgBc/$U9zB.YZUX5jbmN429t46UmLeFp/CNMf1GMoKOFoUG25"; shell = pkgs.zsh; }; + + # for GitHub actions + users.users.deploy = { + isNormalUser = true; + group = "deploy"; + extraGroups = [ "wheel" ]; + openssh.authorizedKeys.keys = [ + "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIeUB4ftByjQKLMG2cADvuwr0DU+rD+CNCstrSyzCzG+ deploy@infra-gh" + ]; + shell = pkgs.bash; + }; + users.groups.deploy = {}; }