You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description="Default policy for everyone that's authorized using this method. I.e. this policies may allow access to cubbyhole and utilities."
29
29
}
30
30
31
-
variable"default_lease_ttl" {
32
-
type=string
33
-
default="12h"
34
-
description="Default Time-To-Live (in time unit format, i.e. 20m or 10h) for Vault tokens generated by this method. It should be set to a time comfortable for all users, yet still short enough to be safe in case of breach. It may be shorter than `max_lease_ttl`, as lease can be renewed."
31
+
variable"default_ttl" {
32
+
type=number
33
+
default=12*60*60
34
+
description="Default Time-To-Live (in seconds) for Vault tokens generated by this method. It should be set to a time comfortable for all users, yet still short enough to be safe in case of breach. It may be shorter than `max_lease_ttl`, as lease can be renewed."
35
35
}
36
36
37
-
variable"max_lease_ttl" {
38
-
type=string
39
-
default="12h"
40
-
description="Maximum Time-To-Live (in time unit format, i.e. 20m or 10h) for Vault tokens generated by this method. It should be set to a time comfortable for all users, yet still short enough to be safe in case of breach. After this time passes, user needs to authenticate again."
37
+
variable"max_ttl" {
38
+
type=number
39
+
default=12*60*60
40
+
description="Maximum Time-To-Live (in seconds) for Vault tokens generated by this method. It should be set to a time comfortable for all users, yet still short enough to be safe in case of breach. After this time passes, user needs to authenticate again."
0 commit comments