Skip to content

Latest commit

 

History

History
23 lines (14 loc) · 585 Bytes

README.md

File metadata and controls

23 lines (14 loc) · 585 Bytes

homelab-instance-template

Template repo for managing an instance.

Managing secrets

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

Decryption:

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

Encryption:

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

Template customisation

Replace all occurrences of INSTANCE-NAME.