vault_pki_secret_backend_issuers

Lists all issuers under a particular mount.

Example Usage

resource "vault_mount" "pki" {
  path        = "pki"
  type        = "pki"
  description = "PKI secret engine mount"
}

resource "vault_pki_secret_backend_root_cert" "root" {
  backend     = vault_mount.pki.path
  type        = "internal"
  common_name = "example"
  ttl         = "86400"
  issuer_name = "example"
}

data "vault_pki_secret_backend_issuers" "test" {
  backend     = vault_pki_secret_backend_root_cert.root.backend
}

Argument Reference

The following arguments are supported:

Attributes Reference

In addition to the arguments above, the following attributes are exported: