simplifying vars
Some checks failed
Ansible Linting / ansible-lint (push) Failing after 4s
Secops Linting and Safety Checks / checkov-scan-s3 (push) Failing after 14s

This commit is contained in:
shockrah 2025-05-28 21:22:10 -07:00
parent ee2d502ca6
commit 1281ea8857
2 changed files with 9 additions and 18 deletions

View File

@ -36,21 +36,8 @@ variable cluster {
})
}
# variable admin_services {
# type = object({
# namespace = string
# configs = map(object({
# name = string
# image = string
# cpu = string
# mem = string
# port = object({
# notes = optional(string)
# internal = number
# expose = number
# })
# proto = optional(string)
# }))
# })
# }
variable personal {
type = object({
namespace = string
})
}

View File

@ -12,4 +12,8 @@ cluster = {
tag = "athens-main"
}
}
}
personal = {
namespace = "athens-main"
}