-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvariables.tf
40 lines (34 loc) · 842 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
variable "project_id" {
type = string
description = "Project ID"
}
variable "dns_name" {
type = string
description = "Name of the dns entry that will point to the LB IP"
default = ""
}
variable "dns_zone" {
type = string
description = "Name of the dns zone"
default = ""
}
variable "create_dns_entry" {
type = bool
default = true
description = "Whether to create a dns entry or not"
}
variable "intercom_fqdn" {
type = string
default = "custom.intercom.help"
description = "Domain of the intercom server"
}
variable "intercom_port" {
type = number
default = 80
description = "Port to reach Intercom with"
}
variable "backend_service_protocol" {
type = string
default = "HTTP"
description = "Protocol for backend service"
}