1
0
Fork 0
mirror of https://github.com/Mic92/sops-nix.git synced 2025-03-05 08:07:16 +00:00
sops-nix/pkgs/sops-install-secrets
Martijn de Munnik a4c33bfecb Allow to set uid and gid instead of owner and group. No checks will be performed when uid and gid are set.
```
sops.secrets = {
  sslCertificate = {
    sopsFile = ./secrets.yaml;
    owner = "";
    group = "";
    uid = config.containers."nginx".config.users.users."nginx".uid;
    gid = config.containers."nginx".config.users.groups."nginx".gid;
  };
  sslCertificateKey = {
    sopsFile = ./secrets.yaml;
    owner = "";
    group = "";
    uid = config.containers."nginx".config.users.users."nginx".uid;
    gid = config.containers."nginx".config.users.groups."nginx".gid;
  };
};
```

Co-authored-by: Jörg Thalheim <Mic92@users.noreply.github.com>
2024-10-23 07:38:42 +00:00
..
sshkeys Lint fixes (#539) 2024-04-18 16:19:26 +02:00
test-assets format type: add dotenv and ini 2023-01-17 10:55:52 -03:00
.envrc first commit 2020-07-06 07:31:57 +01:00
darwin.go darwin: Mount hfs+ case-sensitive 2024-05-22 17:51:40 +00:00
default.nix Reuse the existing nixpkgs instance for the tests instead of re-importing it (#611) 2024-09-01 14:30:42 +00:00
linux.go Lint fixes (#539) 2024-04-18 16:19:26 +02:00
main.go Allow to set uid and gid instead of owner and group. No checks will be performed when uid and gid are set. 2024-10-23 07:38:42 +00:00
main_test.go Allow to set uid and gid instead of owner and group. No checks will be performed when uid and gid are set. 2024-10-23 07:38:42 +00:00
nixos-test.nix Allow to set uid and gid instead of owner and group. No checks will be performed when uid and gid are set. 2024-10-23 07:38:42 +00:00
shell.nix no longer use out-dated aliases 2022-09-26 16:28:23 +02:00