17 lines
391 B
Terraform
17 lines
391 B
Terraform
|
|
# variables.tf (root module)
|
||
|
|
|
||
|
|
variable "cluster_endpoint" {
|
||
|
|
description = "URL of cluster endpoint. /api... will be added to it."
|
||
|
|
type = string
|
||
|
|
}
|
||
|
|
variable "cluster_ca_cert" {
|
||
|
|
description = "base64 encoded cluster CA certificate."
|
||
|
|
type = string
|
||
|
|
}
|
||
|
|
variable "cluster_token" {
|
||
|
|
description = "Cluster service account access token."
|
||
|
|
type = string
|
||
|
|
}
|
||
|
|
|
||
|
|
# end of file
|