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

https://github.com/a7d-corp/homelab-instance-tailscale-relay

Config for managing the tailscale-relay instance.
https://github.com/a7d-corp/homelab-instance-tailscale-relay

proxmox terraform virtualisation virtualization

Last synced: 11 months ago
JSON representation

Config for managing the tailscale-relay instance.

Awesome Lists containing this project

README

          

# homelab-instance-tailscale-relay

Config for managing the `tailscale-relay` instance.

## 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
```