forked from SatcherInstitute/prototype
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprototype_variables.tf
153 lines (125 loc) · 4.15 KB
/
prototype_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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
# General
variable "project_id" {
description = "Google Project ID"
type = string
}
variable "compute_region" {
description = "Region for Compute Resources"
type = string
default = "us-central1"
}
variable "gcs_region" {
description = "Region for Google Cloud Storage"
type = string
default = "US"
}
variable "gcs_landing_bucket" {
description = "Name of the landing GCS bucket"
type = string
}
variable "bq_dataset_name" {
description = "BigQuery Main Dataset"
type = string
}
# GCF code location
variable "gcf_code_path" {
description = "Base path where the Cloud Functions code lives"
type = string
}
variable "gcf_code_bucket" {
description = "Name of the bucket where the GCF code is kept"
type = string
}
# Pub/Sub topics
variable "upload_to_gcs_topic_name" {
description = "Name of the Pub/Sub topic used to trigger uploading files to GCS"
type = string
}
variable "notify_data_ingested_topic" {
description = "The name of the topic that gets notified when the data is uploaded to GCS"
type = string
}
# Cloud Functions vars
variable "gcf_upload_to_gcs_name" {
description = "Name of the GCF function which uploads files to GCS"
type = string
}
variable "gcf_gcs_to_bq_name" {
description = "Name of the GCF function which moves data from GCS to BigQuery"
type = string
}
# Cloud Scheduler vars
variable "household_income_scheduler_name" {
description = "Name of the Cloud Scheduler job for downloading household income data"
type = string
}
variable "state_names_scheduler_name" {
description = "Name of the Cloud Scheduler job for downloading state name data"
type = string
}
variable "county_names_scheduler_name" {
description = "Name of the Cloud Scheduler job for downloading county name data"
type = string
}
variable "county_adjacency_scheduler_name" {
description = "Name of the Cloud Scheduler job for downloading county adjacency data"
type = string
}
variable "population_by_race_scheduler_name" {
description = "Name of the Cloud Scheduler job for downloading population by race data"
type = string
}
# Ingestion Cloud Run Service vars
variable "primary_care_access_scheduler_name" {
description = "Name of the Cloud Scheduler job for downloading primary care access data"
type = string
}
variable "run_ingestion_service_name" {
description = "Name of the Cloud Run service for data ingestion"
type = string
}
variable "ingestion_image_name" {
description = "Name of container image for the Cloud Run ingestion service"
type = string
}
variable "ingestion_subscription_name" {
description = "Name of push subscription that invokes the ingestion service"
type = string
}
variable "ingestion_invoker_identity_id" {
description = "Account id of the service account used to trigger data ingestion"
type = string
}
variable "ingestion_runner_identity_id" {
description = "Account id of the service account used when running the data ingestion service"
type = string
}
variable "ingestion_runner_role_id" {
description = "Id of custom role given to the ingestion runner service account"
type = string
}
# GCS to BQ Cloud Run Service Vars
variable "run_gcs_to_bq_service_name" {
description = "Name of the Cloud Run service for loading GCS data into BigQuery"
type = string
}
variable "gcs_to_bq_image_name" {
description = "Name of container image for the Cloud Run GCS-to-BQ service"
type = string
}
variable "notify_data_ingested_subscription_name" {
description = "Name of push subscription that invokes the GCS-to-BQ service"
type = string
}
variable "gcs_to_bq_invoker_identity_id" {
description = "Account id of the service account used to trigger loading from GCS to BQ"
type = string
}
variable "gcs_to_bq_runner_identity_id" {
description = "Account id of the service account used when running the GCS-to-BQ service"
type = string
}
variable "gcs_to_bq_runner_role_id" {
description = "Id of custom role given to the gcs_to_bq runner service account"
type = string
}