Base configuration for settingup vke
This commit is contained in:
35
infra/vultr-kubernetes/variables.tf
Normal file
35
infra/vultr-kubernetes/variables.tf
Normal 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
|
||||
})
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user