-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvars.tf
58 lines (48 loc) · 928 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
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
variable "authorized_keys" {
description = "authorized_keys for the instance"
type = list(string)
default = null
}
variable "group" {
type = string
default = null
}
variable "name" {
description = "Name"
type = string
}
variable "private_ip" {
description = "Should we setup a private IP"
default = false
}
variable "region" {
description = "Region"
type = string
default = "us-east"
}
variable "swap_size" {
type = string
default = null
}
variable "token" {
description = "Linode token"
type = string
default = null
}
variable "tags" {
type = list
default = null
}
variable "type" {
description = "Instance type"
type = string
default = "g6-nanode-1"
}
variable "image" {
description = "Instance type"
type = string
default = "linode/debian10"
}
variable "root_password" {
default = null
}