-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path00_default_variables.tf
More file actions
80 lines (63 loc) · 975 Bytes
/
00_default_variables.tf
File metadata and controls
80 lines (63 loc) · 975 Bytes
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
variable "projectid" {
default = ""
}
variable "credentials" {
default = "~/.gcp/terraform_key.json"
}
variable "name" {
type = "string"
default = "default"
}
variable "machine_type" {
type = "string"
default = "f1-micro"
}
variable "image" {
type = "string"
default = "centos-7"
}
variable "network" {
default = "default"
}
variable "allowed_port" {
default = [
"9000"
]
}
variable "zone" {
type = "string"
default = "europe-west2-c"
}
variable "tags" {
default = [
"defaulttag"
]
}
variable "ssh_user" {
default = "terraform"
}
variable "public_key" {
default = "~/.ssh/id_rsa.pub"
}
variable "private_key" {
default = "~/.ssh/id_rsa"
}
variable "scripts" {
default = [
""
]
}
variable "packages" {
default = [
"wget",
"unzip"
]
}
variable "package_manager" {
default = "yum"
}
variable "install_packages" {
default = {
"yum" = "sudo yum install -y"
}
}