forked from realglobe-Inc/terraform-aws-static-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
46 lines (46 loc) · 1.08 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
42
43
44
45
46
variable "service_name" {
description = "tagged with service name"
}
variable "aws" {
description = "AWS provider configuration"
type = map
default = {}
}
variable "domain_names" {
description = "domain names"
type = list(string)
}
variable "cloudfront_origin_path" {
default = "/"
description = "Origin path of CloudFront"
}
variable "route53_zone_id" {
description = "Route53 Zone ID"
}
variable "s3_bucket_name" {
description = "S3 bucket name"
}
variable "save_access_log" {
description = "whether save cloudfront access log to S3"
type = bool
default = false
}
variable "activate_lambda_sign" {
description = "Activate the Lambda Sign feature"
type = bool
default = true
}
variable "lambda" {
type = map(string)
default = {}
description = "Lambda@edge values for S3 Signature"
}
variable "lambda_policy" {
default = {}
description = "Lambda@edge values for S3 Signature"
}
variable "bucket_policy" {
type = list
description = "List of additional bucket policies"
default = []
}