about summary refs log tree commit diff stats
path: root/tests/by-name/em/email-dns/nodes/acme/certs/snakeoil-certs.nix
blob: aeb6dfce8daf04d6e09904e5ad524809ca19b0c2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
let
  domain = "acme.test";
in {
  inherit domain;
  ca = {
    cert = ./output/ca.cert.pem;
    key = ./output/ca.key.pem;
  };
  "${domain}" = {
    cert = ./output/. + "/${domain}.cert.pem";
    key = ./output/. + "/${domain}.key.pem";
  };
}