-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
variables.tf
39 lines (33 loc) · 1020 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
39
variable "bucket_id" {
type = string
description = "The bucket id to use as the destination for the static website"
}
variable "file_path" {
type = string
description = "The base filepath that contains the files to publish, you may need path.module/my/src/dir"
}
variable "acl" {
type = string
default = "public-read"
description = "The object acl to use for this site, defaults to public-read"
}
variable "storage_class" {
type = string
default = "STANDARD"
description = "The object storage class to use for this site, defaults to STANDARD"
}
variable "cache_control" {
type = string
default = "max-age=1440"
description = "The header to use for cache control"
}
variable "content_language" {
type = string
default = "en-US"
description = "en-US or en-GB for language header?"
}
variable "sse_encrypt" {
type = bool
default = true
description = "Should we apply SSE for objects created by this module?"
}