Base configuration for settingup vke

This commit is contained in:
2024-01-16 16:05:38 -08:00
parent 69d75cdb2d
commit 8a66a04337
5 changed files with 111 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
# API Keys required to reach AWS/Vultr
variable vultr_api_key {
type = string
sensitive = true
}
variable aws_key {
type = string
sensitive = true
}
variable aws_secret {
type = string
sensitive = true
}
variable aws_region {
type = string
sensitive = true
}
# Cluster configuration
variable cluster {
type = object({
region = string
label = string
version = string
pool = object({
plan = string
autoscale = bool
min = number
max = number
})
})
}