-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathvariables.tf
41 lines (35 loc) · 1.01 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
variable "bucket_name" {
type = string
description = "The Fully Qualified domain name should be the bucket name"
default = ""
}
variable "route53_domain" {
type = string
description = "Route53 hostedzone name"
default = ""
}
variable "domain" {
type = string
description = "simple website where route53 hosted zone and bucket name are same. Naked domain"
default = ""
}
variable "s3_force_destroy" {
type = string
description = "Destroy the s3 bucket inspite of contents in it."
default = "false"
}
variable "index_document" {
type = string
description = "Index page to be used for website. Defaults to index.html"
default = "index.html"
}
variable "error_document" {
type = string
description = "Error page to be used for website. Defaults to error.html"
default = "error.html"
}
variable "secret_user_agent" {
type = string
description = "secret to authenticate CF requests to s3"
default = "SECRET-STRING"
}