diff options
| author | Seth Flynn <[email protected]> | 2025-02-08 23:04:04 -0500 |
|---|---|---|
| committer | Seth Flynn <[email protected]> | 2025-02-08 23:04:04 -0500 |
| commit | 05a4dbf16fa3a67ac3a6541184eab80fe346f6af (patch) | |
| tree | 4508d529985d54b165613a189531ee34112ffee8 | |
| parent | 453b25d097f07427be6f7e45fd7bad4ef9fc45b2 (diff) | |
setup auth.getchoo.com
| -rw-r--r-- | systems/atlas/default.nix | 1 | ||||
| -rw-r--r-- | systems/atlas/kanidm.nix | 6 | ||||
| -rw-r--r-- | terraform/dns.tf | 5 |
3 files changed, 12 insertions, 0 deletions
diff --git a/systems/atlas/default.nix b/systems/atlas/default.nix index a959a32..f08847f 100644 --- a/systems/atlas/default.nix +++ b/systems/atlas/default.nix @@ -4,6 +4,7 @@ (modulesPath + "/profiles/minimal.nix") ./hardware-configuration.nix ./forgejo.nix + ./kanidm.nix ./miniflux.nix ./moyai.nix ./nixpkgs-tracker-bot.nix diff --git a/systems/atlas/kanidm.nix b/systems/atlas/kanidm.nix new file mode 100644 index 0000000..dc1e534 --- /dev/null +++ b/systems/atlas/kanidm.nix @@ -0,0 +1,6 @@ +{ + services.kanidm = { + enableClient = true; + enableServer = true; + }; +} diff --git a/terraform/dns.tf b/terraform/dns.tf index 31bd9d6..462ce37 100644 --- a/terraform/dns.tf +++ b/terraform/dns.tf @@ -45,6 +45,11 @@ locals { content = resource.cloudflare_pages_project.teawie_api.subdomain }, { + name = "auth" + type = "A" + content = resource.oci_core_instance.atlas.public_ip + }, + { name = "miniflux" type = "A" content = resource.oci_core_instance.atlas.public_ip |
