-
Notifications
You must be signed in to change notification settings - Fork 0
/
vars.tf
34 lines (29 loc) · 853 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
variable "domain" {
description = "The TLD of the domain we want to create a DDNS for"
type = string
}
variable "subdomain" {
description = "The subdomain that needs to be updated with DDNS"
type = string
default = "home"
}
variable "enable_cloudwatch" {
description = "Enable Lambda to log cloudwatch events"
type = bool
default = true
}
variable "tags" {
description = "A mapping of tags to assign to the resources created"
type = map(string)
default = {}
}
variable "username" {
description = "Username for the basic authentication. One will be created if none are given"
type = string
default = null
}
variable "password" {
description = "Password for the basic authentication. One will be created if none are given"
type = string
default = null
}