mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-26 10:06:13 +01:00
b2370d4147
Signed-off-by: magic_rb <magic_rb@redalder.org>
78 lines
1.5 KiB
Nix
78 lines
1.5 KiB
Nix
{
|
|
config,
|
|
inputs',
|
|
lib,
|
|
config',
|
|
pkgs,
|
|
...
|
|
}: let
|
|
inherit
|
|
(lib)
|
|
singleton
|
|
;
|
|
in {
|
|
imports = [inputs'.uterranix.nixosModules.default];
|
|
|
|
uterranix.configurations.main = {
|
|
config,
|
|
tflib,
|
|
...
|
|
}: let
|
|
inherit
|
|
(tflib)
|
|
tf
|
|
;
|
|
in {
|
|
# terraform.required_providers =
|
|
# config'.flake.uterranix.config.${pkgs.stdenv.system}.terraform.required_providers;
|
|
|
|
imports = config'.uterranix.modules;
|
|
|
|
resource."vault_consul_secret_backend_role"."envoy-grafana" = {
|
|
name = "envoy-grafana";
|
|
|
|
backend = "consul";
|
|
|
|
service_identities = [
|
|
"grafana"
|
|
"influx"
|
|
"telegraf"
|
|
];
|
|
|
|
node_identities = singleton "blowhole:homelab-1";
|
|
};
|
|
|
|
resource."consul_acl_policy"."envoy-blowhole" = {
|
|
name = "envoy-blowhole";
|
|
datacenters = singleton "homelab-1";
|
|
|
|
rules = ''
|
|
mesh = "write"
|
|
'';
|
|
};
|
|
|
|
resource."vault_consul_secret_backend_role"."envoy-blowhole" = {
|
|
name = "envoy-blowhole";
|
|
backend = "consul";
|
|
|
|
consul_policies = singleton (tf "consul_acl_policy.envoy-blowhole.name");
|
|
|
|
service_identities = singleton "telegraf-blowhole";
|
|
|
|
node_identities = [
|
|
"blowhole:homelab-1"
|
|
];
|
|
};
|
|
|
|
resource."vault_consul_secret_backend_role"."envoy-klipper" = {
|
|
name = "envoy-klipper";
|
|
|
|
backend = "consul";
|
|
|
|
service_identities = singleton "mainsail";
|
|
|
|
node_identities = singleton "blowhole:homelab-1";
|
|
};
|
|
};
|
|
}
|