-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
60 lines (51 loc) · 1.24 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
variable "access_token" {
description = "access_token"
type = string
sensitive = true
}
variable "service_account_id" {
description = "service_account_id"
type = string
default = "wells-fargo-sa"
}
variable "service_account_name" {
description = "service_account_name"
type = string
default = "Wells Fargo"
}
variable "zone" {
description = "zone"
type = string
default = "us-east1-b"
}
variable "compute_instance_name" {
description = "compute_instance_name"
type = string
default = "wells-fargo-ce"
}
variable "machine_type" {
description = "machine_type"
type = string
default = "n1-standard-4"
}
variable "machine_image" {
description = "machine_image"
type = string
default = "debian-cloud/debian-9"
}
variable "disk_encryption_key_raw" {
description = "disk_encryption_key_raw"
type = string
default = null
}
variable "kms_key_self_link" {
description = "kms_key_self_link"
type = string
#default = "projects/airline1-sabre-wolverine/locations/us-east1/keyRings/savita-keyring1/cryptoKeys/savita-key11"
default = null
}
variable "project_id" {
description = "project_id"
type = string
default = "airline1-sabre-wolverine"
}