ScepProfile resource
Create ScepProfile Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ScepProfile(name: string, args: ScepProfileArgs, opts?: CustomResourceOptions);@overload
def ScepProfile(resource_name: str,
args: ScepProfileArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ScepProfile(resource_name: str,
opts: Optional[ResourceOptions] = None,
algorithm: Optional[ScepProfileAlgorithmArgs] = None,
ca_identity_name: Optional[str] = None,
subject: Optional[str] = None,
scep_url: Optional[str] = None,
digest: Optional[str] = None,
scep_challenge: Optional[ScepProfileScepChallengeArgs] = None,
scep_ca_cert: Optional[str] = None,
name: Optional[str] = None,
folder: Optional[str] = None,
fingerprint: Optional[str] = None,
scep_client_cert: Optional[str] = None,
device: Optional[str] = None,
snippet: Optional[str] = None,
certificate_attributes: Optional[ScepProfileCertificateAttributesArgs] = None,
use_as_digital_signature: Optional[bool] = None,
use_for_key_encipherment: Optional[bool] = None)func NewScepProfile(ctx *Context, name string, args ScepProfileArgs, opts ...ResourceOption) (*ScepProfile, error)public ScepProfile(string name, ScepProfileArgs args, CustomResourceOptions? opts = null)
public ScepProfile(String name, ScepProfileArgs args)
public ScepProfile(String name, ScepProfileArgs args, CustomResourceOptions options)
type: scm:ScepProfile
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 ScepProfileArgs
- 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 ScepProfileArgs
- 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 ScepProfileArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ScepProfileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ScepProfileArgs
- 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 scepProfileResource = new Scm.ScepProfile("scepProfileResource", new()
{
Algorithm = new Scm.Inputs.ScepProfileAlgorithmArgs
{
Rsa = new Scm.Inputs.ScepProfileAlgorithmRsaArgs
{
RsaNbits = 0,
},
},
CaIdentityName = "string",
Subject = "string",
ScepUrl = "string",
Digest = "string",
ScepChallenge = new Scm.Inputs.ScepProfileScepChallengeArgs
{
Dynamic = new Scm.Inputs.ScepProfileScepChallengeDynamicArgs
{
OtpServerUrl = "string",
Password = "string",
Username = "string",
},
Fixed = "string",
None = "string",
},
ScepCaCert = "string",
Name = "string",
Folder = "string",
Fingerprint = "string",
ScepClientCert = "string",
Device = "string",
Snippet = "string",
CertificateAttributes = new Scm.Inputs.ScepProfileCertificateAttributesArgs
{
Dnsname = "string",
Rfc822name = "string",
UniformResourceIdentifier = "string",
},
UseAsDigitalSignature = false,
UseForKeyEncipherment = false,
});
example, err := scm.NewScepProfile(ctx, "scepProfileResource", &scm.ScepProfileArgs{
Algorithm: &scm.ScepProfileAlgorithmArgs{
Rsa: &scm.ScepProfileAlgorithmRsaArgs{
RsaNbits: pulumi.Int(0),
},
},
CaIdentityName: pulumi.String("string"),
Subject: pulumi.String("string"),
ScepUrl: pulumi.String("string"),
Digest: pulumi.String("string"),
ScepChallenge: &scm.ScepProfileScepChallengeArgs{
Dynamic: &scm.ScepProfileScepChallengeDynamicArgs{
OtpServerUrl: pulumi.String("string"),
Password: pulumi.String("string"),
Username: pulumi.String("string"),
},
Fixed: pulumi.String("string"),
None: pulumi.String("string"),
},
ScepCaCert: pulumi.String("string"),
Name: pulumi.String("string"),
Folder: pulumi.String("string"),
Fingerprint: pulumi.String("string"),
ScepClientCert: pulumi.String("string"),
Device: pulumi.String("string"),
Snippet: pulumi.String("string"),
CertificateAttributes: &scm.ScepProfileCertificateAttributesArgs{
Dnsname: pulumi.String("string"),
Rfc822name: pulumi.String("string"),
UniformResourceIdentifier: pulumi.String("string"),
},
UseAsDigitalSignature: pulumi.Bool(false),
UseForKeyEncipherment: pulumi.Bool(false),
})
var scepProfileResource = new ScepProfile("scepProfileResource", ScepProfileArgs.builder()
.algorithm(ScepProfileAlgorithmArgs.builder()
.rsa(ScepProfileAlgorithmRsaArgs.builder()
.rsaNbits(0)
.build())
.build())
.caIdentityName("string")
.subject("string")
.scepUrl("string")
.digest("string")
.scepChallenge(ScepProfileScepChallengeArgs.builder()
.dynamic(ScepProfileScepChallengeDynamicArgs.builder()
.otpServerUrl("string")
.password("string")
.username("string")
.build())
.fixed("string")
.none("string")
.build())
.scepCaCert("string")
.name("string")
.folder("string")
.fingerprint("string")
.scepClientCert("string")
.device("string")
.snippet("string")
.certificateAttributes(ScepProfileCertificateAttributesArgs.builder()
.dnsname("string")
.rfc822name("string")
.uniformResourceIdentifier("string")
.build())
.useAsDigitalSignature(false)
.useForKeyEncipherment(false)
.build());
scep_profile_resource = scm.ScepProfile("scepProfileResource",
algorithm={
"rsa": {
"rsa_nbits": 0,
},
},
ca_identity_name="string",
subject="string",
scep_url="string",
digest="string",
scep_challenge={
"dynamic": {
"otp_server_url": "string",
"password": "string",
"username": "string",
},
"fixed": "string",
"none": "string",
},
scep_ca_cert="string",
name="string",
folder="string",
fingerprint="string",
scep_client_cert="string",
device="string",
snippet="string",
certificate_attributes={
"dnsname": "string",
"rfc822name": "string",
"uniform_resource_identifier": "string",
},
use_as_digital_signature=False,
use_for_key_encipherment=False)
const scepProfileResource = new scm.ScepProfile("scepProfileResource", {
algorithm: {
rsa: {
rsaNbits: 0,
},
},
caIdentityName: "string",
subject: "string",
scepUrl: "string",
digest: "string",
scepChallenge: {
dynamic: {
otpServerUrl: "string",
password: "string",
username: "string",
},
fixed: "string",
none: "string",
},
scepCaCert: "string",
name: "string",
folder: "string",
fingerprint: "string",
scepClientCert: "string",
device: "string",
snippet: "string",
certificateAttributes: {
dnsname: "string",
rfc822name: "string",
uniformResourceIdentifier: "string",
},
useAsDigitalSignature: false,
useForKeyEncipherment: false,
});
type: scm:ScepProfile
properties:
algorithm:
rsa:
rsaNbits: 0
caIdentityName: string
certificateAttributes:
dnsname: string
rfc822name: string
uniformResourceIdentifier: string
device: string
digest: string
fingerprint: string
folder: string
name: string
scepCaCert: string
scepChallenge:
dynamic:
otpServerUrl: string
password: string
username: string
fixed: string
none: string
scepClientCert: string
scepUrl: string
snippet: string
subject: string
useAsDigitalSignature: false
useForKeyEncipherment: false
ScepProfile 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 ScepProfile resource accepts the following input properties:
- Algorithm
Scep
Profile Algorithm - Algorithm
- Ca
Identity stringName - Certificate Authority identity
- Digest string
- Digest for CSR
- Scep
Challenge ScepProfile Scep Challenge - One Time Password challenge
- Scep
Url string - SCEP server URL
- Subject string
- Subject
- Certificate
Attributes ScepProfile Certificate Attributes - Subject Alternative name type
- Device string
- The device in which the resource is defined
- Fingerprint string
- CA certificate fingerprint
- Folder string
- The folder in which the resource is defined
- Name string
- The name of the SCEP profile
- Scep
Ca stringCert - SCEP server CA certificate
- Scep
Client stringCert - SCEP client ceertificate
- Snippet string
- The snippet in which the resource is defined
- Use
As boolDigital Signature - Use as digital signature?
- Use
For boolKey Encipherment - Use for key encipherment?
- Algorithm
Scep
Profile Algorithm Args - Algorithm
- Ca
Identity stringName - Certificate Authority identity
- Digest string
- Digest for CSR
- Scep
Challenge ScepProfile Scep Challenge Args - One Time Password challenge
- Scep
Url string - SCEP server URL
- Subject string
- Subject
- Certificate
Attributes ScepProfile Certificate Attributes Args - Subject Alternative name type
- Device string
- The device in which the resource is defined
- Fingerprint string
- CA certificate fingerprint
- Folder string
- The folder in which the resource is defined
- Name string
- The name of the SCEP profile
- Scep
Ca stringCert - SCEP server CA certificate
- Scep
Client stringCert - SCEP client ceertificate
- Snippet string
- The snippet in which the resource is defined
- Use
As boolDigital Signature - Use as digital signature?
- Use
For boolKey Encipherment - Use for key encipherment?
- algorithm
Scep
Profile Algorithm - Algorithm
- ca
Identity StringName - Certificate Authority identity
- digest String
- Digest for CSR
- scep
Challenge ScepProfile Scep Challenge - One Time Password challenge
- scep
Url String - SCEP server URL
- subject String
- Subject
- certificate
Attributes ScepProfile Certificate Attributes - Subject Alternative name type
- device String
- The device in which the resource is defined
- fingerprint String
- CA certificate fingerprint
- folder String
- The folder in which the resource is defined
- name String
- The name of the SCEP profile
- scep
Ca StringCert - SCEP server CA certificate
- scep
Client StringCert - SCEP client ceertificate
- snippet String
- The snippet in which the resource is defined
- use
As BooleanDigital Signature - Use as digital signature?
- use
For BooleanKey Encipherment - Use for key encipherment?
- algorithm
Scep
Profile Algorithm - Algorithm
- ca
Identity stringName - Certificate Authority identity
- digest string
- Digest for CSR
- scep
Challenge ScepProfile Scep Challenge - One Time Password challenge
- scep
Url string - SCEP server URL
- subject string
- Subject
- certificate
Attributes ScepProfile Certificate Attributes - Subject Alternative name type
- device string
- The device in which the resource is defined
- fingerprint string
- CA certificate fingerprint
- folder string
- The folder in which the resource is defined
- name string
- The name of the SCEP profile
- scep
Ca stringCert - SCEP server CA certificate
- scep
Client stringCert - SCEP client ceertificate
- snippet string
- The snippet in which the resource is defined
- use
As booleanDigital Signature - Use as digital signature?
- use
For booleanKey Encipherment - Use for key encipherment?
- algorithm
Scep
Profile Algorithm Args - Algorithm
- ca_
identity_ strname - Certificate Authority identity
- digest str
- Digest for CSR
- scep_
challenge ScepProfile Scep Challenge Args - One Time Password challenge
- scep_
url str - SCEP server URL
- subject str
- Subject
- certificate_
attributes ScepProfile Certificate Attributes Args - Subject Alternative name type
- device str
- The device in which the resource is defined
- fingerprint str
- CA certificate fingerprint
- folder str
- The folder in which the resource is defined
- name str
- The name of the SCEP profile
- scep_
ca_ strcert - SCEP server CA certificate
- scep_
client_ strcert - SCEP client ceertificate
- snippet str
- The snippet in which the resource is defined
- use_
as_ booldigital_ signature - Use as digital signature?
- use_
for_ boolkey_ encipherment - Use for key encipherment?
- algorithm Property Map
- Algorithm
- ca
Identity StringName - Certificate Authority identity
- digest String
- Digest for CSR
- scep
Challenge Property Map - One Time Password challenge
- scep
Url String - SCEP server URL
- subject String
- Subject
- certificate
Attributes Property Map - Subject Alternative name type
- device String
- The device in which the resource is defined
- fingerprint String
- CA certificate fingerprint
- folder String
- The folder in which the resource is defined
- name String
- The name of the SCEP profile
- scep
Ca StringCert - SCEP server CA certificate
- scep
Client StringCert - SCEP client ceertificate
- snippet String
- The snippet in which the resource is defined
- use
As BooleanDigital Signature - Use as digital signature?
- use
For BooleanKey Encipherment - Use for key encipherment?
Outputs
All input properties are implicitly available as output properties. Additionally, the ScepProfile resource produces the following output properties:
- Encrypted
Values Dictionary<string, string> - Map of sensitive values returned from the API.
- Id string
- The provider-assigned unique ID for this managed resource.
- Tfid string
- Encrypted
Values map[string]string - Map of sensitive values returned from the API.
- Id string
- The provider-assigned unique ID for this managed resource.
- Tfid string
- encrypted
Values Map<String,String> - Map of sensitive values returned from the API.
- id String
- The provider-assigned unique ID for this managed resource.
- tfid String
- encrypted
Values {[key: string]: string} - Map of sensitive values returned from the API.
- id string
- The provider-assigned unique ID for this managed resource.
- tfid string
- encrypted_
values Mapping[str, str] - Map of sensitive values returned from the API.
- id str
- The provider-assigned unique ID for this managed resource.
- tfid str
- encrypted
Values Map<String> - Map of sensitive values returned from the API.
- id String
- The provider-assigned unique ID for this managed resource.
- tfid String
Look up Existing ScepProfile Resource
Get an existing ScepProfile 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?: ScepProfileState, opts?: CustomResourceOptions): ScepProfile@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
algorithm: Optional[ScepProfileAlgorithmArgs] = None,
ca_identity_name: Optional[str] = None,
certificate_attributes: Optional[ScepProfileCertificateAttributesArgs] = None,
device: Optional[str] = None,
digest: Optional[str] = None,
encrypted_values: Optional[Mapping[str, str]] = None,
fingerprint: Optional[str] = None,
folder: Optional[str] = None,
name: Optional[str] = None,
scep_ca_cert: Optional[str] = None,
scep_challenge: Optional[ScepProfileScepChallengeArgs] = None,
scep_client_cert: Optional[str] = None,
scep_url: Optional[str] = None,
snippet: Optional[str] = None,
subject: Optional[str] = None,
tfid: Optional[str] = None,
use_as_digital_signature: Optional[bool] = None,
use_for_key_encipherment: Optional[bool] = None) -> ScepProfilefunc GetScepProfile(ctx *Context, name string, id IDInput, state *ScepProfileState, opts ...ResourceOption) (*ScepProfile, error)public static ScepProfile Get(string name, Input<string> id, ScepProfileState? state, CustomResourceOptions? opts = null)public static ScepProfile get(String name, Output<String> id, ScepProfileState state, CustomResourceOptions options)resources: _: type: scm:ScepProfile 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.
- Algorithm
Scep
Profile Algorithm - Algorithm
- Ca
Identity stringName - Certificate Authority identity
- Certificate
Attributes ScepProfile Certificate Attributes - Subject Alternative name type
- Device string
- The device in which the resource is defined
- Digest string
- Digest for CSR
- Encrypted
Values Dictionary<string, string> - Map of sensitive values returned from the API.
- Fingerprint string
- CA certificate fingerprint
- Folder string
- The folder in which the resource is defined
- Name string
- The name of the SCEP profile
- Scep
Ca stringCert - SCEP server CA certificate
- Scep
Challenge ScepProfile Scep Challenge - One Time Password challenge
- Scep
Client stringCert - SCEP client ceertificate
- Scep
Url string - SCEP server URL
- Snippet string
- The snippet in which the resource is defined
- Subject string
- Subject
- Tfid string
- Use
As boolDigital Signature - Use as digital signature?
- Use
For boolKey Encipherment - Use for key encipherment?
- Algorithm
Scep
Profile Algorithm Args - Algorithm
- Ca
Identity stringName - Certificate Authority identity
- Certificate
Attributes ScepProfile Certificate Attributes Args - Subject Alternative name type
- Device string
- The device in which the resource is defined
- Digest string
- Digest for CSR
- Encrypted
Values map[string]string - Map of sensitive values returned from the API.
- Fingerprint string
- CA certificate fingerprint
- Folder string
- The folder in which the resource is defined
- Name string
- The name of the SCEP profile
- Scep
Ca stringCert - SCEP server CA certificate
- Scep
Challenge ScepProfile Scep Challenge Args - One Time Password challenge
- Scep
Client stringCert - SCEP client ceertificate
- Scep
Url string - SCEP server URL
- Snippet string
- The snippet in which the resource is defined
- Subject string
- Subject
- Tfid string
- Use
As boolDigital Signature - Use as digital signature?
- Use
For boolKey Encipherment - Use for key encipherment?
- algorithm
Scep
Profile Algorithm - Algorithm
- ca
Identity StringName - Certificate Authority identity
- certificate
Attributes ScepProfile Certificate Attributes - Subject Alternative name type
- device String
- The device in which the resource is defined
- digest String
- Digest for CSR
- encrypted
Values Map<String,String> - Map of sensitive values returned from the API.
- fingerprint String
- CA certificate fingerprint
- folder String
- The folder in which the resource is defined
- name String
- The name of the SCEP profile
- scep
Ca StringCert - SCEP server CA certificate
- scep
Challenge ScepProfile Scep Challenge - One Time Password challenge
- scep
Client StringCert - SCEP client ceertificate
- scep
Url String - SCEP server URL
- snippet String
- The snippet in which the resource is defined
- subject String
- Subject
- tfid String
- use
As BooleanDigital Signature - Use as digital signature?
- use
For BooleanKey Encipherment - Use for key encipherment?
- algorithm
Scep
Profile Algorithm - Algorithm
- ca
Identity stringName - Certificate Authority identity
- certificate
Attributes ScepProfile Certificate Attributes - Subject Alternative name type
- device string
- The device in which the resource is defined
- digest string
- Digest for CSR
- encrypted
Values {[key: string]: string} - Map of sensitive values returned from the API.
- fingerprint string
- CA certificate fingerprint
- folder string
- The folder in which the resource is defined
- name string
- The name of the SCEP profile
- scep
Ca stringCert - SCEP server CA certificate
- scep
Challenge ScepProfile Scep Challenge - One Time Password challenge
- scep
Client stringCert - SCEP client ceertificate
- scep
Url string - SCEP server URL
- snippet string
- The snippet in which the resource is defined
- subject string
- Subject
- tfid string
- use
As booleanDigital Signature - Use as digital signature?
- use
For booleanKey Encipherment - Use for key encipherment?
- algorithm
Scep
Profile Algorithm Args - Algorithm
- ca_
identity_ strname - Certificate Authority identity
- certificate_
attributes ScepProfile Certificate Attributes Args - Subject Alternative name type
- device str
- The device in which the resource is defined
- digest str
- Digest for CSR
- encrypted_
values Mapping[str, str] - Map of sensitive values returned from the API.
- fingerprint str
- CA certificate fingerprint
- folder str
- The folder in which the resource is defined
- name str
- The name of the SCEP profile
- scep_
ca_ strcert - SCEP server CA certificate
- scep_
challenge ScepProfile Scep Challenge Args - One Time Password challenge
- scep_
client_ strcert - SCEP client ceertificate
- scep_
url str - SCEP server URL
- snippet str
- The snippet in which the resource is defined
- subject str
- Subject
- tfid str
- use_
as_ booldigital_ signature - Use as digital signature?
- use_
for_ boolkey_ encipherment - Use for key encipherment?
- algorithm Property Map
- Algorithm
- ca
Identity StringName - Certificate Authority identity
- certificate
Attributes Property Map - Subject Alternative name type
- device String
- The device in which the resource is defined
- digest String
- Digest for CSR
- encrypted
Values Map<String> - Map of sensitive values returned from the API.
- fingerprint String
- CA certificate fingerprint
- folder String
- The folder in which the resource is defined
- name String
- The name of the SCEP profile
- scep
Ca StringCert - SCEP server CA certificate
- scep
Challenge Property Map - One Time Password challenge
- scep
Client StringCert - SCEP client ceertificate
- scep
Url String - SCEP server URL
- snippet String
- The snippet in which the resource is defined
- subject String
- Subject
- tfid String
- use
As BooleanDigital Signature - Use as digital signature?
- use
For BooleanKey Encipherment - Use for key encipherment?
Supporting Types
ScepProfileAlgorithm, ScepProfileAlgorithmArgs
- Rsa
Scep
Profile Algorithm Rsa - Key length (bits)
- Rsa
Scep
Profile Algorithm Rsa - Key length (bits)
- rsa
Scep
Profile Algorithm Rsa - Key length (bits)
- rsa
Scep
Profile Algorithm Rsa - Key length (bits)
- rsa
Scep
Profile Algorithm Rsa - Key length (bits)
- rsa Property Map
- Key length (bits)
ScepProfileAlgorithmRsa, ScepProfileAlgorithmRsaArgs
- Rsa
Nbits int - Rsa nbits
- Rsa
Nbits int - Rsa nbits
- rsa
Nbits Integer - Rsa nbits
- rsa
Nbits number - Rsa nbits
- rsa_
nbits int - Rsa nbits
- rsa
Nbits Number - Rsa nbits
ScepProfileCertificateAttributes, ScepProfileCertificateAttributesArgs
- Dnsname string
- Dnsname
- Rfc822name string
- Rfc822name
- Uniform
Resource stringIdentifier - Uniform resource identifier
- Dnsname string
- Dnsname
- Rfc822name string
- Rfc822name
- Uniform
Resource stringIdentifier - Uniform resource identifier
- dnsname String
- Dnsname
- rfc822name String
- Rfc822name
- uniform
Resource StringIdentifier - Uniform resource identifier
- dnsname string
- Dnsname
- rfc822name string
- Rfc822name
- uniform
Resource stringIdentifier - Uniform resource identifier
- dnsname str
- Dnsname
- rfc822name str
- Rfc822name
- uniform_
resource_ stridentifier - Uniform resource identifier
- dnsname String
- Dnsname
- rfc822name String
- Rfc822name
- uniform
Resource StringIdentifier - Uniform resource identifier
ScepProfileScepChallenge, ScepProfileScepChallengeArgs
- Dynamic
Scep
Profile Scep Challenge Dynamic - Dynamic
- Fixed string
- Challenge to use for SCEP server on mobile clients
- None string
- No OTP
- Dynamic
Scep
Profile Scep Challenge Dynamic - Dynamic
- Fixed string
- Challenge to use for SCEP server on mobile clients
- None string
- No OTP
- dynamic
Scep
Profile Scep Challenge Dynamic - Dynamic
- fixed String
- Challenge to use for SCEP server on mobile clients
- none String
- No OTP
- dynamic
Scep
Profile Scep Challenge Dynamic - Dynamic
- fixed string
- Challenge to use for SCEP server on mobile clients
- none string
- No OTP
- dynamic
Scep
Profile Scep Challenge Dynamic - Dynamic
- fixed str
- Challenge to use for SCEP server on mobile clients
- none str
- No OTP
- dynamic Property Map
- Dynamic
- fixed String
- Challenge to use for SCEP server on mobile clients
- none String
- No OTP
ScepProfileScepChallengeDynamic, ScepProfileScepChallengeDynamicArgs
- Otp
Server stringUrl - OTP server URL
- Password string
- OTP password
- Username string
- OTP username
- Otp
Server stringUrl - OTP server URL
- Password string
- OTP password
- Username string
- OTP username
- otp
Server StringUrl - OTP server URL
- password String
- OTP password
- username String
- OTP username
- otp
Server stringUrl - OTP server URL
- password string
- OTP password
- username string
- OTP username
- otp_
server_ strurl - OTP server URL
- password str
- OTP password
- username str
- OTP username
- otp
Server StringUrl - OTP server URL
- password String
- OTP password
- username String
- OTP username
Package Details
- Repository
- scm pulumi/pulumi-scm
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
scmTerraform Provider.
