forked from flatcar/flatcar-terraform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
30 lines (25 loc) · 789 Bytes
/
variables.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
29
30
variable "machines" {
type = list(string)
description = "Machine names, corresponding to machine-NAME.yaml.tmpl files"
}
variable "cluster_name" {
type = string
description = "Cluster name used as prefix for the machine names"
}
variable "ssh_keys" {
type = list(string)
description = "SSH public keys for user 'core' (and to register on Digital Ocean for the first)"
}
variable "server_type" {
type = string
default = "s-1vcpu-1gb"
description = "The server type to rent"
}
variable "datacenter" {
type = string
description = "The region to deploy in"
}
variable "flatcar_stable_version" {
type = string
description = "The Flatcar Stable release you want to use for the initial installation, e.g., 2605.12.0"
}