Mamading Ceesay
Mamading Ceesay
`.novops.yml` is in the root of my repo and reads as follows: ``` environments: dev: # This is a direct sub-key of environment name # Not a sub-key of files...
Manually running `sops --decrypt --output-type dotenv ./enc.env` works fine, so I don't understand why `novops load` is failing.
Dry run is fine... ``` novops load --dry-run --skip-tty-check export RESULT='./enc.env:' export NOVOPS_ENVIRONMENT='dev' ``` ... problem happens at the SOPS decrypt stage. ``` RUST_LOG=novops=debug novops load --skip-tty-check [2025-03-06T15:51:17Z DEBUG novops]...
If I can find time next week, I will. I'm deep in the project that I was looking at this for and managed to get `agebox` working for it. However,...
Deleted `.novops.yml` did contain the following: ``` environments: dev: # This is a direct sub-key of environment name # Not a sub-key of files or variables sops_dotenv: # Use plain...
Thanks @hydai. If I have the time to get a build environment together, I might even take a stab at it myself!
From the error you are getting it's clear that the Docker container isn't able to find the private SSH key for `root`, this is exactly what you should be using...
In the meantime, I'm implementing this: https://github.com/gitleaks/gitleaks
I did implement a `gitleaks` pre-commit hook and it makes an excellent combo with `agebox`.
This overlaps with #146