summary refs log tree commit diff
path: root/nixos/tests/gitlab.nix
diff options
context:
space:
mode:
authortalyz <kim.lindberger@gmail.com>2021-04-27 18:04:23 +0200
committertalyz <kim.lindberger@gmail.com>2021-04-27 18:08:59 +0200
commit1215bd4ea9364dd9cb52d7b454bdbaa4c074b034 (patch)
treeb71d37d7ce440152e7691e97f5b5937ef16a8a0d /nixos/tests/gitlab.nix
parent7a67a2d1a890eb1b3d98a4c98ce9283be2fe4e10 (diff)
downloadnixpkgs-1215bd4ea9364dd9cb52d7b454bdbaa4c074b034.tar
nixpkgs-1215bd4ea9364dd9cb52d7b454bdbaa4c074b034.tar.gz
nixpkgs-1215bd4ea9364dd9cb52d7b454bdbaa4c074b034.tar.bz2
nixpkgs-1215bd4ea9364dd9cb52d7b454bdbaa4c074b034.tar.lz
nixpkgs-1215bd4ea9364dd9cb52d7b454bdbaa4c074b034.tar.xz
nixpkgs-1215bd4ea9364dd9cb52d7b454bdbaa4c074b034.tar.zst
nixpkgs-1215bd4ea9364dd9cb52d7b454bdbaa4c074b034.zip
Revert "nixos/tests/gitlab: add 32 byte secrets"
This reverts commit d6e0d38b84a00b2ab05324b69e3253d956bb5be7.

We need shorter secrets to continue working, since the earlier
recommendation was too short and there's no way to rotate the them.
Diffstat (limited to 'nixos/tests/gitlab.nix')
-rw-r--r--nixos/tests/gitlab.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/nixos/tests/gitlab.nix b/nixos/tests/gitlab.nix
index 582f5faf9bc..af2ab12bf4b 100644
--- a/nixos/tests/gitlab.nix
+++ b/nixos/tests/gitlab.nix
@@ -57,9 +57,9 @@ import ./make-test-python.nix ({ pkgs, lib, ...} : with lib; {
           };
         };
         secrets = {
-          secretFile = pkgs.writeText "secret" "r8X9keSKynU7p4aKlh4GO1Bo77g5a7vj";
-          otpFile = pkgs.writeText "otpsecret" "Zu5hGx3YvQx40DvI8WoZJQpX2paSDOlG";
-          dbFile = pkgs.writeText "dbsecret" "lsGltKWTejOf6JxCVa7nLDenzkO9wPLR";
+          secretFile = pkgs.writeText "secret" "Aig5zaic";
+          otpFile = pkgs.writeText "otpsecret" "Riew9mue";
+          dbFile = pkgs.writeText "dbsecret" "we2quaeZ";
           jwsFile = pkgs.runCommand "oidcKeyBase" {} "${pkgs.openssl}/bin/openssl genrsa 2048 > $out";
         };
       };