-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
44 lines (37 loc) · 1.16 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
variable "name" {
type = string
description = "Name to be used on all the resources as identifier."
}
variable "comment" {
type = string
default = ""
description = "Any comments you want to include."
}
variable "s3_allowed_roles" {
type = list(string)
default = []
description = "A list IAM roles allowed to access the S3 bucket."
}
variable "s3_forbidden_files" {
type = list(string)
default = []
description = "A list of file to deny access for."
}
variable "cloudfront_aliases" {
type = list(string)
description = "CNAMEs for this CloudFront."
}
variable "cloudfront_price_class" {
type = string
default = "PriceClass_100"
description = "The price class for this CloudFront. One of PriceClass_All, PriceClass_200, PriceClass_100."
}
variable "cloudfront_acm_certificate_arn" {
type = string
description = "The ARN of the AWS Certificate Manager certificate that you wish to use with this distribution. The ACM certificate must be in US-EAST-1."
}
variable "tags" {
type = map(string)
default = {}
description = "A map of tags to assign to the resources."
}