forked from riboseinc/terraform-aws-s3-cloudfront-redirect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
39 lines (32 loc) · 873 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
variable "fqdn" {
type = string
description = "The FQDN of the website and also name of the S3 bucket"
}
variable "redirect_target" {
type = string
description = "The FQDN to redirect to"
}
variable "force_destroy" {
type = string
description = "The force_destroy argument of the S3 bucket"
default = "false"
}
variable "ssl_certificate_arn" {
type = string
description = "ARN of the certificate covering var.fqdn"
}
variable "web_acl_id" {
type = string
description = "WAF Web ACL ID to attach to the CloudFront distribution, optional"
default = ""
}
variable "refer_secret" {
type = string
description = "A secret string to authenticate CF requests to S3"
default = "345-VERY-SECRET-678"
}
variable "tags" {
type = map(string)
description = "Tags"
default = {}
}