Adding vars for the new bastion host
Some checks failed
Ansible Linting / ansible-lint (push) Failing after 4s
Secops Linting and Safety Checks / checkov-scan-s3 (push) Failing after 16s

This commit is contained in:
shockrah 2025-06-12 09:20:21 -07:00
parent a6123dd7e2
commit 12831fbaf3
2 changed files with 22 additions and 2 deletions

View File

@ -36,8 +36,20 @@ variable cluster {
}) })
} }
variable personal { variable personal {
type = object({ type = object({
namespace = string namespace = string
}) })
} }
variable bastion {
type = object({
plan = string
os = string
label = string
})
}

View File

@ -16,4 +16,12 @@ cluster = {
personal = { personal = {
namespace = "athens-main" namespace = "athens-main"
} }
bastion = {
plan = "vc2-1c-2gb"
label = "bastion"
os = "1743"
}