-
Notifications
You must be signed in to change notification settings - Fork 3
/
variables.tf
68 lines (54 loc) · 1.11 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
61
62
63
64
65
66
67
68
variable "service_account_email" {
description = "Used for Account impersonation with ADC"
type = string
sensitive = true
}
variable "project_id" {
description = "Project ID"
type = string
sensitive = true
}
variable "env" {
type = string
default = "dev"
}
variable "region" {
description = "Region for GCP resources"
type = string
default = "asia-southeast1"
}
# Google Cloud Storage
variable "bucket_region" {
type = string
default = "ASIA-SOUTHEAST1"
}
variable "bucket_landing_name" {
type = string
default = "kde_ecomm_landing"
}
variable "bucket_staging_name" {
type = string
default = "kde_ecomm_staging"
}
variable "bucket_curated_name" {
type = string
default = "kde_ecomm_curated"
}
# BigQuery
variable "dataset_id_silver" {
type = string
default = "kde_ecomm_silver"
}
variable "dataset_id_gold" {
type = string
default = "kde_ecomm_gold"
}
# Google Artifact Registry
variable "gar_repo_id_dev" {
type = string
default = "kde-ecomm-dev"
}
variable "gar_repo_id_dev_desc" {
type = string
default = "DEV"
}