title |
---|
Variables & Secrets |
Digger supports per-project Variables that are made available as environment variables to Terraform / OpenTofu at runtime. Variables are stored on the backend and passed to the job via the Job Spec.
You can manage variables in the TFVars
tab of every project.
There are 2 types of variables: Plain Text and Secret.
They are stored on the backend as-is and are not secured in any special way beyond standard transport and at-rest encryption in the infrastructure. Plain Text variables should only be used for non-sensitive data, like configuration parameters that differ across environments.
These variables are stored in the database encrypted with your organisation's Secret Key. It's an RSA public key that you can create in Organisation Settings. You will not be able to create Secret Variables until you have created your Secret Key as follows:
- Go to your Organisation Settings and click Create Secret Key
- Copy the private key and save it in your GitHub Actions as an org-level secret named
DIGGER_PRIVATE_KEY
By default all variables are exposed as environment variables. You can make them available to Terraform as Input Variables by prefixing their name with TF_VAR_
.