-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
28 lines (24 loc) · 1.23 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
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 "route53_zone_name" {
type = string
description = "(optional) The Route 53 zone name for placing the DNS CNAME record. If omitted, a value for `acm_certificate_arn` must be provided. Defaults to null."
default = null
}
variable "acm_certificate_arn" {
type = string
description = "(optional) The ARN of the ACM certificate to be used for the relay. If omitted, a value for `route53_zone_name` must be provided. Defaults to null."
default = null
}
variable "cloudfront_origin_request_policy_name" {
type = string
description = "(optional) A name to uniquely identify the cloudfront origin request policy for the relay. This is required to deploy multiple relay modules to the same AWS account, as such policies must be uniquely named. Example: `fullstory-relay-origin-request-policy-production`."
default = "fullstory-relay-origin-request-policy"
}