Configure the Identity Tokens Backend.
The Identity secrets engine is the identity management solution for Vault. It internally maintains the clients who are recognized by Vault.
resource "vault_identity_oidc" "server" {
issuer = "https://www.acme.com"
}
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.
issuer
- (Optional) Issuer URL to be used in the iss claim of the token. If not set, Vault's
api_addr
will be used. The issuer is a case sensitive URL using the https scheme that contains
scheme, host, and optionally, port number and path components, but no query or fragment
components.
No additional attributes are exposed by this resource.