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: "Name of the password policy to use to generate passwords for this role.",
69
69
},
70
+
consts.FieldRotateOnRead: {
71
+
Type: schema.TypeBool,
72
+
Optional: true,
73
+
Description: "If true, credentials are rotated on each read. Overrides the engine-level default when set. Requires Vault Enterprise ≥ 2.1.0.",
74
+
},
75
+
consts.FieldRotateOnReadCooldown: {
76
+
Type: schema.TypeInt,
77
+
Optional: true,
78
+
Description: "Minimum seconds between rotate-on-read rotations for this role. Overrides the engine-level default when set. Requires Vault Enterprise ≥ 2.1.0.",
Copy file name to clipboardExpand all lines: website/docs/r/ldap_secret_backend_static_role.html.md
+11Lines changed: 11 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -77,6 +77,17 @@ The following arguments are supported:
77
77
*`password_policy` - (Optional) Name of the password policy to use to generate passwords for this role.
78
78
Requires Vault 2.1.0+.
79
79
80
+
*`rotate_on_read` - (Optional) If true, credentials are rotated on each read. When set, this overrides
81
+
the engine-level `rotate_on_read` default. When unset, the role inherits the engine-level value.
82
+
Removing this attribute after it has been set is not supported without recreating the role.
83
+
Requires Vault Enterprise 2.1.0+.
84
+
85
+
*`rotate_on_read_cooldown` - (Optional) Minimum number of seconds between rotate-on-read rotations
86
+
for this role. When set, this overrides the engine-level `rotate_on_read_cooldown` default.
87
+
When unset, the role inherits the engine-level value.
88
+
Removing this attribute after it has been set is not supported without recreating the role.
89
+
Requires Vault Enterprise 2.1.0+.
90
+
80
91
*`disable_automated_rotation` - (Optional) Cancels all upcoming rotations of the static credential until unset. Requires Vault Enterprise 2.0+.
81
92
82
93
*`password_wo_version` - (Optional) The version of the `password_wo`. For more info see [updating write-only attributes](https://registry.terraform.io/providers/hashicorp/vault/latest/docs/guides/using_write_only_attributes.html#updating-write-only-attributes).
0 commit comments