vault_kmip_secret_scope

Manages KMIP Secret Scopes in a Vault server. This feature requires Vault Enterprise. See the Vault documentation for more information.

Example Usage

resource "vault_kmip_secret_backend" "default" {
  path         = "kmip"
  description  = "Vault KMIP backend"
}

resource "vault_kmip_secret_scope" "dev" {
  path  = vault_kmip_secret_backend.default.path
  scope = "dev"
  force = true
}

Argument Reference

The following arguments are supported:

Attributes Reference

No additional attributes are exported by this resource.

Import

KMIP Secret scope can be imported using the path, e.g.

$ terraform import vault_kmip_secret_scope.dev kmip