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.
- Host: GitHub
- URL: https://github.com/a7d-corp/homelab-instance-actions-runner
- Owner: a7d-corp
- Created: 2022-06-04T10:07:10.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-12-03T20:39:35.000Z (about 3 years ago)
- Last Synced: 2023-03-06T03:13:22.080Z (almost 3 years ago)
- Topics: proxmox, terraform, virtualisation, virtualization
- Language: HCL
- Homepage:
- Size: 13.7 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Codeowners: CODEOWNERS
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
```