This commit is contained in:
2024-04-25 10:14:49 +02:00
parent 8295da1c9a
commit 687a4de352
7 changed files with 73 additions and 2 deletions

View File

@@ -250,6 +250,16 @@ options:
type: string
type: object
type: array
gitea_ssh_port:
default: 2222
examples:
- 2222
type: integer
gitea_ssh_prefix:
default: git
examples:
- git
type: string
haveFlux:
default: false
examples:

View File

@@ -32,6 +32,8 @@ resource "kubectl_manifest" "organisations" {
"haveTekton" = var.haveTekton
"haveFlux" = var.haveFlux
"autoCD" = var.autoCD
"gitea_ssh_prefix" = var.gitea_ssh_prefix
"gitea_ssh_port" = var.gitea_ssh_port
},
{ for k, v in local.sorted-organisations[count.index] : k => v if !contains(["name"], k) }
))}