-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
56 lines (49 loc) · 888 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
variable "prefix" {
default = "schism-aio"
}
variable "lambda_s3_bucket" {
default = "your_bucket_here"
}
variable "lambda_s3_prefix" {
default = "lambdas/schism"
}
variable "lambda_function" {
default = {
controller = {
name = "controller"
version = "v0.4.0"
timeout = 900
runtime = "go1.x"
}
}
}
variable "kms_key" {
default = {
ca_certs = {
key_id = ""
}
signed_certs = {
key_id = ""
}
}
}
variable "ssm" {
default = {
ca_param_prefix = "ca-key"
}
}
variable "s3_store" {
default = {
name = "certificates"
versioned = false
# access_logging requires existing log bucket
access_logging = {
enabled = false
target_bucket = null
# target_prefix is the same name as the bucket
}
}
}
variable "host_ca_auth_domain" {
default = "example.com"
}