-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvariables.tf
63 lines (52 loc) · 1.36 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
variable "root_pass" {
description = "The initial password for the root user account"
default = "changeME007.."
}
variable "private_ip" {
description = "Whether or not you want a private ip address for your instance"
default = true
}
variable "backups_enabled" {
description = "Whether or not to enable backups"
default = false
}
variable "region" {
description = "The region/data-center to deploy the instance in"
default = "us-central"
}
variable "image" {
description = "The Linux image to use"
default = "linode/ubuntu18.04"
}
variable "label" {
description = "Optional label to display for the instance"
default = "Created-by-Terraform"
}
variable "tags" {
description = "An optional list of tags"
type = "list"
default = []
}
variable "type" {
description = "Instance type or size"
default = "g6-standard-4"
}
variable "authorized_keys" {
description = "Your authorized keys. Be sure to chomp() it first"
type = "list"
default = []
}
variable "authorized_users" {
description = "Your authorized users"
type = "list"
default = []
}
variable "stackscript_id" {
description = "The ID of the StackScript you want to use"
default = "0"
}
variable "stackscript_data" {
description = "Optional map of StackScript UDF data."
type = "map"
default = {}
}