vault.CertAuthBackendRole
Explore with Pulumi AI
Provides a resource to create a role in an Cert auth backend within Vault.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as std from "@pulumi/std";
import * as vault from "@pulumi/vault";
const cert = new vault.AuthBackend("cert", {
    path: "cert",
    type: "cert",
});
const certCertAuthBackendRole = new vault.CertAuthBackendRole("cert", {
    name: "foo",
    certificate: std.file({
        input: "/path/to/certs/ca-cert.pem",
    }).then(invoke => invoke.result),
    backend: cert.path,
    allowedNames: [
        "foo.example.org",
        "baz.example.org",
    ],
    tokenTtl: 300,
    tokenMaxTtl: 600,
    tokenPolicies: ["foo"],
});
import pulumi
import pulumi_std as std
import pulumi_vault as vault
cert = vault.AuthBackend("cert",
    path="cert",
    type="cert")
cert_cert_auth_backend_role = vault.CertAuthBackendRole("cert",
    name="foo",
    certificate=std.file(input="/path/to/certs/ca-cert.pem").result,
    backend=cert.path,
    allowed_names=[
        "foo.example.org",
        "baz.example.org",
    ],
    token_ttl=300,
    token_max_ttl=600,
    token_policies=["foo"])
package main
import (
	"github.com/pulumi/pulumi-std/sdk/go/std"
	"github.com/pulumi/pulumi-vault/sdk/v6/go/vault"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		cert, err := vault.NewAuthBackend(ctx, "cert", &vault.AuthBackendArgs{
			Path: pulumi.String("cert"),
			Type: pulumi.String("cert"),
		})
		if err != nil {
			return err
		}
		invokeFile, err := std.File(ctx, &std.FileArgs{
			Input: "/path/to/certs/ca-cert.pem",
		}, nil)
		if err != nil {
			return err
		}
		_, err = vault.NewCertAuthBackendRole(ctx, "cert", &vault.CertAuthBackendRoleArgs{
			Name:        pulumi.String("foo"),
			Certificate: pulumi.String(invokeFile.Result),
			Backend:     cert.Path,
			AllowedNames: pulumi.StringArray{
				pulumi.String("foo.example.org"),
				pulumi.String("baz.example.org"),
			},
			TokenTtl:    pulumi.Int(300),
			TokenMaxTtl: pulumi.Int(600),
			TokenPolicies: pulumi.StringArray{
				pulumi.String("foo"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Std = Pulumi.Std;
using Vault = Pulumi.Vault;
return await Deployment.RunAsync(() => 
{
    var cert = new Vault.AuthBackend("cert", new()
    {
        Path = "cert",
        Type = "cert",
    });
    var certCertAuthBackendRole = new Vault.CertAuthBackendRole("cert", new()
    {
        Name = "foo",
        Certificate = Std.File.Invoke(new()
        {
            Input = "/path/to/certs/ca-cert.pem",
        }).Apply(invoke => invoke.Result),
        Backend = cert.Path,
        AllowedNames = new[]
        {
            "foo.example.org",
            "baz.example.org",
        },
        TokenTtl = 300,
        TokenMaxTtl = 600,
        TokenPolicies = new[]
        {
            "foo",
        },
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.vault.AuthBackend;
import com.pulumi.vault.AuthBackendArgs;
import com.pulumi.vault.CertAuthBackendRole;
import com.pulumi.vault.CertAuthBackendRoleArgs;
import com.pulumi.std.StdFunctions;
import com.pulumi.std.inputs.FileArgs;
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 cert = new AuthBackend("cert", AuthBackendArgs.builder()
            .path("cert")
            .type("cert")
            .build());
        var certCertAuthBackendRole = new CertAuthBackendRole("certCertAuthBackendRole", CertAuthBackendRoleArgs.builder()
            .name("foo")
            .certificate(StdFunctions.file(FileArgs.builder()
                .input("/path/to/certs/ca-cert.pem")
                .build()).result())
            .backend(cert.path())
            .allowedNames(            
                "foo.example.org",
                "baz.example.org")
            .tokenTtl(300)
            .tokenMaxTtl(600)
            .tokenPolicies("foo")
            .build());
    }
}
resources:
  cert:
    type: vault:AuthBackend
    properties:
      path: cert
      type: cert
  certCertAuthBackendRole:
    type: vault:CertAuthBackendRole
    name: cert
    properties:
      name: foo
      certificate:
        fn::invoke:
          function: std:file
          arguments:
            input: /path/to/certs/ca-cert.pem
          return: result
      backend: ${cert.path}
      allowedNames:
        - foo.example.org
        - baz.example.org
      tokenTtl: 300
      tokenMaxTtl: 600
      tokenPolicies:
        - foo
Create CertAuthBackendRole Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new CertAuthBackendRole(name: string, args: CertAuthBackendRoleArgs, opts?: CustomResourceOptions);@overload
def CertAuthBackendRole(resource_name: str,
                        args: CertAuthBackendRoleArgs,
                        opts: Optional[ResourceOptions] = None)
@overload
def CertAuthBackendRole(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        certificate: Optional[str] = None,
                        ocsp_enabled: Optional[bool] = None,
                        token_period: Optional[int] = None,
                        allowed_names: Optional[Sequence[str]] = None,
                        allowed_organizational_units: Optional[Sequence[str]] = None,
                        allowed_uri_sans: Optional[Sequence[str]] = None,
                        backend: Optional[str] = None,
                        allowed_dns_sans: Optional[Sequence[str]] = None,
                        display_name: Optional[str] = None,
                        name: Optional[str] = None,
                        namespace: Optional[str] = None,
                        ocsp_ca_certificates: Optional[str] = None,
                        allowed_common_names: Optional[Sequence[str]] = None,
                        allowed_email_sans: Optional[Sequence[str]] = None,
                        ocsp_servers_overrides: Optional[Sequence[str]] = None,
                        ocsp_fail_open: Optional[bool] = None,
                        required_extensions: Optional[Sequence[str]] = None,
                        token_bound_cidrs: Optional[Sequence[str]] = None,
                        token_explicit_max_ttl: Optional[int] = None,
                        token_max_ttl: Optional[int] = None,
                        token_no_default_policy: Optional[bool] = None,
                        token_num_uses: Optional[int] = None,
                        ocsp_query_all_servers: Optional[bool] = None,
                        token_policies: Optional[Sequence[str]] = None,
                        token_ttl: Optional[int] = None,
                        token_type: Optional[str] = None)func NewCertAuthBackendRole(ctx *Context, name string, args CertAuthBackendRoleArgs, opts ...ResourceOption) (*CertAuthBackendRole, error)public CertAuthBackendRole(string name, CertAuthBackendRoleArgs args, CustomResourceOptions? opts = null)
public CertAuthBackendRole(String name, CertAuthBackendRoleArgs args)
public CertAuthBackendRole(String name, CertAuthBackendRoleArgs args, CustomResourceOptions options)
type: vault:CertAuthBackendRole
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 CertAuthBackendRoleArgs
- 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 CertAuthBackendRoleArgs
- 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 CertAuthBackendRoleArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args CertAuthBackendRoleArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args CertAuthBackendRoleArgs
- 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 certAuthBackendRoleResource = new Vault.CertAuthBackendRole("certAuthBackendRoleResource", new()
{
    Certificate = "string",
    OcspEnabled = false,
    TokenPeriod = 0,
    AllowedNames = new[]
    {
        "string",
    },
    AllowedOrganizationalUnits = new[]
    {
        "string",
    },
    AllowedUriSans = new[]
    {
        "string",
    },
    Backend = "string",
    AllowedDnsSans = new[]
    {
        "string",
    },
    DisplayName = "string",
    Name = "string",
    Namespace = "string",
    OcspCaCertificates = "string",
    AllowedCommonNames = new[]
    {
        "string",
    },
    AllowedEmailSans = new[]
    {
        "string",
    },
    OcspServersOverrides = new[]
    {
        "string",
    },
    OcspFailOpen = false,
    RequiredExtensions = new[]
    {
        "string",
    },
    TokenBoundCidrs = new[]
    {
        "string",
    },
    TokenExplicitMaxTtl = 0,
    TokenMaxTtl = 0,
    TokenNoDefaultPolicy = false,
    TokenNumUses = 0,
    OcspQueryAllServers = false,
    TokenPolicies = new[]
    {
        "string",
    },
    TokenTtl = 0,
    TokenType = "string",
});
example, err := vault.NewCertAuthBackendRole(ctx, "certAuthBackendRoleResource", &vault.CertAuthBackendRoleArgs{
	Certificate: pulumi.String("string"),
	OcspEnabled: pulumi.Bool(false),
	TokenPeriod: pulumi.Int(0),
	AllowedNames: pulumi.StringArray{
		pulumi.String("string"),
	},
	AllowedOrganizationalUnits: pulumi.StringArray{
		pulumi.String("string"),
	},
	AllowedUriSans: pulumi.StringArray{
		pulumi.String("string"),
	},
	Backend: pulumi.String("string"),
	AllowedDnsSans: pulumi.StringArray{
		pulumi.String("string"),
	},
	DisplayName:        pulumi.String("string"),
	Name:               pulumi.String("string"),
	Namespace:          pulumi.String("string"),
	OcspCaCertificates: pulumi.String("string"),
	AllowedCommonNames: pulumi.StringArray{
		pulumi.String("string"),
	},
	AllowedEmailSans: pulumi.StringArray{
		pulumi.String("string"),
	},
	OcspServersOverrides: pulumi.StringArray{
		pulumi.String("string"),
	},
	OcspFailOpen: pulumi.Bool(false),
	RequiredExtensions: pulumi.StringArray{
		pulumi.String("string"),
	},
	TokenBoundCidrs: pulumi.StringArray{
		pulumi.String("string"),
	},
	TokenExplicitMaxTtl:  pulumi.Int(0),
	TokenMaxTtl:          pulumi.Int(0),
	TokenNoDefaultPolicy: pulumi.Bool(false),
	TokenNumUses:         pulumi.Int(0),
	OcspQueryAllServers:  pulumi.Bool(false),
	TokenPolicies: pulumi.StringArray{
		pulumi.String("string"),
	},
	TokenTtl:  pulumi.Int(0),
	TokenType: pulumi.String("string"),
})
var certAuthBackendRoleResource = new CertAuthBackendRole("certAuthBackendRoleResource", CertAuthBackendRoleArgs.builder()
    .certificate("string")
    .ocspEnabled(false)
    .tokenPeriod(0)
    .allowedNames("string")
    .allowedOrganizationalUnits("string")
    .allowedUriSans("string")
    .backend("string")
    .allowedDnsSans("string")
    .displayName("string")
    .name("string")
    .namespace("string")
    .ocspCaCertificates("string")
    .allowedCommonNames("string")
    .allowedEmailSans("string")
    .ocspServersOverrides("string")
    .ocspFailOpen(false)
    .requiredExtensions("string")
    .tokenBoundCidrs("string")
    .tokenExplicitMaxTtl(0)
    .tokenMaxTtl(0)
    .tokenNoDefaultPolicy(false)
    .tokenNumUses(0)
    .ocspQueryAllServers(false)
    .tokenPolicies("string")
    .tokenTtl(0)
    .tokenType("string")
    .build());
cert_auth_backend_role_resource = vault.CertAuthBackendRole("certAuthBackendRoleResource",
    certificate="string",
    ocsp_enabled=False,
    token_period=0,
    allowed_names=["string"],
    allowed_organizational_units=["string"],
    allowed_uri_sans=["string"],
    backend="string",
    allowed_dns_sans=["string"],
    display_name="string",
    name="string",
    namespace="string",
    ocsp_ca_certificates="string",
    allowed_common_names=["string"],
    allowed_email_sans=["string"],
    ocsp_servers_overrides=["string"],
    ocsp_fail_open=False,
    required_extensions=["string"],
    token_bound_cidrs=["string"],
    token_explicit_max_ttl=0,
    token_max_ttl=0,
    token_no_default_policy=False,
    token_num_uses=0,
    ocsp_query_all_servers=False,
    token_policies=["string"],
    token_ttl=0,
    token_type="string")
const certAuthBackendRoleResource = new vault.CertAuthBackendRole("certAuthBackendRoleResource", {
    certificate: "string",
    ocspEnabled: false,
    tokenPeriod: 0,
    allowedNames: ["string"],
    allowedOrganizationalUnits: ["string"],
    allowedUriSans: ["string"],
    backend: "string",
    allowedDnsSans: ["string"],
    displayName: "string",
    name: "string",
    namespace: "string",
    ocspCaCertificates: "string",
    allowedCommonNames: ["string"],
    allowedEmailSans: ["string"],
    ocspServersOverrides: ["string"],
    ocspFailOpen: false,
    requiredExtensions: ["string"],
    tokenBoundCidrs: ["string"],
    tokenExplicitMaxTtl: 0,
    tokenMaxTtl: 0,
    tokenNoDefaultPolicy: false,
    tokenNumUses: 0,
    ocspQueryAllServers: false,
    tokenPolicies: ["string"],
    tokenTtl: 0,
    tokenType: "string",
});
type: vault:CertAuthBackendRole
properties:
    allowedCommonNames:
        - string
    allowedDnsSans:
        - string
    allowedEmailSans:
        - string
    allowedNames:
        - string
    allowedOrganizationalUnits:
        - string
    allowedUriSans:
        - string
    backend: string
    certificate: string
    displayName: string
    name: string
    namespace: string
    ocspCaCertificates: string
    ocspEnabled: false
    ocspFailOpen: false
    ocspQueryAllServers: false
    ocspServersOverrides:
        - string
    requiredExtensions:
        - string
    tokenBoundCidrs:
        - string
    tokenExplicitMaxTtl: 0
    tokenMaxTtl: 0
    tokenNoDefaultPolicy: false
    tokenNumUses: 0
    tokenPeriod: 0
    tokenPolicies:
        - string
    tokenTtl: 0
    tokenType: string
CertAuthBackendRole Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The CertAuthBackendRole resource accepts the following input properties:
- Certificate string
- CA certificate used to validate client certificates
- AllowedCommon List<string>Names 
- Allowed the common names for authenticated client certificates
- AllowedDns List<string>Sans 
- Allowed alternative dns names for authenticated client certificates
- AllowedEmail List<string>Sans 
- Allowed emails for authenticated client certificates
- AllowedNames List<string>
- DEPRECATED: Please use the individual allowed_X_sansparameters instead. Allowed subject names for authenticated client certificates
- AllowedOrganizational List<string>Units 
- Allowed organization units for authenticated client certificates.
- AllowedUri List<string>Sans 
- Allowed URIs for authenticated client certificates
- Backend string
- Path to the mounted Cert auth backend
- DisplayName string
- The name to display on tokens issued under this role.
- Name string
- Name of the role
- Namespace string
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The namespaceis always relative to the provider's configured namespace. Available only for Vault Enterprise.
- OcspCa stringCertificates 
- Any additional CA certificates needed to verify OCSP responses. Provided as base64 encoded PEM data. Requires Vault version 1.13+.
- OcspEnabled bool
- If enabled, validate certificates' revocation status using OCSP. Requires Vault version 1.13+.
- OcspFail boolOpen 
- If true and an OCSP response cannot be fetched or is of an unknown status, the login will proceed as if the certificate has not been revoked. Requires Vault version 1.13+.
- OcspQuery boolAll Servers 
- If set to true, rather than accepting the first successful OCSP response, query all servers and consider the certificate valid only if all servers agree. Requires Vault version 1.13+.
- OcspServers List<string>Overrides 
- : A comma-separated list of OCSP server addresses. If unset, the OCSP server is determined from the AuthorityInformationAccess extension on the certificate being inspected. Requires Vault version 1.13+.
- RequiredExtensions List<string>
- TLS extensions required on client certificates
- TokenBound List<string>Cidrs 
- Specifies the blocks of IP addresses which are allowed to use the generated token
- TokenExplicit intMax Ttl 
- Generated Token's Explicit Maximum TTL in seconds
- TokenMax intTtl 
- The maximum lifetime of the generated token
- TokenNo boolDefault Policy 
- If true, the 'default' policy will not automatically be added to generated tokens
- TokenNum intUses 
- The maximum number of times a token may be used, a value of zero means unlimited
- TokenPeriod int
- Generated Token's Period
- TokenPolicies List<string>
- Generated Token's Policies
- TokenTtl int
- The initial ttl of the token to generate in seconds
- TokenType string
- The type of token to generate, service or batch
- Certificate string
- CA certificate used to validate client certificates
- AllowedCommon []stringNames 
- Allowed the common names for authenticated client certificates
- AllowedDns []stringSans 
- Allowed alternative dns names for authenticated client certificates
- AllowedEmail []stringSans 
- Allowed emails for authenticated client certificates
- AllowedNames []string
- DEPRECATED: Please use the individual allowed_X_sansparameters instead. Allowed subject names for authenticated client certificates
- AllowedOrganizational []stringUnits 
- Allowed organization units for authenticated client certificates.
- AllowedUri []stringSans 
- Allowed URIs for authenticated client certificates
- Backend string
- Path to the mounted Cert auth backend
- DisplayName string
- The name to display on tokens issued under this role.
- Name string
- Name of the role
- Namespace string
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The namespaceis always relative to the provider's configured namespace. Available only for Vault Enterprise.
- OcspCa stringCertificates 
- Any additional CA certificates needed to verify OCSP responses. Provided as base64 encoded PEM data. Requires Vault version 1.13+.
- OcspEnabled bool
- If enabled, validate certificates' revocation status using OCSP. Requires Vault version 1.13+.
- OcspFail boolOpen 
- If true and an OCSP response cannot be fetched or is of an unknown status, the login will proceed as if the certificate has not been revoked. Requires Vault version 1.13+.
- OcspQuery boolAll Servers 
- If set to true, rather than accepting the first successful OCSP response, query all servers and consider the certificate valid only if all servers agree. Requires Vault version 1.13+.
- OcspServers []stringOverrides 
- : A comma-separated list of OCSP server addresses. If unset, the OCSP server is determined from the AuthorityInformationAccess extension on the certificate being inspected. Requires Vault version 1.13+.
- RequiredExtensions []string
- TLS extensions required on client certificates
- TokenBound []stringCidrs 
- Specifies the blocks of IP addresses which are allowed to use the generated token
- TokenExplicit intMax Ttl 
- Generated Token's Explicit Maximum TTL in seconds
- TokenMax intTtl 
- The maximum lifetime of the generated token
- TokenNo boolDefault Policy 
- If true, the 'default' policy will not automatically be added to generated tokens
- TokenNum intUses 
- The maximum number of times a token may be used, a value of zero means unlimited
- TokenPeriod int
- Generated Token's Period
- TokenPolicies []string
- Generated Token's Policies
- TokenTtl int
- The initial ttl of the token to generate in seconds
- TokenType string
- The type of token to generate, service or batch
- certificate String
- CA certificate used to validate client certificates
- allowedCommon List<String>Names 
- Allowed the common names for authenticated client certificates
- allowedDns List<String>Sans 
- Allowed alternative dns names for authenticated client certificates
- allowedEmail List<String>Sans 
- Allowed emails for authenticated client certificates
- allowedNames List<String>
- DEPRECATED: Please use the individual allowed_X_sansparameters instead. Allowed subject names for authenticated client certificates
- allowedOrganizational List<String>Units 
- Allowed organization units for authenticated client certificates.
- allowedUri List<String>Sans 
- Allowed URIs for authenticated client certificates
- backend String
- Path to the mounted Cert auth backend
- displayName String
- The name to display on tokens issued under this role.
- name String
- Name of the role
- namespace String
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The namespaceis always relative to the provider's configured namespace. Available only for Vault Enterprise.
- ocspCa StringCertificates 
- Any additional CA certificates needed to verify OCSP responses. Provided as base64 encoded PEM data. Requires Vault version 1.13+.
- ocspEnabled Boolean
- If enabled, validate certificates' revocation status using OCSP. Requires Vault version 1.13+.
- ocspFail BooleanOpen 
- If true and an OCSP response cannot be fetched or is of an unknown status, the login will proceed as if the certificate has not been revoked. Requires Vault version 1.13+.
- ocspQuery BooleanAll Servers 
- If set to true, rather than accepting the first successful OCSP response, query all servers and consider the certificate valid only if all servers agree. Requires Vault version 1.13+.
- ocspServers List<String>Overrides 
- : A comma-separated list of OCSP server addresses. If unset, the OCSP server is determined from the AuthorityInformationAccess extension on the certificate being inspected. Requires Vault version 1.13+.
- requiredExtensions List<String>
- TLS extensions required on client certificates
- tokenBound List<String>Cidrs 
- Specifies the blocks of IP addresses which are allowed to use the generated token
- tokenExplicit IntegerMax Ttl 
- Generated Token's Explicit Maximum TTL in seconds
- tokenMax IntegerTtl 
- The maximum lifetime of the generated token
- tokenNo BooleanDefault Policy 
- If true, the 'default' policy will not automatically be added to generated tokens
- tokenNum IntegerUses 
- The maximum number of times a token may be used, a value of zero means unlimited
- tokenPeriod Integer
- Generated Token's Period
- tokenPolicies List<String>
- Generated Token's Policies
- tokenTtl Integer
- The initial ttl of the token to generate in seconds
- tokenType String
- The type of token to generate, service or batch
- certificate string
- CA certificate used to validate client certificates
- allowedCommon string[]Names 
- Allowed the common names for authenticated client certificates
- allowedDns string[]Sans 
- Allowed alternative dns names for authenticated client certificates
- allowedEmail string[]Sans 
- Allowed emails for authenticated client certificates
- allowedNames string[]
- DEPRECATED: Please use the individual allowed_X_sansparameters instead. Allowed subject names for authenticated client certificates
- allowedOrganizational string[]Units 
- Allowed organization units for authenticated client certificates.
- allowedUri string[]Sans 
- Allowed URIs for authenticated client certificates
- backend string
- Path to the mounted Cert auth backend
- displayName string
- The name to display on tokens issued under this role.
- name string
- Name of the role
- namespace string
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The namespaceis always relative to the provider's configured namespace. Available only for Vault Enterprise.
- ocspCa stringCertificates 
- Any additional CA certificates needed to verify OCSP responses. Provided as base64 encoded PEM data. Requires Vault version 1.13+.
- ocspEnabled boolean
- If enabled, validate certificates' revocation status using OCSP. Requires Vault version 1.13+.
- ocspFail booleanOpen 
- If true and an OCSP response cannot be fetched or is of an unknown status, the login will proceed as if the certificate has not been revoked. Requires Vault version 1.13+.
- ocspQuery booleanAll Servers 
- If set to true, rather than accepting the first successful OCSP response, query all servers and consider the certificate valid only if all servers agree. Requires Vault version 1.13+.
- ocspServers string[]Overrides 
- : A comma-separated list of OCSP server addresses. If unset, the OCSP server is determined from the AuthorityInformationAccess extension on the certificate being inspected. Requires Vault version 1.13+.
- requiredExtensions string[]
- TLS extensions required on client certificates
- tokenBound string[]Cidrs 
- Specifies the blocks of IP addresses which are allowed to use the generated token
- tokenExplicit numberMax Ttl 
- Generated Token's Explicit Maximum TTL in seconds
- tokenMax numberTtl 
- The maximum lifetime of the generated token
- tokenNo booleanDefault Policy 
- If true, the 'default' policy will not automatically be added to generated tokens
- tokenNum numberUses 
- The maximum number of times a token may be used, a value of zero means unlimited
- tokenPeriod number
- Generated Token's Period
- tokenPolicies string[]
- Generated Token's Policies
- tokenTtl number
- The initial ttl of the token to generate in seconds
- tokenType string
- The type of token to generate, service or batch
- certificate str
- CA certificate used to validate client certificates
- allowed_common_ Sequence[str]names 
- Allowed the common names for authenticated client certificates
- allowed_dns_ Sequence[str]sans 
- Allowed alternative dns names for authenticated client certificates
- allowed_email_ Sequence[str]sans 
- Allowed emails for authenticated client certificates
- allowed_names Sequence[str]
- DEPRECATED: Please use the individual allowed_X_sansparameters instead. Allowed subject names for authenticated client certificates
- allowed_organizational_ Sequence[str]units 
- Allowed organization units for authenticated client certificates.
- allowed_uri_ Sequence[str]sans 
- Allowed URIs for authenticated client certificates
- backend str
- Path to the mounted Cert auth backend
- display_name str
- The name to display on tokens issued under this role.
- name str
- Name of the role
- namespace str
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The namespaceis always relative to the provider's configured namespace. Available only for Vault Enterprise.
- ocsp_ca_ strcertificates 
- Any additional CA certificates needed to verify OCSP responses. Provided as base64 encoded PEM data. Requires Vault version 1.13+.
- ocsp_enabled bool
- If enabled, validate certificates' revocation status using OCSP. Requires Vault version 1.13+.
- ocsp_fail_ boolopen 
- If true and an OCSP response cannot be fetched or is of an unknown status, the login will proceed as if the certificate has not been revoked. Requires Vault version 1.13+.
- ocsp_query_ boolall_ servers 
- If set to true, rather than accepting the first successful OCSP response, query all servers and consider the certificate valid only if all servers agree. Requires Vault version 1.13+.
- ocsp_servers_ Sequence[str]overrides 
- : A comma-separated list of OCSP server addresses. If unset, the OCSP server is determined from the AuthorityInformationAccess extension on the certificate being inspected. Requires Vault version 1.13+.
- required_extensions Sequence[str]
- TLS extensions required on client certificates
- token_bound_ Sequence[str]cidrs 
- Specifies the blocks of IP addresses which are allowed to use the generated token
- token_explicit_ intmax_ ttl 
- Generated Token's Explicit Maximum TTL in seconds
- token_max_ intttl 
- The maximum lifetime of the generated token
- token_no_ booldefault_ policy 
- If true, the 'default' policy will not automatically be added to generated tokens
- token_num_ intuses 
- The maximum number of times a token may be used, a value of zero means unlimited
- token_period int
- Generated Token's Period
- token_policies Sequence[str]
- Generated Token's Policies
- token_ttl int
- The initial ttl of the token to generate in seconds
- token_type str
- The type of token to generate, service or batch
- certificate String
- CA certificate used to validate client certificates
- allowedCommon List<String>Names 
- Allowed the common names for authenticated client certificates
- allowedDns List<String>Sans 
- Allowed alternative dns names for authenticated client certificates
- allowedEmail List<String>Sans 
- Allowed emails for authenticated client certificates
- allowedNames List<String>
- DEPRECATED: Please use the individual allowed_X_sansparameters instead. Allowed subject names for authenticated client certificates
- allowedOrganizational List<String>Units 
- Allowed organization units for authenticated client certificates.
- allowedUri List<String>Sans 
- Allowed URIs for authenticated client certificates
- backend String
- Path to the mounted Cert auth backend
- displayName String
- The name to display on tokens issued under this role.
- name String
- Name of the role
- namespace String
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The namespaceis always relative to the provider's configured namespace. Available only for Vault Enterprise.
- ocspCa StringCertificates 
- Any additional CA certificates needed to verify OCSP responses. Provided as base64 encoded PEM data. Requires Vault version 1.13+.
- ocspEnabled Boolean
- If enabled, validate certificates' revocation status using OCSP. Requires Vault version 1.13+.
- ocspFail BooleanOpen 
- If true and an OCSP response cannot be fetched or is of an unknown status, the login will proceed as if the certificate has not been revoked. Requires Vault version 1.13+.
- ocspQuery BooleanAll Servers 
- If set to true, rather than accepting the first successful OCSP response, query all servers and consider the certificate valid only if all servers agree. Requires Vault version 1.13+.
- ocspServers List<String>Overrides 
- : A comma-separated list of OCSP server addresses. If unset, the OCSP server is determined from the AuthorityInformationAccess extension on the certificate being inspected. Requires Vault version 1.13+.
- requiredExtensions List<String>
- TLS extensions required on client certificates
- tokenBound List<String>Cidrs 
- Specifies the blocks of IP addresses which are allowed to use the generated token
- tokenExplicit NumberMax Ttl 
- Generated Token's Explicit Maximum TTL in seconds
- tokenMax NumberTtl 
- The maximum lifetime of the generated token
- tokenNo BooleanDefault Policy 
- If true, the 'default' policy will not automatically be added to generated tokens
- tokenNum NumberUses 
- The maximum number of times a token may be used, a value of zero means unlimited
- tokenPeriod Number
- Generated Token's Period
- tokenPolicies List<String>
- Generated Token's Policies
- tokenTtl Number
- The initial ttl of the token to generate in seconds
- tokenType String
- The type of token to generate, service or batch
Outputs
All input properties are implicitly available as output properties. Additionally, the CertAuthBackendRole resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing CertAuthBackendRole Resource
Get an existing CertAuthBackendRole 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?: CertAuthBackendRoleState, opts?: CustomResourceOptions): CertAuthBackendRole@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        allowed_common_names: Optional[Sequence[str]] = None,
        allowed_dns_sans: Optional[Sequence[str]] = None,
        allowed_email_sans: Optional[Sequence[str]] = None,
        allowed_names: Optional[Sequence[str]] = None,
        allowed_organizational_units: Optional[Sequence[str]] = None,
        allowed_uri_sans: Optional[Sequence[str]] = None,
        backend: Optional[str] = None,
        certificate: Optional[str] = None,
        display_name: Optional[str] = None,
        name: Optional[str] = None,
        namespace: Optional[str] = None,
        ocsp_ca_certificates: Optional[str] = None,
        ocsp_enabled: Optional[bool] = None,
        ocsp_fail_open: Optional[bool] = None,
        ocsp_query_all_servers: Optional[bool] = None,
        ocsp_servers_overrides: Optional[Sequence[str]] = None,
        required_extensions: Optional[Sequence[str]] = None,
        token_bound_cidrs: Optional[Sequence[str]] = None,
        token_explicit_max_ttl: Optional[int] = None,
        token_max_ttl: Optional[int] = None,
        token_no_default_policy: Optional[bool] = None,
        token_num_uses: Optional[int] = None,
        token_period: Optional[int] = None,
        token_policies: Optional[Sequence[str]] = None,
        token_ttl: Optional[int] = None,
        token_type: Optional[str] = None) -> CertAuthBackendRolefunc GetCertAuthBackendRole(ctx *Context, name string, id IDInput, state *CertAuthBackendRoleState, opts ...ResourceOption) (*CertAuthBackendRole, error)public static CertAuthBackendRole Get(string name, Input<string> id, CertAuthBackendRoleState? state, CustomResourceOptions? opts = null)public static CertAuthBackendRole get(String name, Output<String> id, CertAuthBackendRoleState state, CustomResourceOptions options)resources:  _:    type: vault:CertAuthBackendRole    get:      id: ${id}- 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.
- AllowedCommon List<string>Names 
- Allowed the common names for authenticated client certificates
- AllowedDns List<string>Sans 
- Allowed alternative dns names for authenticated client certificates
- AllowedEmail List<string>Sans 
- Allowed emails for authenticated client certificates
- AllowedNames List<string>
- DEPRECATED: Please use the individual allowed_X_sansparameters instead. Allowed subject names for authenticated client certificates
- AllowedOrganizational List<string>Units 
- Allowed organization units for authenticated client certificates.
- AllowedUri List<string>Sans 
- Allowed URIs for authenticated client certificates
- Backend string
- Path to the mounted Cert auth backend
- Certificate string
- CA certificate used to validate client certificates
- DisplayName string
- The name to display on tokens issued under this role.
- Name string
- Name of the role
- Namespace string
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The namespaceis always relative to the provider's configured namespace. Available only for Vault Enterprise.
- OcspCa stringCertificates 
- Any additional CA certificates needed to verify OCSP responses. Provided as base64 encoded PEM data. Requires Vault version 1.13+.
- OcspEnabled bool
- If enabled, validate certificates' revocation status using OCSP. Requires Vault version 1.13+.
- OcspFail boolOpen 
- If true and an OCSP response cannot be fetched or is of an unknown status, the login will proceed as if the certificate has not been revoked. Requires Vault version 1.13+.
- OcspQuery boolAll Servers 
- If set to true, rather than accepting the first successful OCSP response, query all servers and consider the certificate valid only if all servers agree. Requires Vault version 1.13+.
- OcspServers List<string>Overrides 
- : A comma-separated list of OCSP server addresses. If unset, the OCSP server is determined from the AuthorityInformationAccess extension on the certificate being inspected. Requires Vault version 1.13+.
- RequiredExtensions List<string>
- TLS extensions required on client certificates
- TokenBound List<string>Cidrs 
- Specifies the blocks of IP addresses which are allowed to use the generated token
- TokenExplicit intMax Ttl 
- Generated Token's Explicit Maximum TTL in seconds
- TokenMax intTtl 
- The maximum lifetime of the generated token
- TokenNo boolDefault Policy 
- If true, the 'default' policy will not automatically be added to generated tokens
- TokenNum intUses 
- The maximum number of times a token may be used, a value of zero means unlimited
- TokenPeriod int
- Generated Token's Period
- TokenPolicies List<string>
- Generated Token's Policies
- TokenTtl int
- The initial ttl of the token to generate in seconds
- TokenType string
- The type of token to generate, service or batch
- AllowedCommon []stringNames 
- Allowed the common names for authenticated client certificates
- AllowedDns []stringSans 
- Allowed alternative dns names for authenticated client certificates
- AllowedEmail []stringSans 
- Allowed emails for authenticated client certificates
- AllowedNames []string
- DEPRECATED: Please use the individual allowed_X_sansparameters instead. Allowed subject names for authenticated client certificates
- AllowedOrganizational []stringUnits 
- Allowed organization units for authenticated client certificates.
- AllowedUri []stringSans 
- Allowed URIs for authenticated client certificates
- Backend string
- Path to the mounted Cert auth backend
- Certificate string
- CA certificate used to validate client certificates
- DisplayName string
- The name to display on tokens issued under this role.
- Name string
- Name of the role
- Namespace string
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The namespaceis always relative to the provider's configured namespace. Available only for Vault Enterprise.
- OcspCa stringCertificates 
- Any additional CA certificates needed to verify OCSP responses. Provided as base64 encoded PEM data. Requires Vault version 1.13+.
- OcspEnabled bool
- If enabled, validate certificates' revocation status using OCSP. Requires Vault version 1.13+.
- OcspFail boolOpen 
- If true and an OCSP response cannot be fetched or is of an unknown status, the login will proceed as if the certificate has not been revoked. Requires Vault version 1.13+.
- OcspQuery boolAll Servers 
- If set to true, rather than accepting the first successful OCSP response, query all servers and consider the certificate valid only if all servers agree. Requires Vault version 1.13+.
- OcspServers []stringOverrides 
- : A comma-separated list of OCSP server addresses. If unset, the OCSP server is determined from the AuthorityInformationAccess extension on the certificate being inspected. Requires Vault version 1.13+.
- RequiredExtensions []string
- TLS extensions required on client certificates
- TokenBound []stringCidrs 
- Specifies the blocks of IP addresses which are allowed to use the generated token
- TokenExplicit intMax Ttl 
- Generated Token's Explicit Maximum TTL in seconds
- TokenMax intTtl 
- The maximum lifetime of the generated token
- TokenNo boolDefault Policy 
- If true, the 'default' policy will not automatically be added to generated tokens
- TokenNum intUses 
- The maximum number of times a token may be used, a value of zero means unlimited
- TokenPeriod int
- Generated Token's Period
- TokenPolicies []string
- Generated Token's Policies
- TokenTtl int
- The initial ttl of the token to generate in seconds
- TokenType string
- The type of token to generate, service or batch
- allowedCommon List<String>Names 
- Allowed the common names for authenticated client certificates
- allowedDns List<String>Sans 
- Allowed alternative dns names for authenticated client certificates
- allowedEmail List<String>Sans 
- Allowed emails for authenticated client certificates
- allowedNames List<String>
- DEPRECATED: Please use the individual allowed_X_sansparameters instead. Allowed subject names for authenticated client certificates
- allowedOrganizational List<String>Units 
- Allowed organization units for authenticated client certificates.
- allowedUri List<String>Sans 
- Allowed URIs for authenticated client certificates
- backend String
- Path to the mounted Cert auth backend
- certificate String
- CA certificate used to validate client certificates
- displayName String
- The name to display on tokens issued under this role.
- name String
- Name of the role
- namespace String
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The namespaceis always relative to the provider's configured namespace. Available only for Vault Enterprise.
- ocspCa StringCertificates 
- Any additional CA certificates needed to verify OCSP responses. Provided as base64 encoded PEM data. Requires Vault version 1.13+.
- ocspEnabled Boolean
- If enabled, validate certificates' revocation status using OCSP. Requires Vault version 1.13+.
- ocspFail BooleanOpen 
- If true and an OCSP response cannot be fetched or is of an unknown status, the login will proceed as if the certificate has not been revoked. Requires Vault version 1.13+.
- ocspQuery BooleanAll Servers 
- If set to true, rather than accepting the first successful OCSP response, query all servers and consider the certificate valid only if all servers agree. Requires Vault version 1.13+.
- ocspServers List<String>Overrides 
- : A comma-separated list of OCSP server addresses. If unset, the OCSP server is determined from the AuthorityInformationAccess extension on the certificate being inspected. Requires Vault version 1.13+.
- requiredExtensions List<String>
- TLS extensions required on client certificates
- tokenBound List<String>Cidrs 
- Specifies the blocks of IP addresses which are allowed to use the generated token
- tokenExplicit IntegerMax Ttl 
- Generated Token's Explicit Maximum TTL in seconds
- tokenMax IntegerTtl 
- The maximum lifetime of the generated token
- tokenNo BooleanDefault Policy 
- If true, the 'default' policy will not automatically be added to generated tokens
- tokenNum IntegerUses 
- The maximum number of times a token may be used, a value of zero means unlimited
- tokenPeriod Integer
- Generated Token's Period
- tokenPolicies List<String>
- Generated Token's Policies
- tokenTtl Integer
- The initial ttl of the token to generate in seconds
- tokenType String
- The type of token to generate, service or batch
- allowedCommon string[]Names 
- Allowed the common names for authenticated client certificates
- allowedDns string[]Sans 
- Allowed alternative dns names for authenticated client certificates
- allowedEmail string[]Sans 
- Allowed emails for authenticated client certificates
- allowedNames string[]
- DEPRECATED: Please use the individual allowed_X_sansparameters instead. Allowed subject names for authenticated client certificates
- allowedOrganizational string[]Units 
- Allowed organization units for authenticated client certificates.
- allowedUri string[]Sans 
- Allowed URIs for authenticated client certificates
- backend string
- Path to the mounted Cert auth backend
- certificate string
- CA certificate used to validate client certificates
- displayName string
- The name to display on tokens issued under this role.
- name string
- Name of the role
- namespace string
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The namespaceis always relative to the provider's configured namespace. Available only for Vault Enterprise.
- ocspCa stringCertificates 
- Any additional CA certificates needed to verify OCSP responses. Provided as base64 encoded PEM data. Requires Vault version 1.13+.
- ocspEnabled boolean
- If enabled, validate certificates' revocation status using OCSP. Requires Vault version 1.13+.
- ocspFail booleanOpen 
- If true and an OCSP response cannot be fetched or is of an unknown status, the login will proceed as if the certificate has not been revoked. Requires Vault version 1.13+.
- ocspQuery booleanAll Servers 
- If set to true, rather than accepting the first successful OCSP response, query all servers and consider the certificate valid only if all servers agree. Requires Vault version 1.13+.
- ocspServers string[]Overrides 
- : A comma-separated list of OCSP server addresses. If unset, the OCSP server is determined from the AuthorityInformationAccess extension on the certificate being inspected. Requires Vault version 1.13+.
- requiredExtensions string[]
- TLS extensions required on client certificates
- tokenBound string[]Cidrs 
- Specifies the blocks of IP addresses which are allowed to use the generated token
- tokenExplicit numberMax Ttl 
- Generated Token's Explicit Maximum TTL in seconds
- tokenMax numberTtl 
- The maximum lifetime of the generated token
- tokenNo booleanDefault Policy 
- If true, the 'default' policy will not automatically be added to generated tokens
- tokenNum numberUses 
- The maximum number of times a token may be used, a value of zero means unlimited
- tokenPeriod number
- Generated Token's Period
- tokenPolicies string[]
- Generated Token's Policies
- tokenTtl number
- The initial ttl of the token to generate in seconds
- tokenType string
- The type of token to generate, service or batch
- allowed_common_ Sequence[str]names 
- Allowed the common names for authenticated client certificates
- allowed_dns_ Sequence[str]sans 
- Allowed alternative dns names for authenticated client certificates
- allowed_email_ Sequence[str]sans 
- Allowed emails for authenticated client certificates
- allowed_names Sequence[str]
- DEPRECATED: Please use the individual allowed_X_sansparameters instead. Allowed subject names for authenticated client certificates
- allowed_organizational_ Sequence[str]units 
- Allowed organization units for authenticated client certificates.
- allowed_uri_ Sequence[str]sans 
- Allowed URIs for authenticated client certificates
- backend str
- Path to the mounted Cert auth backend
- certificate str
- CA certificate used to validate client certificates
- display_name str
- The name to display on tokens issued under this role.
- name str
- Name of the role
- namespace str
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The namespaceis always relative to the provider's configured namespace. Available only for Vault Enterprise.
- ocsp_ca_ strcertificates 
- Any additional CA certificates needed to verify OCSP responses. Provided as base64 encoded PEM data. Requires Vault version 1.13+.
- ocsp_enabled bool
- If enabled, validate certificates' revocation status using OCSP. Requires Vault version 1.13+.
- ocsp_fail_ boolopen 
- If true and an OCSP response cannot be fetched or is of an unknown status, the login will proceed as if the certificate has not been revoked. Requires Vault version 1.13+.
- ocsp_query_ boolall_ servers 
- If set to true, rather than accepting the first successful OCSP response, query all servers and consider the certificate valid only if all servers agree. Requires Vault version 1.13+.
- ocsp_servers_ Sequence[str]overrides 
- : A comma-separated list of OCSP server addresses. If unset, the OCSP server is determined from the AuthorityInformationAccess extension on the certificate being inspected. Requires Vault version 1.13+.
- required_extensions Sequence[str]
- TLS extensions required on client certificates
- token_bound_ Sequence[str]cidrs 
- Specifies the blocks of IP addresses which are allowed to use the generated token
- token_explicit_ intmax_ ttl 
- Generated Token's Explicit Maximum TTL in seconds
- token_max_ intttl 
- The maximum lifetime of the generated token
- token_no_ booldefault_ policy 
- If true, the 'default' policy will not automatically be added to generated tokens
- token_num_ intuses 
- The maximum number of times a token may be used, a value of zero means unlimited
- token_period int
- Generated Token's Period
- token_policies Sequence[str]
- Generated Token's Policies
- token_ttl int
- The initial ttl of the token to generate in seconds
- token_type str
- The type of token to generate, service or batch
- allowedCommon List<String>Names 
- Allowed the common names for authenticated client certificates
- allowedDns List<String>Sans 
- Allowed alternative dns names for authenticated client certificates
- allowedEmail List<String>Sans 
- Allowed emails for authenticated client certificates
- allowedNames List<String>
- DEPRECATED: Please use the individual allowed_X_sansparameters instead. Allowed subject names for authenticated client certificates
- allowedOrganizational List<String>Units 
- Allowed organization units for authenticated client certificates.
- allowedUri List<String>Sans 
- Allowed URIs for authenticated client certificates
- backend String
- Path to the mounted Cert auth backend
- certificate String
- CA certificate used to validate client certificates
- displayName String
- The name to display on tokens issued under this role.
- name String
- Name of the role
- namespace String
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The namespaceis always relative to the provider's configured namespace. Available only for Vault Enterprise.
- ocspCa StringCertificates 
- Any additional CA certificates needed to verify OCSP responses. Provided as base64 encoded PEM data. Requires Vault version 1.13+.
- ocspEnabled Boolean
- If enabled, validate certificates' revocation status using OCSP. Requires Vault version 1.13+.
- ocspFail BooleanOpen 
- If true and an OCSP response cannot be fetched or is of an unknown status, the login will proceed as if the certificate has not been revoked. Requires Vault version 1.13+.
- ocspQuery BooleanAll Servers 
- If set to true, rather than accepting the first successful OCSP response, query all servers and consider the certificate valid only if all servers agree. Requires Vault version 1.13+.
- ocspServers List<String>Overrides 
- : A comma-separated list of OCSP server addresses. If unset, the OCSP server is determined from the AuthorityInformationAccess extension on the certificate being inspected. Requires Vault version 1.13+.
- requiredExtensions List<String>
- TLS extensions required on client certificates
- tokenBound List<String>Cidrs 
- Specifies the blocks of IP addresses which are allowed to use the generated token
- tokenExplicit NumberMax Ttl 
- Generated Token's Explicit Maximum TTL in seconds
- tokenMax NumberTtl 
- The maximum lifetime of the generated token
- tokenNo BooleanDefault Policy 
- If true, the 'default' policy will not automatically be added to generated tokens
- tokenNum NumberUses 
- The maximum number of times a token may be used, a value of zero means unlimited
- tokenPeriod Number
- Generated Token's Period
- tokenPolicies List<String>
- Generated Token's Policies
- tokenTtl Number
- The initial ttl of the token to generate in seconds
- tokenType String
- The type of token to generate, service or batch
Package Details
- Repository
- Vault pulumi/pulumi-vault
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the vaultTerraform Provider.