## Secrets ansible vault secrets are stored in [group_vars/all/vault.yml](group_vars/all/vault.yml) Note that the directory path and filename are important. The format of the file is ```yaml --- become_pass: ``` Secrets required for Terraform can be stored in a file: ex. terraform/.secrets which is already ignored by Git Required variables: ```shell export TF_VAR_cloudflare_token= export TF_VAR_zone_id= export TF_VAR_account_id= export TF_VAR_tunnel_secret= ``` Note the cloudflare token requires Zone/DNS:edit and Account/Cloudflare Tunnel:edit privs I generate tunnel secrets with this command: ```shell hexdump -vn32 -e'4/4 "%08X"' /dev/urandom | base64 -w0 - ```