An open API service indexing awesome lists of open source software.

https://github.com/a7d-corp/homelab-instance-actions-runner

Config for managing the actions-runner instance on Proxmox.
https://github.com/a7d-corp/homelab-instance-actions-runner

proxmox terraform virtualisation virtualization

Last synced: 11 months ago
JSON representation

Config for managing the actions-runner instance on Proxmox.

Awesome Lists containing this project

README

          

# homelab-instance-actions-runner

Proxmox configuration for managing the `actions-runner` Proxmox instance. This instance providers self-hosted github actions runners.

## Managing secrets

Sensitive configuration can be {en,de}crypted using a Vault instance.

Decryption:

```bash
vault write transit/decrypt/tf-encryption-key -format=json ciphertext=$(cat backend-config.enc) | jq -r .data.plaintext | base64 -d > backend-config
```

Encryption:

```bash
vault write transit/encrypt/tf-encryption-key -format=json plaintext=$(cat backend-config | base64 -w 0) | jq -r .data.ciphertext > backend-config.enc
```