azurerm_key_vault_certificate_issuer

Manages a Key Vault Certificate Issuer.

Example Usage

data "azurerm_client_config" "current" {}

resource "azurerm_resource_group" "example" {
  name     = "example-resources"
  location = "West Europe"
}

resource "azurerm_key_vault" "example" {
  name                = "examplekeyvault"
  location            = azurerm_resource_group.example.location
  resource_group_name = azurerm_resource_group.example.name
  sku_name            = "standard"
  tenant_id           = data.azurerm_client_config.current.tenant_id
}

resource "azurerm_key_vault_certificate_issuer" "example" {
  name          = "example-issuer"
  org_id        = "ExampleOrgName"
  key_vault_id  = azurerm_key_vault.example.id
  provider_name = "DigiCert"
  account_id    = "0000"
  password      = "example-password"
}

Arguments Reference

The following arguments are supported:


An admin block supports the following:

Attributes Reference

In addition to the Arguments listed above - the following Attributes are exported:

Timeouts

The timeouts block allows you to specify timeouts for certain actions:

Import

Key Vault Certificate Issuers can be imported using the resource id, e.g.

terraform import azurerm_key_vault_certificate_issuer.example "https://key-vault-name.vault.azure.net/certificates/issuers/example"