-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvariables.tf
61 lines (52 loc) · 1.14 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
variable "project_id" {
description = "GCP Project name"
type = string
}
variable "region" {
description = "Google Cloud region"
type = string
}
variable "location_id" {
description = "Google Cloud location"
type = string
}
variable "zone" {
description = "Google Cloud zone"
type = string
}
variable "deploy_trigger_name" {
description = "The name for function deploy trigger"
type = string
}
variable "runtime_config_name" {
description = "Gooogle Runtime Configuration name"
type = string
}
variable "runtime" {
description = "Runtim for Google Cloud Functions"
type = string
}
variable "accept_new_syncs" {
description = "Initial state of new sync acceptance for the server"
type = bool
}
variable "repository_name" {
description = "Gooogle Cloud Source repository name"
type = string
}
variable "functions" {
type = list(object({
name = string
entry_point = string
}))
default = [
{
name = "info"
entry_point = "info"
},
{
name = "bookmarks"
entry_point = "bookmarks"
},
]
}