-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvariables.tf
58 lines (49 loc) · 1022 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
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 "hostname" {
description = "The device name"
type = string
default = "tf-ubuntu"
}
variable "plan" {
description = "The device plug"
type = string
default = "t1.small.x86"
}
variable "metro" {
description = "Metro where the server will be deployed"
type = string
default = ""
}
variable "operating_system" {
description = "OS"
type = string
default = "ubuntu_18_04"
}
variable "billing_cycle" {
description = "Monthly or Hourly"
type = string
default = "hourly"
}
variable "project_id" {
description = "Project ID"
type = string
default = ""
}
variable "user_data" {
description = "User data"
type = string
default = ""
}
variable "project_ssh_key_ids" {
description = "ssh key ids"
type = list(any)
default = []
}
variable "ssh_key_ids" {
description = "ssh key ids"
type = string
default = ""
}
variable "tags" {
type = string
default = ""
}