forked from Liscor/terraform_cloud_run_sgtm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
72 lines (59 loc) · 1.91 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
69
70
71
72
variable "project_id" {
description = "The project ID in which the stack is being deployed"
type = string
}
variable "region" {
description = "The name of the region to deploy within"
type = string
}
variable "container_config" {
description = "The container configuration string obtained from the Google Tag Manager Webinterface"
type = string
}
variable "service_name_production" {
description = "The name of the SGTM production service in Cloud Run."
type = string
}
variable "service_name_preview" {
description = "The name of the SGTM preview service in Cloud Run."
type = string
}
variable "min_instance_count" {
description = "The maximum instances the Cloud Run service for production SGTM can create."
type = number
}
variable "max_instance_count" {
description = "The maximum instances the Cloud Run service for production SGTM can create."
type = number
}
variable "alert_instance_count" {
description = "Number of instances after which instance count alert will be triggered."
type = number
}
variable "cpu_boost" {
description = "Activate CPU boost to allocate more CPUs for instances starting up."
type = bool
}
variable "cloud_function_update_filter" {
description = "The Cloud function logs when the the Cloud Run SGTM instance gets updated."
type = string
}
variable "update_interval" {
description = "Update interval for the Cloud Function updating the SGTM Image in unix-cron job format - Default everyday at 8:00 am UTC"
type = string
}
variable "cloud_run_exclusion_filter" {
description = "The Cloud Run logs which will be exclude from the _default bucket."
type = string
}
variable "notification_users" {
description = "List of users for notification"
type = list(object({
name = string
email = string
}))
}
variable "google_storage_bucket_name" {
description = "The unique name of the google storage bucket"
type = string
}