-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
46 lines (37 loc) · 1.01 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
41
42
43
44
45
46
variable "storage-access-key" {
description = "Linode storage access key. Linode storage used for holding the tf state"
}
variable "storage-secret-key" {
description = "Linode storage secret key. Linode storage used for holding the tf state"
}
variable "token" {
description = "Linode API Personal Access Token"
}
variable "label" {
description = "The Linode's label is for display purposes only."
default = "wordpress"
}
variable "image" {
description = "Image to use for Linode instance"
default = "linode/ubuntu18.04"
}
variable "region" {
description = "The region where your Linode will be located."
default = "eu-central"
}
variable "type" {
description = "Your Linode's plan type."
default = "g6-nanode-1"
}
variable "root_pass" {
description = "Linode's root pass"
}
# https://cloud.linode.com/stackscripts/443929
variable "stackscript_id" {
description = "Stackscript ID"
default = "443929"
}
variable "stackscript_data" {
description = "Map of required StackScript UDF data."
type = map
}