-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables.tf
41 lines (35 loc) · 999 Bytes
/
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
variable "project_id" {
type = string
description = "The ID of the project where the resources will be created"
default = "<YOUR-PROJECT-ID>"
}
variable "region" {
type = string
description = "The region in which resources will be applied"
default = "us-east1"
}
variable "center_bucket" {
type = string
description = "Name of new Google Bucket to which file additions and deletions will trigger function"
default = ""
}
variable "dcc_bucket" {
type = string
description = "Name of existing DCC bucket to store function source code"
default = "gcptosynapse"
}
variable "synapse_sa" {
type = string
description = "Name of Synapse Service Account to grant access to bucket"
default = ""
}
variable "function_sa" {
type = string
description = "ID of Google Service Account to be used by Cloud Function"
default = ""
}
variable "synapse_project_id" {
type = string
description = "ID of Synapse project to sync files to"
default = ""
}