feat: add gitea tofu app

This commit is contained in:
cătălin 2024-03-25 08:41:20 +01:00
commit c00e10a505
No known key found for this signature in database
4 changed files with 38 additions and 9 deletions

View file

@ -54,3 +54,18 @@ module "firezone" {
app_url = "https://fz.fukurokuju.dev"
sub_mode = "hashed_user_id"
}
module "gitea" {
source = "../modules/authentik"
app_name = "Gitea"
app_slug = "gitea"
client_id = var.gitea_client_id
client_secret = var.gitea_client_secret
app_access_group_id = ""
redirect_uris = ["https://git.roboces.dev/user/oauth2/authentik/callback"]
app_icon = "https://about.gitea.com/gitea.svg"
app_description = "Git with a cup of Tea 🍵"
app_publisher = "Gitea"
app_url = "https://git.roboces.dev/user/oauth2/authentik"
sub_mode = "hashed_user_id"
}

View file

@ -4,3 +4,5 @@
TF_VAR_argo_workflows_client_secret=
TF_VAR_firezone_client_id=
TF_VAR_firezone_client_secret=
TF_VAR_gitea_client_id=
TF_VAR_gitea_client_secret=

View file

@ -17,3 +17,13 @@ variable "firezone_client_secret" {
description = "Client secret"
type = string
}
variable "gitea_client_id" {
description = "Client ID"
type = string
}
variable "gitea_client_secret" {
description = "Client secret"
type = string
}

View file

@ -42,8 +42,10 @@ resource "authentik_application" "app" {
meta_publisher = var.app_publisher
meta_launch_url = var.app_url
}
resource "authentik_policy_binding" "app_access" {
target = authentik_application.app.uuid
group = var.app_access_group_id
order = 0
count = var.app_access_group_id != "" ? 1 : 0
}