-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
33 lines (28 loc) · 882 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
variable "enable_dynamo_encryption" {
description = "Sets whether or not to enable KMS encryption for DynamoDB"
type = bool
default = false
}
variable "enable_lambda_env_encryption" {
description = "Sets whether or not to enable KMS encryption for Lambda ENV"
type = bool
default = false
}
variable "enable_lambda_code_signing" {
description = "Sets whether or not to enable Lambda code signing with AWS Signing Profiles"
type = bool
default = false
}
variable "hosted_zone" {
description = "The hosted zone to configure for dynamic DNS"
type = string
}
variable "dyndns_hostname" {
description = "The hostname to configure for dynamic DNS records"
type = string
}
variable "dyndns_shared_secret" {
sensitive = true
description = "Shared Secret value to authorized records"
type = string
}