-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
39 lines (33 loc) · 958 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
variable "zone_id" {
type = string
description = "An ID of the root Route53 zone for creating sub-domains"
}
variable "domain" {
type = string
description = "A domain for mapping"
}
variable "cluster_name" {
type = string
description = "A name of the cluster"
}
variable "tags" {
type = map(string)
description = "A set of tags"
default = {}
}
variable "invite_template" {
type = map(string)
description = "A template for the invite email with credentials"
default = {
email_message = <<EOT
Your Swiss Army Kube username is {username} and temporary password is {####}.
EOT
email_subject = "Your Swiss Army Kube temporary password"
sms_message = "Your Swiss Army Kube username is {username} and temporary password is {####}"
}
}
variable "enable_cloudtrail_logging" {
type = bool
description = "Enable cloudtrail by changing this to true"
default = false
}