Strata Cloud Manager v0.1.1 published on Friday, May 31, 2024 by Pulumi
scm.CertificateProfile
Explore with Pulumi AI
Retrieves a config item.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as scm from "@pulumi/scm";
const example = new scm.CertificateProfile("example", {});
import pulumi
import pulumi_scm as scm
example = scm.CertificateProfile("example")
package main
import (
"github.com/pulumi/pulumi-scm/sdk/go/scm"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := scm.NewCertificateProfile(ctx, "example", nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Scm = Pulumi.Scm;
return await Deployment.RunAsync(() =>
{
var example = new Scm.CertificateProfile("example");
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.scm.CertificateProfile;
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 example = new CertificateProfile("example");
}
}
resources:
example:
type: scm:CertificateProfile
Create CertificateProfile Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new CertificateProfile(name: string, args: CertificateProfileArgs, opts?: CustomResourceOptions);
@overload
def CertificateProfile(resource_name: str,
args: CertificateProfileArgs,
opts: Optional[ResourceOptions] = None)
@overload
def CertificateProfile(resource_name: str,
opts: Optional[ResourceOptions] = None,
ca_certificates: Optional[Sequence[CertificateProfileCaCertificateArgs]] = None,
domain: Optional[str] = None,
folder: Optional[str] = None,
block_unknown_cert: Optional[bool] = None,
block_timeout_cert: Optional[bool] = None,
cert_status_timeout: Optional[str] = None,
crl_receive_timeout: Optional[str] = None,
block_unauthenticated_cert: Optional[bool] = None,
block_expired_cert: Optional[bool] = None,
device: Optional[str] = None,
name: Optional[str] = None,
ocsp_receive_timeout: Optional[str] = None,
snippet: Optional[str] = None,
use_crl: Optional[bool] = None,
use_ocsp: Optional[bool] = None,
username_field: Optional[CertificateProfileUsernameFieldArgs] = None)
func NewCertificateProfile(ctx *Context, name string, args CertificateProfileArgs, opts ...ResourceOption) (*CertificateProfile, error)
public CertificateProfile(string name, CertificateProfileArgs args, CustomResourceOptions? opts = null)
public CertificateProfile(String name, CertificateProfileArgs args)
public CertificateProfile(String name, CertificateProfileArgs args, CustomResourceOptions options)
type: scm:CertificateProfile
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 CertificateProfileArgs
- 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 CertificateProfileArgs
- 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 CertificateProfileArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args CertificateProfileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args CertificateProfileArgs
- 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 certificateProfileResource = new Scm.CertificateProfile("certificateProfileResource", new()
{
CaCertificates = new[]
{
new Scm.Inputs.CertificateProfileCaCertificateArgs
{
DefaultOcspUrl = "string",
Name = "string",
OcspVerifyCert = "string",
TemplateName = "string",
},
},
Domain = "string",
Folder = "string",
BlockUnknownCert = false,
BlockTimeoutCert = false,
CertStatusTimeout = "string",
CrlReceiveTimeout = "string",
BlockUnauthenticatedCert = false,
BlockExpiredCert = false,
Device = "string",
Name = "string",
OcspReceiveTimeout = "string",
Snippet = "string",
UseCrl = false,
UseOcsp = false,
UsernameField = new Scm.Inputs.CertificateProfileUsernameFieldArgs
{
Subject = "string",
SubjectAlt = "string",
},
});
example, err := scm.NewCertificateProfile(ctx, "certificateProfileResource", &scm.CertificateProfileArgs{
CaCertificates: scm.CertificateProfileCaCertificateArray{
&scm.CertificateProfileCaCertificateArgs{
DefaultOcspUrl: pulumi.String("string"),
Name: pulumi.String("string"),
OcspVerifyCert: pulumi.String("string"),
TemplateName: pulumi.String("string"),
},
},
Domain: pulumi.String("string"),
Folder: pulumi.String("string"),
BlockUnknownCert: pulumi.Bool(false),
BlockTimeoutCert: pulumi.Bool(false),
CertStatusTimeout: pulumi.String("string"),
CrlReceiveTimeout: pulumi.String("string"),
BlockUnauthenticatedCert: pulumi.Bool(false),
BlockExpiredCert: pulumi.Bool(false),
Device: pulumi.String("string"),
Name: pulumi.String("string"),
OcspReceiveTimeout: pulumi.String("string"),
Snippet: pulumi.String("string"),
UseCrl: pulumi.Bool(false),
UseOcsp: pulumi.Bool(false),
UsernameField: &scm.CertificateProfileUsernameFieldArgs{
Subject: pulumi.String("string"),
SubjectAlt: pulumi.String("string"),
},
})
var certificateProfileResource = new CertificateProfile("certificateProfileResource", CertificateProfileArgs.builder()
.caCertificates(CertificateProfileCaCertificateArgs.builder()
.defaultOcspUrl("string")
.name("string")
.ocspVerifyCert("string")
.templateName("string")
.build())
.domain("string")
.folder("string")
.blockUnknownCert(false)
.blockTimeoutCert(false)
.certStatusTimeout("string")
.crlReceiveTimeout("string")
.blockUnauthenticatedCert(false)
.blockExpiredCert(false)
.device("string")
.name("string")
.ocspReceiveTimeout("string")
.snippet("string")
.useCrl(false)
.useOcsp(false)
.usernameField(CertificateProfileUsernameFieldArgs.builder()
.subject("string")
.subjectAlt("string")
.build())
.build());
certificate_profile_resource = scm.CertificateProfile("certificateProfileResource",
ca_certificates=[scm.CertificateProfileCaCertificateArgs(
default_ocsp_url="string",
name="string",
ocsp_verify_cert="string",
template_name="string",
)],
domain="string",
folder="string",
block_unknown_cert=False,
block_timeout_cert=False,
cert_status_timeout="string",
crl_receive_timeout="string",
block_unauthenticated_cert=False,
block_expired_cert=False,
device="string",
name="string",
ocsp_receive_timeout="string",
snippet="string",
use_crl=False,
use_ocsp=False,
username_field=scm.CertificateProfileUsernameFieldArgs(
subject="string",
subject_alt="string",
))
const certificateProfileResource = new scm.CertificateProfile("certificateProfileResource", {
caCertificates: [{
defaultOcspUrl: "string",
name: "string",
ocspVerifyCert: "string",
templateName: "string",
}],
domain: "string",
folder: "string",
blockUnknownCert: false,
blockTimeoutCert: false,
certStatusTimeout: "string",
crlReceiveTimeout: "string",
blockUnauthenticatedCert: false,
blockExpiredCert: false,
device: "string",
name: "string",
ocspReceiveTimeout: "string",
snippet: "string",
useCrl: false,
useOcsp: false,
usernameField: {
subject: "string",
subjectAlt: "string",
},
});
type: scm:CertificateProfile
properties:
blockExpiredCert: false
blockTimeoutCert: false
blockUnauthenticatedCert: false
blockUnknownCert: false
caCertificates:
- defaultOcspUrl: string
name: string
ocspVerifyCert: string
templateName: string
certStatusTimeout: string
crlReceiveTimeout: string
device: string
domain: string
folder: string
name: string
ocspReceiveTimeout: string
snippet: string
useCrl: false
useOcsp: false
usernameField:
subject: string
subjectAlt: string
CertificateProfile 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 CertificateProfile resource accepts the following input properties:
- Ca
Certificates List<CertificateProfile Ca Certificate> - The CaCertificates param.
- Block
Expired boolCert - The BlockExpiredCert param.
- Block
Timeout boolCert - The BlockTimeoutCert param.
- Block
Unauthenticated boolCert - The BlockUnauthenticatedCert param.
- Block
Unknown boolCert - The BlockUnknownCert param.
- Cert
Status stringTimeout - The CertStatusTimeout param.
- Crl
Receive stringTimeout - The CrlReceiveTimeout param.
- Device string
- The Device param.
- Domain string
- The Domain param.
- Folder string
- The Folder param.
- Name string
- Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 63 characters.
- Ocsp
Receive stringTimeout - The OcspReceiveTimeout param.
- Snippet string
- The Snippet param.
- Use
Crl bool - The UseCrl param.
- Use
Ocsp bool - The UseOcsp param.
- Username
Field CertificateProfile Username Field - The UsernameField param.
- Ca
Certificates []CertificateProfile Ca Certificate Args - The CaCertificates param.
- Block
Expired boolCert - The BlockExpiredCert param.
- Block
Timeout boolCert - The BlockTimeoutCert param.
- Block
Unauthenticated boolCert - The BlockUnauthenticatedCert param.
- Block
Unknown boolCert - The BlockUnknownCert param.
- Cert
Status stringTimeout - The CertStatusTimeout param.
- Crl
Receive stringTimeout - The CrlReceiveTimeout param.
- Device string
- The Device param.
- Domain string
- The Domain param.
- Folder string
- The Folder param.
- Name string
- Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 63 characters.
- Ocsp
Receive stringTimeout - The OcspReceiveTimeout param.
- Snippet string
- The Snippet param.
- Use
Crl bool - The UseCrl param.
- Use
Ocsp bool - The UseOcsp param.
- Username
Field CertificateProfile Username Field Args - The UsernameField param.
- ca
Certificates List<CertificateProfile Ca Certificate> - The CaCertificates param.
- block
Expired BooleanCert - The BlockExpiredCert param.
- block
Timeout BooleanCert - The BlockTimeoutCert param.
- block
Unauthenticated BooleanCert - The BlockUnauthenticatedCert param.
- block
Unknown BooleanCert - The BlockUnknownCert param.
- cert
Status StringTimeout - The CertStatusTimeout param.
- crl
Receive StringTimeout - The CrlReceiveTimeout param.
- device String
- The Device param.
- domain String
- The Domain param.
- folder String
- The Folder param.
- name String
- Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 63 characters.
- ocsp
Receive StringTimeout - The OcspReceiveTimeout param.
- snippet String
- The Snippet param.
- use
Crl Boolean - The UseCrl param.
- use
Ocsp Boolean - The UseOcsp param.
- username
Field CertificateProfile Username Field - The UsernameField param.
- ca
Certificates CertificateProfile Ca Certificate[] - The CaCertificates param.
- block
Expired booleanCert - The BlockExpiredCert param.
- block
Timeout booleanCert - The BlockTimeoutCert param.
- block
Unauthenticated booleanCert - The BlockUnauthenticatedCert param.
- block
Unknown booleanCert - The BlockUnknownCert param.
- cert
Status stringTimeout - The CertStatusTimeout param.
- crl
Receive stringTimeout - The CrlReceiveTimeout param.
- device string
- The Device param.
- domain string
- The Domain param.
- folder string
- The Folder param.
- name string
- Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 63 characters.
- ocsp
Receive stringTimeout - The OcspReceiveTimeout param.
- snippet string
- The Snippet param.
- use
Crl boolean - The UseCrl param.
- use
Ocsp boolean - The UseOcsp param.
- username
Field CertificateProfile Username Field - The UsernameField param.
- ca_
certificates Sequence[CertificateProfile Ca Certificate Args] - The CaCertificates param.
- block_
expired_ boolcert - The BlockExpiredCert param.
- block_
timeout_ boolcert - The BlockTimeoutCert param.
- block_
unauthenticated_ boolcert - The BlockUnauthenticatedCert param.
- block_
unknown_ boolcert - The BlockUnknownCert param.
- cert_
status_ strtimeout - The CertStatusTimeout param.
- crl_
receive_ strtimeout - The CrlReceiveTimeout param.
- device str
- The Device param.
- domain str
- The Domain param.
- folder str
- The Folder param.
- name str
- Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 63 characters.
- ocsp_
receive_ strtimeout - The OcspReceiveTimeout param.
- snippet str
- The Snippet param.
- use_
crl bool - The UseCrl param.
- use_
ocsp bool - The UseOcsp param.
- username_
field CertificateProfile Username Field Args - The UsernameField param.
- ca
Certificates List<Property Map> - The CaCertificates param.
- block
Expired BooleanCert - The BlockExpiredCert param.
- block
Timeout BooleanCert - The BlockTimeoutCert param.
- block
Unauthenticated BooleanCert - The BlockUnauthenticatedCert param.
- block
Unknown BooleanCert - The BlockUnknownCert param.
- cert
Status StringTimeout - The CertStatusTimeout param.
- crl
Receive StringTimeout - The CrlReceiveTimeout param.
- device String
- The Device param.
- domain String
- The Domain param.
- folder String
- The Folder param.
- name String
- Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 63 characters.
- ocsp
Receive StringTimeout - The OcspReceiveTimeout param.
- snippet String
- The Snippet param.
- use
Crl Boolean - The UseCrl param.
- use
Ocsp Boolean - The UseOcsp param.
- username
Field Property Map - The UsernameField param.
Outputs
All input properties are implicitly available as output properties. Additionally, the CertificateProfile resource produces the following output properties:
Look up Existing CertificateProfile Resource
Get an existing CertificateProfile 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?: CertificateProfileState, opts?: CustomResourceOptions): CertificateProfile
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
block_expired_cert: Optional[bool] = None,
block_timeout_cert: Optional[bool] = None,
block_unauthenticated_cert: Optional[bool] = None,
block_unknown_cert: Optional[bool] = None,
ca_certificates: Optional[Sequence[CertificateProfileCaCertificateArgs]] = None,
cert_status_timeout: Optional[str] = None,
crl_receive_timeout: Optional[str] = None,
device: Optional[str] = None,
domain: Optional[str] = None,
folder: Optional[str] = None,
name: Optional[str] = None,
ocsp_receive_timeout: Optional[str] = None,
snippet: Optional[str] = None,
tfid: Optional[str] = None,
use_crl: Optional[bool] = None,
use_ocsp: Optional[bool] = None,
username_field: Optional[CertificateProfileUsernameFieldArgs] = None) -> CertificateProfile
func GetCertificateProfile(ctx *Context, name string, id IDInput, state *CertificateProfileState, opts ...ResourceOption) (*CertificateProfile, error)
public static CertificateProfile Get(string name, Input<string> id, CertificateProfileState? state, CustomResourceOptions? opts = null)
public static CertificateProfile get(String name, Output<String> id, CertificateProfileState 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.
- Block
Expired boolCert - The BlockExpiredCert param.
- Block
Timeout boolCert - The BlockTimeoutCert param.
- Block
Unauthenticated boolCert - The BlockUnauthenticatedCert param.
- Block
Unknown boolCert - The BlockUnknownCert param.
- Ca
Certificates List<CertificateProfile Ca Certificate> - The CaCertificates param.
- Cert
Status stringTimeout - The CertStatusTimeout param.
- Crl
Receive stringTimeout - The CrlReceiveTimeout param.
- Device string
- The Device param.
- Domain string
- The Domain param.
- Folder string
- The Folder param.
- Name string
- Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 63 characters.
- Ocsp
Receive stringTimeout - The OcspReceiveTimeout param.
- Snippet string
- The Snippet param.
- Tfid string
- Use
Crl bool - The UseCrl param.
- Use
Ocsp bool - The UseOcsp param.
- Username
Field CertificateProfile Username Field - The UsernameField param.
- Block
Expired boolCert - The BlockExpiredCert param.
- Block
Timeout boolCert - The BlockTimeoutCert param.
- Block
Unauthenticated boolCert - The BlockUnauthenticatedCert param.
- Block
Unknown boolCert - The BlockUnknownCert param.
- Ca
Certificates []CertificateProfile Ca Certificate Args - The CaCertificates param.
- Cert
Status stringTimeout - The CertStatusTimeout param.
- Crl
Receive stringTimeout - The CrlReceiveTimeout param.
- Device string
- The Device param.
- Domain string
- The Domain param.
- Folder string
- The Folder param.
- Name string
- Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 63 characters.
- Ocsp
Receive stringTimeout - The OcspReceiveTimeout param.
- Snippet string
- The Snippet param.
- Tfid string
- Use
Crl bool - The UseCrl param.
- Use
Ocsp bool - The UseOcsp param.
- Username
Field CertificateProfile Username Field Args - The UsernameField param.
- block
Expired BooleanCert - The BlockExpiredCert param.
- block
Timeout BooleanCert - The BlockTimeoutCert param.
- block
Unauthenticated BooleanCert - The BlockUnauthenticatedCert param.
- block
Unknown BooleanCert - The BlockUnknownCert param.
- ca
Certificates List<CertificateProfile Ca Certificate> - The CaCertificates param.
- cert
Status StringTimeout - The CertStatusTimeout param.
- crl
Receive StringTimeout - The CrlReceiveTimeout param.
- device String
- The Device param.
- domain String
- The Domain param.
- folder String
- The Folder param.
- name String
- Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 63 characters.
- ocsp
Receive StringTimeout - The OcspReceiveTimeout param.
- snippet String
- The Snippet param.
- tfid String
- use
Crl Boolean - The UseCrl param.
- use
Ocsp Boolean - The UseOcsp param.
- username
Field CertificateProfile Username Field - The UsernameField param.
- block
Expired booleanCert - The BlockExpiredCert param.
- block
Timeout booleanCert - The BlockTimeoutCert param.
- block
Unauthenticated booleanCert - The BlockUnauthenticatedCert param.
- block
Unknown booleanCert - The BlockUnknownCert param.
- ca
Certificates CertificateProfile Ca Certificate[] - The CaCertificates param.
- cert
Status stringTimeout - The CertStatusTimeout param.
- crl
Receive stringTimeout - The CrlReceiveTimeout param.
- device string
- The Device param.
- domain string
- The Domain param.
- folder string
- The Folder param.
- name string
- Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 63 characters.
- ocsp
Receive stringTimeout - The OcspReceiveTimeout param.
- snippet string
- The Snippet param.
- tfid string
- use
Crl boolean - The UseCrl param.
- use
Ocsp boolean - The UseOcsp param.
- username
Field CertificateProfile Username Field - The UsernameField param.
- block_
expired_ boolcert - The BlockExpiredCert param.
- block_
timeout_ boolcert - The BlockTimeoutCert param.
- block_
unauthenticated_ boolcert - The BlockUnauthenticatedCert param.
- block_
unknown_ boolcert - The BlockUnknownCert param.
- ca_
certificates Sequence[CertificateProfile Ca Certificate Args] - The CaCertificates param.
- cert_
status_ strtimeout - The CertStatusTimeout param.
- crl_
receive_ strtimeout - The CrlReceiveTimeout param.
- device str
- The Device param.
- domain str
- The Domain param.
- folder str
- The Folder param.
- name str
- Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 63 characters.
- ocsp_
receive_ strtimeout - The OcspReceiveTimeout param.
- snippet str
- The Snippet param.
- tfid str
- use_
crl bool - The UseCrl param.
- use_
ocsp bool - The UseOcsp param.
- username_
field CertificateProfile Username Field Args - The UsernameField param.
- block
Expired BooleanCert - The BlockExpiredCert param.
- block
Timeout BooleanCert - The BlockTimeoutCert param.
- block
Unauthenticated BooleanCert - The BlockUnauthenticatedCert param.
- block
Unknown BooleanCert - The BlockUnknownCert param.
- ca
Certificates List<Property Map> - The CaCertificates param.
- cert
Status StringTimeout - The CertStatusTimeout param.
- crl
Receive StringTimeout - The CrlReceiveTimeout param.
- device String
- The Device param.
- domain String
- The Domain param.
- folder String
- The Folder param.
- name String
- Alphanumeric string [ 0-9a-zA-Z._-]. String length must not exceed 63 characters.
- ocsp
Receive StringTimeout - The OcspReceiveTimeout param.
- snippet String
- The Snippet param.
- tfid String
- use
Crl Boolean - The UseCrl param.
- use
Ocsp Boolean - The UseOcsp param.
- username
Field Property Map - The UsernameField param.
Supporting Types
CertificateProfileCaCertificate, CertificateProfileCaCertificateArgs
- Default
Ocsp stringUrl - The DefaultOcspUrl param.
- Name string
- The Name param.
- Ocsp
Verify stringCert - The OcspVerifyCert param.
- Template
Name string - The TemplateName param.
- Default
Ocsp stringUrl - The DefaultOcspUrl param.
- Name string
- The Name param.
- Ocsp
Verify stringCert - The OcspVerifyCert param.
- Template
Name string - The TemplateName param.
- default
Ocsp StringUrl - The DefaultOcspUrl param.
- name String
- The Name param.
- ocsp
Verify StringCert - The OcspVerifyCert param.
- template
Name String - The TemplateName param.
- default
Ocsp stringUrl - The DefaultOcspUrl param.
- name string
- The Name param.
- ocsp
Verify stringCert - The OcspVerifyCert param.
- template
Name string - The TemplateName param.
- default_
ocsp_ strurl - The DefaultOcspUrl param.
- name str
- The Name param.
- ocsp_
verify_ strcert - The OcspVerifyCert param.
- template_
name str - The TemplateName param.
- default
Ocsp StringUrl - The DefaultOcspUrl param.
- name String
- The Name param.
- ocsp
Verify StringCert - The OcspVerifyCert param.
- template
Name String - The TemplateName param.
CertificateProfileUsernameField, CertificateProfileUsernameFieldArgs
- Subject string
- The Subject param. String must be one of these:
"common-name"
. - Subject
Alt string - The SubjectAlt param. String must be one of these:
"email"
.
- Subject string
- The Subject param. String must be one of these:
"common-name"
. - Subject
Alt string - The SubjectAlt param. String must be one of these:
"email"
.
- subject String
- The Subject param. String must be one of these:
"common-name"
. - subject
Alt String - The SubjectAlt param. String must be one of these:
"email"
.
- subject string
- The Subject param. String must be one of these:
"common-name"
. - subject
Alt string - The SubjectAlt param. String must be one of these:
"email"
.
- subject str
- The Subject param. String must be one of these:
"common-name"
. - subject_
alt str - The SubjectAlt param. String must be one of these:
"email"
.
- subject String
- The Subject param. String must be one of these:
"common-name"
. - subject
Alt String - The SubjectAlt param. String must be one of these:
"email"
.
Package Details
- Repository
- scm pulumi/pulumi-scm
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
scm
Terraform Provider.