fix sops-nix issue with not creating secrets dir
- caused by inclusion of dbt_profiles path in template
This commit is contained in:
parent
afb138aa94
commit
000409e402
|
@ -4,7 +4,6 @@ let
|
|||
in
|
||||
{
|
||||
sops.templates."dbt_profiles.yml" = {
|
||||
path = "/run/secrets/templates/dbt/profiles.yml";
|
||||
mode = "0600";
|
||||
content = ''
|
||||
baseddata:
|
||||
|
|
|
@ -94,8 +94,8 @@ in {
|
|||
isReadOnly = false;
|
||||
};
|
||||
"/root/.dbt/profiles.yml" = {
|
||||
hostPath = "/run/secrets/templates/dbt/profiles.yml";
|
||||
isReadOnly = false;
|
||||
hostPath = "/run/secrets/rendered/dbt_profiles.yml";
|
||||
isReadOnly = true;
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue