feat: enable ICA2 and insert ICA1 in Vault

Signed-off-by: Raito Bezarius <masterancpp@gmail.com>
This commit is contained in:
raito 2024-12-31 17:50:39 +01:00
parent 1bb6e8a681
commit 8c9c060eb4

View file

@ -1,7 +1,4 @@
{ lib, ... }:
let
inherit (lib) tf;
in
{ ... }:
{
terraform.required_providers.vault = {
version = "4.4.0";
@ -29,6 +26,11 @@ in
displayName = "Floral Systems PKI v1";
};
ica1.enable = true;
ica1 = {
enable = true;
signedCert = ../pki/cacerts/ica1.crt;
};
ica2.enable = true;
};
}