forked from grahamgilbert/terraform-aws-munki-repo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
81 lines (65 loc) · 3.74 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
variable "username" {
description = "Username clients use."
}
variable "password" {
description = "Password clients use."
}
variable "munki_s3_bucket" {
description = "The name of your s3 Bucket"
}
variable "prefix" {
description = "Prefix before lambda and IAM names to ensure uniqueness in your account."
default = "munki"
}
variable "price_class" {
default = "PriceClass_100"
description = "The price class your CloudFront Distribution should use."
}
variable "default_cache_behavior_min_ttl" {
default = 0
description = "The minimum amount of time (in seconds) that you want objects to stay in CloudFront caches before CloudFront queries your origin to see whether the object has been updated."
}
variable "default_cache_behavior_default_ttl" {
default = 86400
description = "The default amount of time (in seconds) that an object is in a CloudFront cache before CloudFront forwards another request in the absence of an Cache-Control max-age or Expires header."
}
variable "default_cache_behavior_max_ttl" {
default = 31536000
description = "The maximum amount of time (in seconds) that an object is in a CloudFront cache before CloudFront forwards another request to your origin to determine whether the object has been updated."
}
variable "catalogs_ordered_cache_behavior_min_ttl" {
default = 0
description = "The minimum amount of time (in seconds) that you want catalog objects to stay in CloudFront caches before CloudFront queries your origin to see whether the object has been updated."
}
variable "catalogs_ordered_cache_behavior_default_ttl" {
default = 30
description = "The default amount of time (in seconds) that a catalog object is in a CloudFront cache before CloudFront forwards another request in the absence of an Cache-Control max-age or Expires header."
}
variable "catalogs_ordered_cache_behavior_max_ttl" {
default = 60
description = "The maximum amount of time (in seconds) that a catalog object is in a CloudFront cache before CloudFront forwards another request to your origin to determine whether the object has been updated."
}
variable "manifests_ordered_cache_behavior_min_ttl" {
default = 0
description = "The minimum amount of time (in seconds) that you want manifest objects to stay in CloudFront caches before CloudFront queries your origin to see whether the object has been updated."
}
variable "manifests_ordered_cache_behavior_default_ttl" {
default = 30
description = "The default amount of time (in seconds) that a manifest object is in a CloudFront cache before CloudFront forwards another request in the absence of an Cache-Control max-age or Expires header."
}
variable "manifests_ordered_cache_behavior_max_ttl" {
default = 60
description = "The maximum amount of time (in seconds) that a manifest object is in a CloudFront cache before CloudFront forwards another request to your origin to determine whether the object has been updated."
}
variable "icons_ordered_cache_behavior_min_ttl" {
default = 0
description = "The minimum amount of time (in seconds) that you want icon objects to stay in CloudFront caches before CloudFront queries your origin to see whether the object has been updated."
}
variable "icons_ordered_cache_behavior_default_ttl" {
default = 30
description = "The default amount of time (in seconds) that a icon object is in a CloudFront cache before CloudFront forwards another request in the absence of an Cache-Control max-age or Expires header."
}
variable "icons_ordered_cache_behavior_max_ttl" {
default = 60
description = "The maximum amount of time (in seconds) that a icon object is in a CloudFront cache before CloudFront forwards another request to your origin to determine whether the object has been updated."
}