this repo has no description
1variable "cluster" {
2 type = string
3}
4
5variable "credentials" {
6 type = object({
7 client_certificate = string
8 client_key = string
9 cluster_ca_certificate = string
10 host = string
11 })
12}
13
14variable "cluster_domain" {
15 type = string
16}
17
18variable "platform" {
19 type = string
20}