-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
vars.tf
36 lines (30 loc) · 817 Bytes
/
vars.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
#
# Cloud Resources
#
variable "name_prefix" {
description = "A prefix used for naming resources"
default = "certbot-lambda"
}
variable "name" {
description = "A name for naming resources"
}
variable "hosted_zone_id" {
description = "The id of the hosted zone that will be modified to prove ownership of the domain"
}
variable "function_trigger_schedule_expression" {
description = "A cron-like expression that determines when the function is triggered"
default = "cron(0 */12 * * ? *)"
}
variable "tags" {
description = "Resource Tags"
default = {}
}
#
# LetsEncrypt Certificate Settings
#
variable "contact_email" {
description = "Contact email for LetsEncrypt notifications"
}
variable "certificate_domains" {
description = "Domains that will be included in the certificate"
}