-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
78 lines (65 loc) · 1.47 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
73
74
75
76
77
78
variable "project" {
type = string
description = "GCP Project"
}
variable "region" {
type = string
description = "GCP Region"
}
variable "cloud_run_sa_id" {
type = string
description = "Cloud Run service account ID"
}
variable "cloud_run_service_name" {
type = string
description = "Cloud Run service name"
}
variable "cloud_run_service_image" {
type = string
description = "Cloud Run service docker image"
}
variable "redis_host" {
type = string
default = null
description = "Redis host"
}
variable "sql_database_host" {
type = string
default = null
description = "SQL Database host"
}
variable "sql_database_connection" {
type = string
default = null
description = "SQL Database connection"
}
variable "sql_database_name" {
type = string
default = null
description = "SQL Database name"
}
variable "redis_port" {
type = string
default = null
description = "Redis port"
}
variable "backend_service_endpoint" {
type = string
default = null
description = "Backend cloud run service endpoint"
}
variable "vpc_access_connector_id" {
type = string
default = null
description = "VPC access connector ID"
}
variable "cloud_run_dependency" {
type = any
default = null
description = "Cloud run dependency on Cloud SQL"
}
variable "vpc_access_egress" {
type = string
default = null
description = "The outbound traffic to send through the VPC connector for this resource. Possible values: [all, all-traffic, private-ranges-only]"
}