vault.pkiSecret.SecretBackendIssuer
Explore with Pulumi AI
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as vault from "@pulumi/vault";
const pki = new vault.Mount("pki", {
path: "pki",
type: "pki",
defaultLeaseTtlSeconds: 3600,
maxLeaseTtlSeconds: 86400,
});
const root = new vault.pkisecret.SecretBackendRootCert("root", {
backend: pki.path,
type: "internal",
commonName: "test",
ttl: "86400",
});
const example = new vault.pkisecret.SecretBackendIssuer("example", {
backend: root.backend,
issuerRef: root.issuerId,
issuerName: "example-issuer",
});
import pulumi
import pulumi_vault as vault
pki = vault.Mount("pki",
path="pki",
type="pki",
default_lease_ttl_seconds=3600,
max_lease_ttl_seconds=86400)
root = vault.pki_secret.SecretBackendRootCert("root",
backend=pki.path,
type="internal",
common_name="test",
ttl="86400")
example = vault.pki_secret.SecretBackendIssuer("example",
backend=root.backend,
issuer_ref=root.issuer_id,
issuer_name="example-issuer")
package main
import (
"github.com/pulumi/pulumi-vault/sdk/v6/go/vault"
"github.com/pulumi/pulumi-vault/sdk/v6/go/vault/pkiSecret"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
pki, err := vault.NewMount(ctx, "pki", &vault.MountArgs{
Path: pulumi.String("pki"),
Type: pulumi.String("pki"),
DefaultLeaseTtlSeconds: pulumi.Int(3600),
MaxLeaseTtlSeconds: pulumi.Int(86400),
})
if err != nil {
return err
}
root, err := pkiSecret.NewSecretBackendRootCert(ctx, "root", &pkiSecret.SecretBackendRootCertArgs{
Backend: pki.Path,
Type: pulumi.String("internal"),
CommonName: pulumi.String("test"),
Ttl: pulumi.String("86400"),
})
if err != nil {
return err
}
_, err = pkiSecret.NewSecretBackendIssuer(ctx, "example", &pkiSecret.SecretBackendIssuerArgs{
Backend: root.Backend,
IssuerRef: root.IssuerId,
IssuerName: pulumi.String("example-issuer"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Vault = Pulumi.Vault;
return await Deployment.RunAsync(() =>
{
var pki = new Vault.Mount("pki", new()
{
Path = "pki",
Type = "pki",
DefaultLeaseTtlSeconds = 3600,
MaxLeaseTtlSeconds = 86400,
});
var root = new Vault.PkiSecret.SecretBackendRootCert("root", new()
{
Backend = pki.Path,
Type = "internal",
CommonName = "test",
Ttl = "86400",
});
var example = new Vault.PkiSecret.SecretBackendIssuer("example", new()
{
Backend = root.Backend,
IssuerRef = root.IssuerId,
IssuerName = "example-issuer",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.vault.Mount;
import com.pulumi.vault.MountArgs;
import com.pulumi.vault.pkiSecret.SecretBackendRootCert;
import com.pulumi.vault.pkiSecret.SecretBackendRootCertArgs;
import com.pulumi.vault.pkiSecret.SecretBackendIssuer;
import com.pulumi.vault.pkiSecret.SecretBackendIssuerArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var pki = new Mount("pki", MountArgs.builder()
.path("pki")
.type("pki")
.defaultLeaseTtlSeconds(3600)
.maxLeaseTtlSeconds(86400)
.build());
var root = new SecretBackendRootCert("root", SecretBackendRootCertArgs.builder()
.backend(pki.path())
.type("internal")
.commonName("test")
.ttl("86400")
.build());
var example = new SecretBackendIssuer("example", SecretBackendIssuerArgs.builder()
.backend(root.backend())
.issuerRef(root.issuerId())
.issuerName("example-issuer")
.build());
}
}
resources:
pki:
type: vault:Mount
properties:
path: pki
type: pki
defaultLeaseTtlSeconds: 3600
maxLeaseTtlSeconds: 86400
root:
type: vault:pkiSecret:SecretBackendRootCert
properties:
backend: ${pki.path}
type: internal
commonName: test
ttl: '86400'
example:
type: vault:pkiSecret:SecretBackendIssuer
properties:
backend: ${root.backend}
issuerRef: ${root.issuerId}
issuerName: example-issuer
Create SecretBackendIssuer Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SecretBackendIssuer(name: string, args: SecretBackendIssuerArgs, opts?: CustomResourceOptions);
@overload
def SecretBackendIssuer(resource_name: str,
args: SecretBackendIssuerArgs,
opts: Optional[ResourceOptions] = None)
@overload
def SecretBackendIssuer(resource_name: str,
opts: Optional[ResourceOptions] = None,
backend: Optional[str] = None,
issuer_ref: Optional[str] = None,
crl_distribution_points: Optional[Sequence[str]] = None,
enable_aia_url_templating: Optional[bool] = None,
issuer_name: Optional[str] = None,
issuing_certificates: Optional[Sequence[str]] = None,
leaf_not_after_behavior: Optional[str] = None,
manual_chains: Optional[Sequence[str]] = None,
namespace: Optional[str] = None,
ocsp_servers: Optional[Sequence[str]] = None,
revocation_signature_algorithm: Optional[str] = None,
usage: Optional[str] = None)
func NewSecretBackendIssuer(ctx *Context, name string, args SecretBackendIssuerArgs, opts ...ResourceOption) (*SecretBackendIssuer, error)
public SecretBackendIssuer(string name, SecretBackendIssuerArgs args, CustomResourceOptions? opts = null)
public SecretBackendIssuer(String name, SecretBackendIssuerArgs args)
public SecretBackendIssuer(String name, SecretBackendIssuerArgs args, CustomResourceOptions options)
type: vault:pkiSecret:SecretBackendIssuer
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args SecretBackendIssuerArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args SecretBackendIssuerArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args SecretBackendIssuerArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SecretBackendIssuerArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SecretBackendIssuerArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var secretBackendIssuerResource = new Vault.PkiSecret.SecretBackendIssuer("secretBackendIssuerResource", new()
{
Backend = "string",
IssuerRef = "string",
CrlDistributionPoints = new[]
{
"string",
},
EnableAiaUrlTemplating = false,
IssuerName = "string",
IssuingCertificates = new[]
{
"string",
},
LeafNotAfterBehavior = "string",
ManualChains = new[]
{
"string",
},
Namespace = "string",
OcspServers = new[]
{
"string",
},
RevocationSignatureAlgorithm = "string",
Usage = "string",
});
example, err := pkiSecret.NewSecretBackendIssuer(ctx, "secretBackendIssuerResource", &pkiSecret.SecretBackendIssuerArgs{
Backend: pulumi.String("string"),
IssuerRef: pulumi.String("string"),
CrlDistributionPoints: pulumi.StringArray{
pulumi.String("string"),
},
EnableAiaUrlTemplating: pulumi.Bool(false),
IssuerName: pulumi.String("string"),
IssuingCertificates: pulumi.StringArray{
pulumi.String("string"),
},
LeafNotAfterBehavior: pulumi.String("string"),
ManualChains: pulumi.StringArray{
pulumi.String("string"),
},
Namespace: pulumi.String("string"),
OcspServers: pulumi.StringArray{
pulumi.String("string"),
},
RevocationSignatureAlgorithm: pulumi.String("string"),
Usage: pulumi.String("string"),
})
var secretBackendIssuerResource = new SecretBackendIssuer("secretBackendIssuerResource", SecretBackendIssuerArgs.builder()
.backend("string")
.issuerRef("string")
.crlDistributionPoints("string")
.enableAiaUrlTemplating(false)
.issuerName("string")
.issuingCertificates("string")
.leafNotAfterBehavior("string")
.manualChains("string")
.namespace("string")
.ocspServers("string")
.revocationSignatureAlgorithm("string")
.usage("string")
.build());
secret_backend_issuer_resource = vault.pki_secret.SecretBackendIssuer("secretBackendIssuerResource",
backend="string",
issuer_ref="string",
crl_distribution_points=["string"],
enable_aia_url_templating=False,
issuer_name="string",
issuing_certificates=["string"],
leaf_not_after_behavior="string",
manual_chains=["string"],
namespace="string",
ocsp_servers=["string"],
revocation_signature_algorithm="string",
usage="string")
const secretBackendIssuerResource = new vault.pkisecret.SecretBackendIssuer("secretBackendIssuerResource", {
backend: "string",
issuerRef: "string",
crlDistributionPoints: ["string"],
enableAiaUrlTemplating: false,
issuerName: "string",
issuingCertificates: ["string"],
leafNotAfterBehavior: "string",
manualChains: ["string"],
namespace: "string",
ocspServers: ["string"],
revocationSignatureAlgorithm: "string",
usage: "string",
});
type: vault:pkiSecret:SecretBackendIssuer
properties:
backend: string
crlDistributionPoints:
- string
enableAiaUrlTemplating: false
issuerName: string
issuerRef: string
issuingCertificates:
- string
leafNotAfterBehavior: string
manualChains:
- string
namespace: string
ocspServers:
- string
revocationSignatureAlgorithm: string
usage: string
SecretBackendIssuer Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The SecretBackendIssuer resource accepts the following input properties:
- Backend string
- The path the PKI secret backend is mounted at, with no
leading or trailing
/
s. - Issuer
Ref string - Reference to an existing issuer.
- Crl
Distribution List<string>Points - Specifies the URL values for the CRL Distribution Points field.
- Enable
Aia boolUrl Templating - Specifies that the AIA URL values should be templated.
- Issuer
Name string - Name of the issuer.
- Issuing
Certificates List<string> - Specifies the URL values for the Issuing Certificate field.
- Leaf
Not stringAfter Behavior - Behavior of a leaf's NotAfter field during issuance.
- Manual
Chains List<string> - Chain of issuer references to build this issuer's computed CAChain field from, when non-empty.
- Namespace string
- 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. - Ocsp
Servers List<string> - Specifies the URL values for the OCSP Servers field.
- Revocation
Signature stringAlgorithm - Which signature algorithm to use when building CRLs.
- Usage string
- Allowed usages for this issuer.
- Backend string
- The path the PKI secret backend is mounted at, with no
leading or trailing
/
s. - Issuer
Ref string - Reference to an existing issuer.
- Crl
Distribution []stringPoints - Specifies the URL values for the CRL Distribution Points field.
- Enable
Aia boolUrl Templating - Specifies that the AIA URL values should be templated.
- Issuer
Name string - Name of the issuer.
- Issuing
Certificates []string - Specifies the URL values for the Issuing Certificate field.
- Leaf
Not stringAfter Behavior - Behavior of a leaf's NotAfter field during issuance.
- Manual
Chains []string - Chain of issuer references to build this issuer's computed CAChain field from, when non-empty.
- Namespace string
- 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. - Ocsp
Servers []string - Specifies the URL values for the OCSP Servers field.
- Revocation
Signature stringAlgorithm - Which signature algorithm to use when building CRLs.
- Usage string
- Allowed usages for this issuer.
- backend String
- The path the PKI secret backend is mounted at, with no
leading or trailing
/
s. - issuer
Ref String - Reference to an existing issuer.
- crl
Distribution List<String>Points - Specifies the URL values for the CRL Distribution Points field.
- enable
Aia BooleanUrl Templating - Specifies that the AIA URL values should be templated.
- issuer
Name String - Name of the issuer.
- issuing
Certificates List<String> - Specifies the URL values for the Issuing Certificate field.
- leaf
Not StringAfter Behavior - Behavior of a leaf's NotAfter field during issuance.
- manual
Chains List<String> - Chain of issuer references to build this issuer's computed CAChain field from, when non-empty.
- namespace String
- 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. - ocsp
Servers List<String> - Specifies the URL values for the OCSP Servers field.
- revocation
Signature StringAlgorithm - Which signature algorithm to use when building CRLs.
- usage String
- Allowed usages for this issuer.
- backend string
- The path the PKI secret backend is mounted at, with no
leading or trailing
/
s. - issuer
Ref string - Reference to an existing issuer.
- crl
Distribution string[]Points - Specifies the URL values for the CRL Distribution Points field.
- enable
Aia booleanUrl Templating - Specifies that the AIA URL values should be templated.
- issuer
Name string - Name of the issuer.
- issuing
Certificates string[] - Specifies the URL values for the Issuing Certificate field.
- leaf
Not stringAfter Behavior - Behavior of a leaf's NotAfter field during issuance.
- manual
Chains string[] - Chain of issuer references to build this issuer's computed CAChain field from, when non-empty.
- namespace string
- 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. - ocsp
Servers string[] - Specifies the URL values for the OCSP Servers field.
- revocation
Signature stringAlgorithm - Which signature algorithm to use when building CRLs.
- usage string
- Allowed usages for this issuer.
- backend str
- The path the PKI secret backend is mounted at, with no
leading or trailing
/
s. - issuer_
ref str - Reference to an existing issuer.
- crl_
distribution_ Sequence[str]points - Specifies the URL values for the CRL Distribution Points field.
- enable_
aia_ boolurl_ templating - Specifies that the AIA URL values should be templated.
- issuer_
name str - Name of the issuer.
- issuing_
certificates Sequence[str] - Specifies the URL values for the Issuing Certificate field.
- leaf_
not_ strafter_ behavior - Behavior of a leaf's NotAfter field during issuance.
- manual_
chains Sequence[str] - Chain of issuer references to build this issuer's computed CAChain field from, when non-empty.
- namespace str
- 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. - ocsp_
servers Sequence[str] - Specifies the URL values for the OCSP Servers field.
- revocation_
signature_ stralgorithm - Which signature algorithm to use when building CRLs.
- usage str
- Allowed usages for this issuer.
- backend String
- The path the PKI secret backend is mounted at, with no
leading or trailing
/
s. - issuer
Ref String - Reference to an existing issuer.
- crl
Distribution List<String>Points - Specifies the URL values for the CRL Distribution Points field.
- enable
Aia BooleanUrl Templating - Specifies that the AIA URL values should be templated.
- issuer
Name String - Name of the issuer.
- issuing
Certificates List<String> - Specifies the URL values for the Issuing Certificate field.
- leaf
Not StringAfter Behavior - Behavior of a leaf's NotAfter field during issuance.
- manual
Chains List<String> - Chain of issuer references to build this issuer's computed CAChain field from, when non-empty.
- namespace String
- 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. - ocsp
Servers List<String> - Specifies the URL values for the OCSP Servers field.
- revocation
Signature StringAlgorithm - Which signature algorithm to use when building CRLs.
- usage String
- Allowed usages for this issuer.
Outputs
All input properties are implicitly available as output properties. Additionally, the SecretBackendIssuer resource produces the following output properties:
Look up Existing SecretBackendIssuer Resource
Get an existing SecretBackendIssuer resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: SecretBackendIssuerState, opts?: CustomResourceOptions): SecretBackendIssuer
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
backend: Optional[str] = None,
crl_distribution_points: Optional[Sequence[str]] = None,
enable_aia_url_templating: Optional[bool] = None,
issuer_id: Optional[str] = None,
issuer_name: Optional[str] = None,
issuer_ref: Optional[str] = None,
issuing_certificates: Optional[Sequence[str]] = None,
leaf_not_after_behavior: Optional[str] = None,
manual_chains: Optional[Sequence[str]] = None,
namespace: Optional[str] = None,
ocsp_servers: Optional[Sequence[str]] = None,
revocation_signature_algorithm: Optional[str] = None,
usage: Optional[str] = None) -> SecretBackendIssuer
func GetSecretBackendIssuer(ctx *Context, name string, id IDInput, state *SecretBackendIssuerState, opts ...ResourceOption) (*SecretBackendIssuer, error)
public static SecretBackendIssuer Get(string name, Input<string> id, SecretBackendIssuerState? state, CustomResourceOptions? opts = null)
public static SecretBackendIssuer get(String name, Output<String> id, SecretBackendIssuerState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Backend string
- The path the PKI secret backend is mounted at, with no
leading or trailing
/
s. - Crl
Distribution List<string>Points - Specifies the URL values for the CRL Distribution Points field.
- Enable
Aia boolUrl Templating - Specifies that the AIA URL values should be templated.
- Issuer
Id string - ID of the issuer.
- Issuer
Name string - Name of the issuer.
- Issuer
Ref string - Reference to an existing issuer.
- Issuing
Certificates List<string> - Specifies the URL values for the Issuing Certificate field.
- Leaf
Not stringAfter Behavior - Behavior of a leaf's NotAfter field during issuance.
- Manual
Chains List<string> - Chain of issuer references to build this issuer's computed CAChain field from, when non-empty.
- Namespace string
- 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. - Ocsp
Servers List<string> - Specifies the URL values for the OCSP Servers field.
- Revocation
Signature stringAlgorithm - Which signature algorithm to use when building CRLs.
- Usage string
- Allowed usages for this issuer.
- Backend string
- The path the PKI secret backend is mounted at, with no
leading or trailing
/
s. - Crl
Distribution []stringPoints - Specifies the URL values for the CRL Distribution Points field.
- Enable
Aia boolUrl Templating - Specifies that the AIA URL values should be templated.
- Issuer
Id string - ID of the issuer.
- Issuer
Name string - Name of the issuer.
- Issuer
Ref string - Reference to an existing issuer.
- Issuing
Certificates []string - Specifies the URL values for the Issuing Certificate field.
- Leaf
Not stringAfter Behavior - Behavior of a leaf's NotAfter field during issuance.
- Manual
Chains []string - Chain of issuer references to build this issuer's computed CAChain field from, when non-empty.
- Namespace string
- 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. - Ocsp
Servers []string - Specifies the URL values for the OCSP Servers field.
- Revocation
Signature stringAlgorithm - Which signature algorithm to use when building CRLs.
- Usage string
- Allowed usages for this issuer.
- backend String
- The path the PKI secret backend is mounted at, with no
leading or trailing
/
s. - crl
Distribution List<String>Points - Specifies the URL values for the CRL Distribution Points field.
- enable
Aia BooleanUrl Templating - Specifies that the AIA URL values should be templated.
- issuer
Id String - ID of the issuer.
- issuer
Name String - Name of the issuer.
- issuer
Ref String - Reference to an existing issuer.
- issuing
Certificates List<String> - Specifies the URL values for the Issuing Certificate field.
- leaf
Not StringAfter Behavior - Behavior of a leaf's NotAfter field during issuance.
- manual
Chains List<String> - Chain of issuer references to build this issuer's computed CAChain field from, when non-empty.
- namespace String
- 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. - ocsp
Servers List<String> - Specifies the URL values for the OCSP Servers field.
- revocation
Signature StringAlgorithm - Which signature algorithm to use when building CRLs.
- usage String
- Allowed usages for this issuer.
- backend string
- The path the PKI secret backend is mounted at, with no
leading or trailing
/
s. - crl
Distribution string[]Points - Specifies the URL values for the CRL Distribution Points field.
- enable
Aia booleanUrl Templating - Specifies that the AIA URL values should be templated.
- issuer
Id string - ID of the issuer.
- issuer
Name string - Name of the issuer.
- issuer
Ref string - Reference to an existing issuer.
- issuing
Certificates string[] - Specifies the URL values for the Issuing Certificate field.
- leaf
Not stringAfter Behavior - Behavior of a leaf's NotAfter field during issuance.
- manual
Chains string[] - Chain of issuer references to build this issuer's computed CAChain field from, when non-empty.
- namespace string
- 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. - ocsp
Servers string[] - Specifies the URL values for the OCSP Servers field.
- revocation
Signature stringAlgorithm - Which signature algorithm to use when building CRLs.
- usage string
- Allowed usages for this issuer.
- backend str
- The path the PKI secret backend is mounted at, with no
leading or trailing
/
s. - crl_
distribution_ Sequence[str]points - Specifies the URL values for the CRL Distribution Points field.
- enable_
aia_ boolurl_ templating - Specifies that the AIA URL values should be templated.
- issuer_
id str - ID of the issuer.
- issuer_
name str - Name of the issuer.
- issuer_
ref str - Reference to an existing issuer.
- issuing_
certificates Sequence[str] - Specifies the URL values for the Issuing Certificate field.
- leaf_
not_ strafter_ behavior - Behavior of a leaf's NotAfter field during issuance.
- manual_
chains Sequence[str] - Chain of issuer references to build this issuer's computed CAChain field from, when non-empty.
- namespace str
- 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. - ocsp_
servers Sequence[str] - Specifies the URL values for the OCSP Servers field.
- revocation_
signature_ stralgorithm - Which signature algorithm to use when building CRLs.
- usage str
- Allowed usages for this issuer.
- backend String
- The path the PKI secret backend is mounted at, with no
leading or trailing
/
s. - crl
Distribution List<String>Points - Specifies the URL values for the CRL Distribution Points field.
- enable
Aia BooleanUrl Templating - Specifies that the AIA URL values should be templated.
- issuer
Id String - ID of the issuer.
- issuer
Name String - Name of the issuer.
- issuer
Ref String - Reference to an existing issuer.
- issuing
Certificates List<String> - Specifies the URL values for the Issuing Certificate field.
- leaf
Not StringAfter Behavior - Behavior of a leaf's NotAfter field during issuance.
- manual
Chains List<String> - Chain of issuer references to build this issuer's computed CAChain field from, when non-empty.
- namespace String
- 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. - ocsp
Servers List<String> - Specifies the URL values for the OCSP Servers field.
- revocation
Signature StringAlgorithm - Which signature algorithm to use when building CRLs.
- usage String
- Allowed usages for this issuer.
Import
PKI secret backend issuer can be imported using the id
, e.g.
$ pulumi import vault:pkiSecret/secretBackendIssuer:SecretBackendIssuer example pki/issuer/bf9b0d48-d0dd-652c-30be-77d04fc7e94d
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Vault pulumi/pulumi-vault
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
vault
Terraform Provider.