Hcloud Cost Mgmt #33
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: Hcloud Cost Mgmt | |
on: | |
workflow_dispatch: {} | |
schedule: | |
- cron: '0 17 * * *' | |
jobs: | |
cost-mgmt: | |
permissions: | |
contents: read | |
id-token: write | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: google-github-actions/auth@v2 | |
with: | |
project_id: hallowed-port-433217-t0 | |
workload_identity_provider: projects/507949509448/locations/global/workloadIdentityPools/github/providers/world | |
export_environment_variables: 'true' | |
create_credentials_file: 'true' | |
- name: Set up Cloud SDK | |
uses: google-github-actions/setup-gcloud@v2 | |
- uses: DeterminateSystems/nix-installer-action@v14 | |
with: | |
extra-conf: | | |
accept-flake-config = true | |
- name: Run the Magic Nix Cache | |
uses: DeterminateSystems/magic-nix-cache-action@v8 | |
- name: Tofu Destroy | |
env: | |
HCLOUD_TOKEN: ${{ secrets.HCLOUD_TOKEN }} | |
TAILSCALE_API_KEY: ${{ secrets.TAILSCALE_API_KEY }} | |
TF_VAR_kexec_tarball: "dummy" | |
run: | | |
cd tofu/dev | |
nix run .#tofuWithPlugins -- init | |
nix run .#tofuWithPlugins -- destroy -auto-approve |