feat(zitadel): expand terranix resources
Some checks failed
Test action / kaas (push) Failing after 1s

WOOP WOOP, it all works!
now the next, big, huge, giant, hurdle to overcome is the chicken and egg problem of needing zitadel to generate values that I need inside the nix config of synapse, forgejo, and jellyfin
This commit is contained in:
Chris Kruining 2025-10-27 17:07:51 +01:00
parent 6c9667831a
commit 84cc5ff5c4
No known key found for this signature in database
GPG key ID: EB894A3560CCCAD2
3 changed files with 149 additions and 56 deletions

View file

@ -43,9 +43,18 @@
enable = true;
organization = {
thisIsMyAwesomeOrg = {};
nix = {
user = {
chris = {
email = "chris@kruining.eu";
firstName = "Chris";
lastName = "Kruining";
roles = [ "ORG_OWNER" ];
instanceRoles = [ "IAM_OWNER" ];
};
};
project = {
ulmo = {
application = {
@ -60,6 +69,12 @@
grantTypes = [ "authorizationCode" ];
responseTypes = [ "code" ];
};
matrix = {
redirectUris = [ "https://matrix.kruining.eu/_synapse/client/oidc/callback" ];
grantTypes = [ "authorizationCode" ];
responseTypes = [ "code" ];
};
};
};
};