-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathvariables.tf
43 lines (35 loc) · 1 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
variable "path" {
description = "Mount Point of the Secrets Engine"
}
variable "description" {
description = <<EOF
The type of servers for this SSH engine mount point.
Name will be used in the human friendly mount description.
EOF
}
# --------------------------------------------------------------------------------------------------
# OPTIONAL PARAMETERS
# These parameters have reasonable defaults.
# --------------------------------------------------------------------------------------------------
variable "enabled" {
description = "Enable deploying this SSH secrets mount"
default = true
}
variable "ssh_user" {
description = "SSH user to allow SSH access"
default = "ubuntu"
}
variable "ttl" {
description = "TTL for the certificate in seconds"
default = 300
}
variable "max_ttl" {
description = "Max TTL for certificate renewal"
default = 86400
}
variable "role_name" {
description = <<EOF
Name of role to create for this mount point.
EOF
default = "default"
}