-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
40 lines (36 loc) · 1.02 KB
/
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
31
32
33
34
35
36
37
38
39
40
variable "LINODE_CLI_TOKEN" {
sensitive = true
}
variable "public_key_path" {
sensitive = true
}
# variable "access_key_id" {
# sensitive = true
# }
# variable "secret_access_key" {
# sensitive = true
# }
variable "node_count" {
description = "Defines the number of instances that will be provisioned."
default = 1
}
variable "image" {
type = string
description = "Linode Image type to use. See linode-available-resources.txt file for available images."
default = "linode/debian12"
}
variable "label" {
type = string
description = "The name you want for your Linode instance."
default = "Terra_Linode"
}
variable "linode_region" {
type = string
description = "Linode available regions to use. See linode-available-resources.txt file for available regions."
default = "us-east"
}
variable "linode_instance_type" {
type = string
description = "Linode machine types to use. See linode-available-resources.txt file for instance types."
default = "g6-nanode-1"
}