Configures the periodic tidying operation of the blacklisted role tag entries.
resource "vault_auth_backend" "example" {
type = "aws"
}
resource "vault_aws_auth_backend_roletag_blacklist" "example" {
backend = vault_auth_backend.example.path
safety_buffer = 360
}
The following arguments are supported:
namespace
- (Optional) The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The namespace
is always relative to the provider's configured namespace.
Available only for Vault Enterprise.
backend
- (Required) The path the AWS auth backend being configured was
mounted at.
safety_buffer
- (Optional) The amount of extra time that must have passed
beyond the roletag expiration, before it is removed from the backend storage.
Defaults to 259,200 seconds, or 72 hours.
disable_periodic_tidy
- (Optional) If set to true, disables the periodic
tidying of the roletag blacklist entries. Defaults to false.
No additional attributes are exported by this resource.