-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
28 lines (24 loc) · 882 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
variable "relay_fqdn" {
type = string
description = "The fully qualified domain name for the relay. Example: `fsrelay.your-company.com`."
}
variable "target_fqdn" {
type = string
description = "(optional) The fully qualified domain name that the relay targets. Defaults to `fullstory.com`."
default = "fullstory.com"
}
variable "cloud_dns_zone_name" {
type = string
description = "(optional) The Cloud DNS zone name for placing the DNS A record."
default = null
}
variable "cloud_dns_project_id" {
type = string
description = "(optional) The project in which the Cloud DNS zone lives in. Defaults to provider project."
default = null
}
variable "logging_enabled" {
type = bool
description = "(optional) If enabled, logging will be active on the backend service. Defaults to false."
default = false
}