Initial Implementation of KUBECONFIG

This commit is contained in:
2024-10-19 23:12:20 -03:00
parent a390e8a785
commit 95eba14975
5 changed files with 59 additions and 56 deletions

View File

@@ -15,12 +15,12 @@ variable "master_server_address" {
}
variable "cluster_main_node" {
type = list(object({
type = object({
host = string
port = string
user = string
private_key = string
}))
})
description = "map of objects - main cluster nodes - [host, port]"
}