-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
60 lines (49 loc) · 1.44 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
variable acme_cert_min_days_remaining {
type = number
description = "number of days before certifcate expires that it will be renewed"
default = 30
}
variable acme_email_address {
type = string
description = "email address of the registered let's encrypt user account"
}
variable acme_environment {
description = "Specify whether to use 'production' or 'staging' environment for Let's Encrypt."
type = string
default = "staging"
}
variable common_name {
type = string
}
variable dns_project_id {
type = string
description = "GCP Project ID where the DNS zones reside"
}
variable project_id {
type = string
description = "GCP Project ID where to create the Secret Manager Secrets"
}
variable region {
type = string
description = "Region where the scheduler job resides. If it is not provided, Terraform will use the provider default"
}
variable secret_id_fullchain {
type = string
description = "Secret name to store the fullchain.pem in Secret Manager"
}
variable secret_id_privkey {
type = string
description = "Secret name to store the privkey.pem in Secret Manager"
}
variable subject_alternative_names {
type = list
}
variable pubsub_topic {
type = string
description = "Name of the Topic where Secret Manager events will be published"
}
variable revoke_certificate_on_destroy {
type = bool
default = false
description = "Revoke certificate upon destroying the previous one"
}