This commit is contained in:
2024-04-21 13:45:02 +02:00
parent 8578a2705d
commit 2a132e4323
11 changed files with 1066 additions and 6 deletions

View File

@@ -82,6 +82,16 @@ options:
type: boolean
type: object
type: object
autoCD:
default: true
examples:
- true
type: boolean
autoCI:
default: true
examples:
- true
type: boolean
backups:
default:
enable: false

View File

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