-
Notifications
You must be signed in to change notification settings - Fork 2
/
variables.tf
57 lines (47 loc) · 1.13 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
variable "environment" {
type = string
description = "Environment of project"
default = "dev"
}
variable "project_id" {
type = map(string)
description = "Project ID of GCP project"
}
variable "region" {
type = string
description = "Region of GCP Project"
default = "us-east1"
}
variable "zone" {
type = string
description = "Zone of GCP Project"
default = "us-east1-b"
}
variable "network" {
type = string
description = "VPC network name to put deployment"
}
variable "enrich_name" {
type = string
description = "Snowplow enrich name"
}
variable "collector_name" {
type = string
description = "Snowplow collector name"
}
variable "collector_domain" {
type = string
description = "Snowplow collector domain name"
}
variable "enrich_machine_type" {
type = string
description = "GCE instance type for enrich"
}
variable "enrich_bq_location" {
type = string
description = "Location of BigQuery dataset to create"
}
variable "collector_machine_type" {
type = string
description = "GCE instance type for collector"
}