Skip to content
Snippets Groups Projects
Commit 7a18e6a9 authored by Jean-Paul Calderone's avatar Jean-Paul Calderone
Browse files

supply a stripe key to the system test

parent 7e51248c
No related branches found
No related tags found
1 merge request!20Deploy PaymentServer with Stripe API key
......@@ -17,6 +17,9 @@ let
# world at large.
ristrettoSigningKey = "wumQAfSsJlQKDDSaFN/PZ3EbgBit8roVgfzllfCK2gQ=";
# Ugh.
stripeSecretKey = "sk_test_blubblub";
# Here are the preconstructed secrets which we can assign to the introducer.
# This is a lot easier than having the introducer generate them and then
# discovering and configuring the other nodes with them.
......@@ -85,6 +88,8 @@ import <nixpkgs/nixos/tests/make-test.nix> {
tls = false;
issuer = "Ristretto";
inherit ristrettoSigningKey;
stripeSecretKeyPath = pkgs.writeText "stripe.secret" stripeSecretKey;
letsEncryptAdminEmail = "user@example.invalid";
};
} // networkConfig;
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment