You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
552 B
Nix
34 lines
552 B
Nix
pkgs: {
|
|
|
|
deploymentName = "testnet";
|
|
|
|
dnsZone = "${pkgs.globals.domain}";
|
|
|
|
domain = "cardano-testnet.iohkdev.io";
|
|
|
|
withSubmitApi = true;
|
|
withFaucet = true;
|
|
withSmash = true;
|
|
|
|
faucetHostname = "faucet2";
|
|
|
|
initialPythonExplorerDBSyncDone = true;
|
|
|
|
environmentName = "testnet";
|
|
|
|
topology = import ./topologies/testnet.nix pkgs;
|
|
|
|
ec2 = {
|
|
credentials = {
|
|
accessKeyIds = {
|
|
IOHK = "default";
|
|
dns = "default";
|
|
};
|
|
};
|
|
};
|
|
|
|
alertChainDensityLow = "90";
|
|
alertTcpHigh = "220";
|
|
alertTcpCrit = "250";
|
|
}
|