1. Packages
  2. Hsdp Provider
  3. API Docs
  4. PkiTenant
hsdp 0.65.3 published on Tuesday, Apr 15, 2025 by philips-software

hsdp.PkiTenant

Explore with Pulumi AI

hsdp logo
hsdp 0.65.3 published on Tuesday, Apr 15, 2025 by philips-software

    Onboard tenant to PKI Service. Cloud foundry users with SpaceDeveloper role can onboard tenant

    This resource is only available when uaa_* (Cloud foundry) and iam credentials are set

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as hsdp from "@pulumi/hsdp";
    
    const tenant = new hsdp.PkiTenant("tenant", {
        organizationName: "client-my-org",
        spaceName: "prod",
        iamOrgs: [_var.iam_org_id],
        ca: {
            commonName: "common.name",
        },
        roles: [{
            name: "ec384",
            allowAnyName: true,
            allowIpSans: true,
            allowSubdomains: true,
            allowedDomains: [],
            allowedOtherSans: ["*"],
            allowedUriSans: ["*"],
            clientFlag: true,
            serverFlag: true,
            enforceHostnames: false,
            keyBits: 384,
            keyType: "ec",
        }],
    });
    
    import pulumi
    import pulumi_hsdp as hsdp
    
    tenant = hsdp.PkiTenant("tenant",
        organization_name="client-my-org",
        space_name="prod",
        iam_orgs=[var["iam_org_id"]],
        ca={
            "common_name": "common.name",
        },
        roles=[{
            "name": "ec384",
            "allow_any_name": True,
            "allow_ip_sans": True,
            "allow_subdomains": True,
            "allowed_domains": [],
            "allowed_other_sans": ["*"],
            "allowed_uri_sans": ["*"],
            "client_flag": True,
            "server_flag": True,
            "enforce_hostnames": False,
            "key_bits": 384,
            "key_type": "ec",
        }])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/hsdp/hsdp"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := hsdp.NewPkiTenant(ctx, "tenant", &hsdp.PkiTenantArgs{
    			OrganizationName: pulumi.String("client-my-org"),
    			SpaceName:        pulumi.String("prod"),
    			IamOrgs: pulumi.StringArray{
    				_var.Iam_org_id,
    			},
    			Ca: &hsdp.PkiTenantCaArgs{
    				CommonName: pulumi.String("common.name"),
    			},
    			Roles: hsdp.PkiTenantRoleArray{
    				&hsdp.PkiTenantRoleArgs{
    					Name:            pulumi.String("ec384"),
    					AllowAnyName:    pulumi.Bool(true),
    					AllowIpSans:     pulumi.Bool(true),
    					AllowSubdomains: pulumi.Bool(true),
    					AllowedDomains:  pulumi.StringArray{},
    					AllowedOtherSans: pulumi.StringArray{
    						pulumi.String("*"),
    					},
    					AllowedUriSans: pulumi.StringArray{
    						pulumi.String("*"),
    					},
    					ClientFlag:       pulumi.Bool(true),
    					ServerFlag:       pulumi.Bool(true),
    					EnforceHostnames: pulumi.Bool(false),
    					KeyBits:          pulumi.Float64(384),
    					KeyType:          pulumi.String("ec"),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Hsdp = Pulumi.Hsdp;
    
    return await Deployment.RunAsync(() => 
    {
        var tenant = new Hsdp.PkiTenant("tenant", new()
        {
            OrganizationName = "client-my-org",
            SpaceName = "prod",
            IamOrgs = new[]
            {
                @var.Iam_org_id,
            },
            Ca = new Hsdp.Inputs.PkiTenantCaArgs
            {
                CommonName = "common.name",
            },
            Roles = new[]
            {
                new Hsdp.Inputs.PkiTenantRoleArgs
                {
                    Name = "ec384",
                    AllowAnyName = true,
                    AllowIpSans = true,
                    AllowSubdomains = true,
                    AllowedDomains = new() { },
                    AllowedOtherSans = new[]
                    {
                        "*",
                    },
                    AllowedUriSans = new[]
                    {
                        "*",
                    },
                    ClientFlag = true,
                    ServerFlag = true,
                    EnforceHostnames = false,
                    KeyBits = 384,
                    KeyType = "ec",
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.hsdp.PkiTenant;
    import com.pulumi.hsdp.PkiTenantArgs;
    import com.pulumi.hsdp.inputs.PkiTenantCaArgs;
    import com.pulumi.hsdp.inputs.PkiTenantRoleArgs;
    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 tenant = new PkiTenant("tenant", PkiTenantArgs.builder()
                .organizationName("client-my-org")
                .spaceName("prod")
                .iamOrgs(var_.iam_org_id())
                .ca(PkiTenantCaArgs.builder()
                    .commonName("common.name")
                    .build())
                .roles(PkiTenantRoleArgs.builder()
                    .name("ec384")
                    .allowAnyName(true)
                    .allowIpSans(true)
                    .allowSubdomains(true)
                    .allowedDomains()
                    .allowedOtherSans("*")
                    .allowedUriSans("*")
                    .clientFlag(true)
                    .serverFlag(true)
                    .enforceHostnames(false)
                    .keyBits(384)
                    .keyType("ec")
                    .build())
                .build());
    
        }
    }
    
    resources:
      tenant:
        type: hsdp:PkiTenant
        properties:
          organizationName: client-my-org
          spaceName: prod
          iamOrgs:
            - ${var.iam_org_id}
          ca:
            commonName: common.name
          roles:
            - name: ec384
              allowAnyName: true
              allowIpSans: true
              allowSubdomains: true
              allowedDomains: []
              allowedOtherSans:
                - '*'
              allowedUriSans:
                - '*'
              clientFlag: true
              serverFlag: true
              enforceHostnames: false
              keyBits: 384
              keyType: ec
    

    Create PkiTenant Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new PkiTenant(name: string, args: PkiTenantArgs, opts?: CustomResourceOptions);
    @overload
    def PkiTenant(resource_name: str,
                  args: PkiTenantArgs,
                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def PkiTenant(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  ca: Optional[PkiTenantCaArgs] = None,
                  iam_orgs: Optional[Sequence[str]] = None,
                  organization_name: Optional[str] = None,
                  roles: Optional[Sequence[PkiTenantRoleArgs]] = None,
                  space_name: Optional[str] = None,
                  pki_tenant_id: Optional[str] = None,
                  triggers: Optional[Mapping[str, str]] = None)
    func NewPkiTenant(ctx *Context, name string, args PkiTenantArgs, opts ...ResourceOption) (*PkiTenant, error)
    public PkiTenant(string name, PkiTenantArgs args, CustomResourceOptions? opts = null)
    public PkiTenant(String name, PkiTenantArgs args)
    public PkiTenant(String name, PkiTenantArgs args, CustomResourceOptions options)
    
    type: hsdp:PkiTenant
    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 PkiTenantArgs
    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 PkiTenantArgs
    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 PkiTenantArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args PkiTenantArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args PkiTenantArgs
    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 pkiTenantResource = new Hsdp.PkiTenant("pkiTenantResource", new()
    {
        Ca = new Hsdp.Inputs.PkiTenantCaArgs
        {
            CommonName = "string",
            Ttl = "string",
        },
        IamOrgs = new[]
        {
            "string",
        },
        OrganizationName = "string",
        Roles = new[]
        {
            new Hsdp.Inputs.PkiTenantRoleArgs
            {
                KeyBits = 0,
                AllowIpSans = false,
                AllowSubdomains = false,
                AllowedOtherSans = new[]
                {
                    "string",
                },
                AllowedUriSans = new[]
                {
                    "string",
                },
                ClientFlag = false,
                AllowAnyName = false,
                KeyType = "string",
                Name = "string",
                ServerFlag = false,
                AllowedDomains = new[]
                {
                    "string",
                },
                AllowedSerialNumbers = new[]
                {
                    "string",
                },
                EnforceHostnames = false,
            },
        },
        SpaceName = "string",
        PkiTenantId = "string",
        Triggers = 
        {
            { "string", "string" },
        },
    });
    
    example, err := hsdp.NewPkiTenant(ctx, "pkiTenantResource", &hsdp.PkiTenantArgs{
    	Ca: &hsdp.PkiTenantCaArgs{
    		CommonName: pulumi.String("string"),
    		Ttl:        pulumi.String("string"),
    	},
    	IamOrgs: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	OrganizationName: pulumi.String("string"),
    	Roles: hsdp.PkiTenantRoleArray{
    		&hsdp.PkiTenantRoleArgs{
    			KeyBits:         pulumi.Float64(0),
    			AllowIpSans:     pulumi.Bool(false),
    			AllowSubdomains: pulumi.Bool(false),
    			AllowedOtherSans: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			AllowedUriSans: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			ClientFlag:   pulumi.Bool(false),
    			AllowAnyName: pulumi.Bool(false),
    			KeyType:      pulumi.String("string"),
    			Name:         pulumi.String("string"),
    			ServerFlag:   pulumi.Bool(false),
    			AllowedDomains: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			AllowedSerialNumbers: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			EnforceHostnames: pulumi.Bool(false),
    		},
    	},
    	SpaceName:   pulumi.String("string"),
    	PkiTenantId: pulumi.String("string"),
    	Triggers: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var pkiTenantResource = new PkiTenant("pkiTenantResource", PkiTenantArgs.builder()
        .ca(PkiTenantCaArgs.builder()
            .commonName("string")
            .ttl("string")
            .build())
        .iamOrgs("string")
        .organizationName("string")
        .roles(PkiTenantRoleArgs.builder()
            .keyBits(0)
            .allowIpSans(false)
            .allowSubdomains(false)
            .allowedOtherSans("string")
            .allowedUriSans("string")
            .clientFlag(false)
            .allowAnyName(false)
            .keyType("string")
            .name("string")
            .serverFlag(false)
            .allowedDomains("string")
            .allowedSerialNumbers("string")
            .enforceHostnames(false)
            .build())
        .spaceName("string")
        .pkiTenantId("string")
        .triggers(Map.of("string", "string"))
        .build());
    
    pki_tenant_resource = hsdp.PkiTenant("pkiTenantResource",
        ca={
            "common_name": "string",
            "ttl": "string",
        },
        iam_orgs=["string"],
        organization_name="string",
        roles=[{
            "key_bits": 0,
            "allow_ip_sans": False,
            "allow_subdomains": False,
            "allowed_other_sans": ["string"],
            "allowed_uri_sans": ["string"],
            "client_flag": False,
            "allow_any_name": False,
            "key_type": "string",
            "name": "string",
            "server_flag": False,
            "allowed_domains": ["string"],
            "allowed_serial_numbers": ["string"],
            "enforce_hostnames": False,
        }],
        space_name="string",
        pki_tenant_id="string",
        triggers={
            "string": "string",
        })
    
    const pkiTenantResource = new hsdp.PkiTenant("pkiTenantResource", {
        ca: {
            commonName: "string",
            ttl: "string",
        },
        iamOrgs: ["string"],
        organizationName: "string",
        roles: [{
            keyBits: 0,
            allowIpSans: false,
            allowSubdomains: false,
            allowedOtherSans: ["string"],
            allowedUriSans: ["string"],
            clientFlag: false,
            allowAnyName: false,
            keyType: "string",
            name: "string",
            serverFlag: false,
            allowedDomains: ["string"],
            allowedSerialNumbers: ["string"],
            enforceHostnames: false,
        }],
        spaceName: "string",
        pkiTenantId: "string",
        triggers: {
            string: "string",
        },
    });
    
    type: hsdp:PkiTenant
    properties:
        ca:
            commonName: string
            ttl: string
        iamOrgs:
            - string
        organizationName: string
        pkiTenantId: string
        roles:
            - allowAnyName: false
              allowIpSans: false
              allowSubdomains: false
              allowedDomains:
                - string
              allowedOtherSans:
                - string
              allowedSerialNumbers:
                - string
              allowedUriSans:
                - string
              clientFlag: false
              enforceHostnames: false
              keyBits: 0
              keyType: string
              name: string
              serverFlag: false
        spaceName: string
        triggers:
            string: string
    

    PkiTenant 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 PkiTenant resource accepts the following input properties:

    Ca PkiTenantCa
    The Certificate Authority information to use.
    IamOrgs List<string>
    OrganizationName string
    The CF organization name to use
    Roles List<PkiTenantRole>
    A role definition. Muliple roles are supported
    SpaceName string
    The CF space name to verify the user is part of
    PkiTenantId string
    Triggers Dictionary<string, string>
    A map of arbitrary strings that, when changed, will force the resource to be replaced.
    Ca PkiTenantCaArgs
    The Certificate Authority information to use.
    IamOrgs []string
    OrganizationName string
    The CF organization name to use
    Roles []PkiTenantRoleArgs
    A role definition. Muliple roles are supported
    SpaceName string
    The CF space name to verify the user is part of
    PkiTenantId string
    Triggers map[string]string
    A map of arbitrary strings that, when changed, will force the resource to be replaced.
    ca PkiTenantCa
    The Certificate Authority information to use.
    iamOrgs List<String>
    organizationName String
    The CF organization name to use
    roles List<PkiTenantRole>
    A role definition. Muliple roles are supported
    spaceName String
    The CF space name to verify the user is part of
    pkiTenantId String
    triggers Map<String,String>
    A map of arbitrary strings that, when changed, will force the resource to be replaced.
    ca PkiTenantCa
    The Certificate Authority information to use.
    iamOrgs string[]
    organizationName string
    The CF organization name to use
    roles PkiTenantRole[]
    A role definition. Muliple roles are supported
    spaceName string
    The CF space name to verify the user is part of
    pkiTenantId string
    triggers {[key: string]: string}
    A map of arbitrary strings that, when changed, will force the resource to be replaced.
    ca PkiTenantCaArgs
    The Certificate Authority information to use.
    iam_orgs Sequence[str]
    organization_name str
    The CF organization name to use
    roles Sequence[PkiTenantRoleArgs]
    A role definition. Muliple roles are supported
    space_name str
    The CF space name to verify the user is part of
    pki_tenant_id str
    triggers Mapping[str, str]
    A map of arbitrary strings that, when changed, will force the resource to be replaced.
    ca Property Map
    The Certificate Authority information to use.
    iamOrgs List<String>
    organizationName String
    The CF organization name to use
    roles List<Property Map>
    A role definition. Muliple roles are supported
    spaceName String
    The CF space name to verify the user is part of
    pkiTenantId String
    triggers Map<String>
    A map of arbitrary strings that, when changed, will force the resource to be replaced.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the PkiTenant resource produces the following output properties:

    ApiEndpoint string
    Id string
    The provider-assigned unique ID for this managed resource.
    LogicalPath string
    Same as id. This is for consistency.
    PlanName string
    ServiceName string
    ApiEndpoint string
    Id string
    The provider-assigned unique ID for this managed resource.
    LogicalPath string
    Same as id. This is for consistency.
    PlanName string
    ServiceName string
    apiEndpoint String
    id String
    The provider-assigned unique ID for this managed resource.
    logicalPath String
    Same as id. This is for consistency.
    planName String
    serviceName String
    apiEndpoint string
    id string
    The provider-assigned unique ID for this managed resource.
    logicalPath string
    Same as id. This is for consistency.
    planName string
    serviceName string
    api_endpoint str
    id str
    The provider-assigned unique ID for this managed resource.
    logical_path str
    Same as id. This is for consistency.
    plan_name str
    service_name str
    apiEndpoint String
    id String
    The provider-assigned unique ID for this managed resource.
    logicalPath String
    Same as id. This is for consistency.
    planName String
    serviceName String

    Look up Existing PkiTenant Resource

    Get an existing PkiTenant 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?: PkiTenantState, opts?: CustomResourceOptions): PkiTenant
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            api_endpoint: Optional[str] = None,
            ca: Optional[PkiTenantCaArgs] = None,
            iam_orgs: Optional[Sequence[str]] = None,
            logical_path: Optional[str] = None,
            organization_name: Optional[str] = None,
            pki_tenant_id: Optional[str] = None,
            plan_name: Optional[str] = None,
            roles: Optional[Sequence[PkiTenantRoleArgs]] = None,
            service_name: Optional[str] = None,
            space_name: Optional[str] = None,
            triggers: Optional[Mapping[str, str]] = None) -> PkiTenant
    func GetPkiTenant(ctx *Context, name string, id IDInput, state *PkiTenantState, opts ...ResourceOption) (*PkiTenant, error)
    public static PkiTenant Get(string name, Input<string> id, PkiTenantState? state, CustomResourceOptions? opts = null)
    public static PkiTenant get(String name, Output<String> id, PkiTenantState state, CustomResourceOptions options)
    resources:  _:    type: hsdp:PkiTenant    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.
    The following state arguments are supported:
    ApiEndpoint string
    Ca PkiTenantCa
    The Certificate Authority information to use.
    IamOrgs List<string>
    LogicalPath string
    Same as id. This is for consistency.
    OrganizationName string
    The CF organization name to use
    PkiTenantId string
    PlanName string
    Roles List<PkiTenantRole>
    A role definition. Muliple roles are supported
    ServiceName string
    SpaceName string
    The CF space name to verify the user is part of
    Triggers Dictionary<string, string>
    A map of arbitrary strings that, when changed, will force the resource to be replaced.
    ApiEndpoint string
    Ca PkiTenantCaArgs
    The Certificate Authority information to use.
    IamOrgs []string
    LogicalPath string
    Same as id. This is for consistency.
    OrganizationName string
    The CF organization name to use
    PkiTenantId string
    PlanName string
    Roles []PkiTenantRoleArgs
    A role definition. Muliple roles are supported
    ServiceName string
    SpaceName string
    The CF space name to verify the user is part of
    Triggers map[string]string
    A map of arbitrary strings that, when changed, will force the resource to be replaced.
    apiEndpoint String
    ca PkiTenantCa
    The Certificate Authority information to use.
    iamOrgs List<String>
    logicalPath String
    Same as id. This is for consistency.
    organizationName String
    The CF organization name to use
    pkiTenantId String
    planName String
    roles List<PkiTenantRole>
    A role definition. Muliple roles are supported
    serviceName String
    spaceName String
    The CF space name to verify the user is part of
    triggers Map<String,String>
    A map of arbitrary strings that, when changed, will force the resource to be replaced.
    apiEndpoint string
    ca PkiTenantCa
    The Certificate Authority information to use.
    iamOrgs string[]
    logicalPath string
    Same as id. This is for consistency.
    organizationName string
    The CF organization name to use
    pkiTenantId string
    planName string
    roles PkiTenantRole[]
    A role definition. Muliple roles are supported
    serviceName string
    spaceName string
    The CF space name to verify the user is part of
    triggers {[key: string]: string}
    A map of arbitrary strings that, when changed, will force the resource to be replaced.
    api_endpoint str
    ca PkiTenantCaArgs
    The Certificate Authority information to use.
    iam_orgs Sequence[str]
    logical_path str
    Same as id. This is for consistency.
    organization_name str
    The CF organization name to use
    pki_tenant_id str
    plan_name str
    roles Sequence[PkiTenantRoleArgs]
    A role definition. Muliple roles are supported
    service_name str
    space_name str
    The CF space name to verify the user is part of
    triggers Mapping[str, str]
    A map of arbitrary strings that, when changed, will force the resource to be replaced.
    apiEndpoint String
    ca Property Map
    The Certificate Authority information to use.
    iamOrgs List<String>
    logicalPath String
    Same as id. This is for consistency.
    organizationName String
    The CF organization name to use
    pkiTenantId String
    planName String
    roles List<Property Map>
    A role definition. Muliple roles are supported
    serviceName String
    spaceName String
    The CF space name to verify the user is part of
    triggers Map<String>
    A map of arbitrary strings that, when changed, will force the resource to be replaced.

    Supporting Types

    PkiTenantCa, PkiTenantCaArgs

    CommonName string
    The common name to use
    Ttl string
    The TTL, example 8760h for 1 year
    CommonName string
    The common name to use
    Ttl string
    The TTL, example 8760h for 1 year
    commonName String
    The common name to use
    ttl String
    The TTL, example 8760h for 1 year
    commonName string
    The common name to use
    ttl string
    The TTL, example 8760h for 1 year
    common_name str
    The common name to use
    ttl str
    The TTL, example 8760h for 1 year
    commonName String
    The common name to use
    ttl String
    The TTL, example 8760h for 1 year

    PkiTenantRole, PkiTenantRoleArgs

    AllowAnyName bool
    Allow any name to be used
    AllowIpSans bool
    Allow IP Subject Alternative Names (SAN)
    AllowSubdomains bool
    Allow subdomains to be created
    AllowedOtherSans List<string>
    ) List of allowed other SANs. Specifying a single '*' entry will allow any other sans
    AllowedUriSans List<string>
    ) List of allowed URI SANs. Values can contain glob patterns (e.g. spiffe://hostname/*)
    ClientFlag bool
    KeyBits double
    Key length. Typically 384 for ec key types.
    KeyType string
    The key type. Values [ec, rsa]
    Name string
    The role name. This is used for lookup
    ServerFlag bool
    AllowedDomains List<string>
    ) List of allowed domains
    AllowedSerialNumbers List<string>
    EnforceHostnames bool
    Enforce hostnames. Default: false
    AllowAnyName bool
    Allow any name to be used
    AllowIpSans bool
    Allow IP Subject Alternative Names (SAN)
    AllowSubdomains bool
    Allow subdomains to be created
    AllowedOtherSans []string
    ) List of allowed other SANs. Specifying a single '*' entry will allow any other sans
    AllowedUriSans []string
    ) List of allowed URI SANs. Values can contain glob patterns (e.g. spiffe://hostname/*)
    ClientFlag bool
    KeyBits float64
    Key length. Typically 384 for ec key types.
    KeyType string
    The key type. Values [ec, rsa]
    Name string
    The role name. This is used for lookup
    ServerFlag bool
    AllowedDomains []string
    ) List of allowed domains
    AllowedSerialNumbers []string
    EnforceHostnames bool
    Enforce hostnames. Default: false
    allowAnyName Boolean
    Allow any name to be used
    allowIpSans Boolean
    Allow IP Subject Alternative Names (SAN)
    allowSubdomains Boolean
    Allow subdomains to be created
    allowedOtherSans List<String>
    ) List of allowed other SANs. Specifying a single '*' entry will allow any other sans
    allowedUriSans List<String>
    ) List of allowed URI SANs. Values can contain glob patterns (e.g. spiffe://hostname/*)
    clientFlag Boolean
    keyBits Double
    Key length. Typically 384 for ec key types.
    keyType String
    The key type. Values [ec, rsa]
    name String
    The role name. This is used for lookup
    serverFlag Boolean
    allowedDomains List<String>
    ) List of allowed domains
    allowedSerialNumbers List<String>
    enforceHostnames Boolean
    Enforce hostnames. Default: false
    allowAnyName boolean
    Allow any name to be used
    allowIpSans boolean
    Allow IP Subject Alternative Names (SAN)
    allowSubdomains boolean
    Allow subdomains to be created
    allowedOtherSans string[]
    ) List of allowed other SANs. Specifying a single '*' entry will allow any other sans
    allowedUriSans string[]
    ) List of allowed URI SANs. Values can contain glob patterns (e.g. spiffe://hostname/*)
    clientFlag boolean
    keyBits number
    Key length. Typically 384 for ec key types.
    keyType string
    The key type. Values [ec, rsa]
    name string
    The role name. This is used for lookup
    serverFlag boolean
    allowedDomains string[]
    ) List of allowed domains
    allowedSerialNumbers string[]
    enforceHostnames boolean
    Enforce hostnames. Default: false
    allow_any_name bool
    Allow any name to be used
    allow_ip_sans bool
    Allow IP Subject Alternative Names (SAN)
    allow_subdomains bool
    Allow subdomains to be created
    allowed_other_sans Sequence[str]
    ) List of allowed other SANs. Specifying a single '*' entry will allow any other sans
    allowed_uri_sans Sequence[str]
    ) List of allowed URI SANs. Values can contain glob patterns (e.g. spiffe://hostname/*)
    client_flag bool
    key_bits float
    Key length. Typically 384 for ec key types.
    key_type str
    The key type. Values [ec, rsa]
    name str
    The role name. This is used for lookup
    server_flag bool
    allowed_domains Sequence[str]
    ) List of allowed domains
    allowed_serial_numbers Sequence[str]
    enforce_hostnames bool
    Enforce hostnames. Default: false
    allowAnyName Boolean
    Allow any name to be used
    allowIpSans Boolean
    Allow IP Subject Alternative Names (SAN)
    allowSubdomains Boolean
    Allow subdomains to be created
    allowedOtherSans List<String>
    ) List of allowed other SANs. Specifying a single '*' entry will allow any other sans
    allowedUriSans List<String>
    ) List of allowed URI SANs. Values can contain glob patterns (e.g. spiffe://hostname/*)
    clientFlag Boolean
    keyBits Number
    Key length. Typically 384 for ec key types.
    keyType String
    The key type. Values [ec, rsa]
    name String
    The role name. This is used for lookup
    serverFlag Boolean
    allowedDomains List<String>
    ) List of allowed domains
    allowedSerialNumbers List<String>
    enforceHostnames Boolean
    Enforce hostnames. Default: false

    Package Details

    Repository
    hsdp philips-software/terraform-provider-hsdp
    License
    Notes
    This Pulumi package is based on the hsdp Terraform Provider.
    hsdp logo
    hsdp 0.65.3 published on Tuesday, Apr 15, 2025 by philips-software