However, the nixos-install script fails on khs openstack as the system won't boot up after installation due it being unable to locate the root disk. I am not sure what disk it ends up finding.
49 lines
1.2 KiB
Nix
49 lines
1.2 KiB
Nix
{ khscodesLib, inputs }:
|
|
{ lib, config, ... }:
|
|
let
|
|
cfg = config.khscodes.vault;
|
|
modules = [
|
|
./approle_auth_backend.nix
|
|
./output.nix
|
|
./mount.nix
|
|
./ssh_secret_backend.nix
|
|
];
|
|
in
|
|
{
|
|
options.khscodes.vault = {
|
|
enable = lib.mkEnableOption "Enables the openbao provider";
|
|
policy = lib.mkOption {
|
|
type = lib.types.attrsOf (
|
|
khscodesLib.mkSubmodule {
|
|
options = {
|
|
name = lib.mkOption {
|
|
type = lib.types.str;
|
|
description = "Name of the policy";
|
|
};
|
|
policy = lib.mkOption {
|
|
type = lib.types.lines;
|
|
description = "The policy";
|
|
};
|
|
};
|
|
description = "vault_policy";
|
|
}
|
|
);
|
|
};
|
|
};
|
|
|
|
imports = lib.lists.map (m: import m { inherit khscodesLib inputs; }) modules;
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
provider.vault = {
|
|
address = "https://vault.kaareskovgaard.net";
|
|
};
|
|
terraform.required_providers.vault = {
|
|
source = "hashicorp/vault";
|
|
version = "5.0.0";
|
|
};
|
|
resource.vault_policy = lib.mapAttrs' (name: value: {
|
|
name = khscodesLib.sanitize-terraform-name name;
|
|
value = value;
|
|
}) cfg.policy;
|
|
};
|
|
}
|