Skip to content

Commit

Permalink
add tofu auto-deployment workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
RafDevX committed Sep 19, 2024
1 parent ffac55d commit 7edeabb
Show file tree
Hide file tree
Showing 3 changed files with 76 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/tofu-apply.yml
Original file line number Diff line number Diff line change
@@ -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
with:
label: dsekt-infra
40 changes: 40 additions & 0 deletions .github/workflows/tofu-plan.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
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 }}

steps:
- name: checkout
uses: actions/checkout@v4

- uses: webfactory/[email protected]
with:
ssh-private-key: ${{ secrets.TF_SSH_PRIVATE_KEY }}

- name: install nix
uses: DeterminateSystems/nix-installer-action@v14

- name: tofu plan
uses: dflook/tofu-plan@v1
with:
label: dsekt-infra
variables: |
hcloud_token = "${{ secrets.TF_HCLOUD_TOKEN }}"
cloudflare_api_token = "${{ secrets.TF_CLOUDFLARE_TOKEN }}"
ssh_user = "${{ vars.TF_SSH_USER }}"
11 changes: 11 additions & 0 deletions profiles/users.nix
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,15 @@
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;
};
}

0 comments on commit 7edeabb

Please sign in to comment.