-
Notifications
You must be signed in to change notification settings - Fork 2
/
vars.tf
28 lines (23 loc) · 812 Bytes
/
vars.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
variable "kubelet_node_names" {
type = "list"
description = "The list of nodes that will have a kubelet client certificate generated"
}
variable "kubelet_node_ips" {
type = "list"
description = "The list of node IP addresses for the kubelet certificate SAN"
}
variable "apiserver_node_names" {
type = "list"
description = "The list of nodes that will have an apiserver certificate generated"
}
variable "apiserver_master_ips" {
type = "list"
description = "The list of node IP addresses for the apiserver certificate"
}
variable "apiserver_public_ip" {
type = "string"
description = "The public IP address for the apiserver certificate"
}
variable "node_user" {
description = "The node user name to use for provision the certificates to the nodes"
}