ScepProfile resource
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as scm from "@pulumi/scm";
// scep profile w/ no challenge
const scmScepProfile1 = new scm.ScepProfile("scm_scep_profile_1", {
folder: "All",
name: "scep-prof-1",
scepUrl: "https://scep.example.com/",
caIdentityName: "Default",
digest: "sha1",
subject: "CN=$USERNAME",
scepChallenge: {
fixed: "123",
},
algorithm: {
rsa: {
rsaNbits: "1024",
},
},
});
// scep profile w/ fixed challenge
const scmScepProfile2 = new scm.ScepProfile("scm_scep_profile_2", {
folder: "All",
name: "scep-prof-2",
scepUrl: "https://example.target.com/",
caIdentityName: "user-scep",
digest: "sha256",
subject: "CN=$USERNAME",
scepCaCert: "Forward-Trust-CA-ECDSA",
scepChallenge: {
fixed: "Password123!",
},
certificateAttributes: {
rfc822name: "user@example.com",
},
algorithm: {
rsa: {
rsaNbits: "2048",
},
},
});
// scep profile w/ dynamic challenge
const scmScepProfile3 = new scm.ScepProfile("scm_scep_profile_3", {
folder: "All",
name: "scep-prof-3",
scepUrl: "https://example.gateway.com/",
caIdentityName: "vpn-gateway",
digest: "sha384",
subject: "CN=$CORP_VPN",
scepCaCert: "GlobalSign-Root-CA",
fingerprint: "64EC88CA00B268E5BA1A35678A1B5316D212F4F366B24772322342423123455A",
useAsDigitalSignature: false,
scepChallenge: {
dynamic: {
username: "user123",
password: "Password123!",
otpServerUrl: "http://auth.com",
},
},
certificateAttributes: {
dnsname: "vpn-gateway.example.com",
},
algorithm: {
rsa: {
rsaNbits: "3072",
},
},
});
// scep profile w/ all fields
const scmScepProfile4 = new scm.ScepProfile("scm_scep_profile_4", {
folder: "All",
name: "scep-prof-4",
scepUrl: "https://example.wifi.com/",
caIdentityName: "wifi",
digest: "sha512",
subject: "CN=$WIFI-ACCESS",
scepCaCert: "Root CA",
scepClientCert: "Forward-UnTrust-CA-ECDSA",
fingerprint: "4448CA00B268E5BU690378A1B5316D212F4F366B2477232234394I",
useAsDigitalSignature: true,
useForKeyEncipherment: true,
scepChallenge: {
dynamic: {
username: "admin",
password: "Pwd@123",
otpServerUrl: "http://auth.com",
},
},
certificateAttributes: {
uniformResourceIdentifier: "file:///C:/Users/Documents/report.txt",
},
algorithm: {
rsa: {
rsaNbits: "3072",
},
},
});
import pulumi
import pulumi_scm as scm
# scep profile w/ no challenge
scm_scep_profile1 = scm.ScepProfile("scm_scep_profile_1",
folder="All",
name="scep-prof-1",
scep_url="https://scep.example.com/",
ca_identity_name="Default",
digest="sha1",
subject="CN=$USERNAME",
scep_challenge={
"fixed": "123",
},
algorithm={
"rsa": {
"rsa_nbits": "1024",
},
})
# scep profile w/ fixed challenge
scm_scep_profile2 = scm.ScepProfile("scm_scep_profile_2",
folder="All",
name="scep-prof-2",
scep_url="https://example.target.com/",
ca_identity_name="user-scep",
digest="sha256",
subject="CN=$USERNAME",
scep_ca_cert="Forward-Trust-CA-ECDSA",
scep_challenge={
"fixed": "Password123!",
},
certificate_attributes={
"rfc822name": "user@example.com",
},
algorithm={
"rsa": {
"rsa_nbits": "2048",
},
})
# scep profile w/ dynamic challenge
scm_scep_profile3 = scm.ScepProfile("scm_scep_profile_3",
folder="All",
name="scep-prof-3",
scep_url="https://example.gateway.com/",
ca_identity_name="vpn-gateway",
digest="sha384",
subject="CN=$CORP_VPN",
scep_ca_cert="GlobalSign-Root-CA",
fingerprint="64EC88CA00B268E5BA1A35678A1B5316D212F4F366B24772322342423123455A",
use_as_digital_signature=False,
scep_challenge={
"dynamic": {
"username": "user123",
"password": "Password123!",
"otp_server_url": "http://auth.com",
},
},
certificate_attributes={
"dnsname": "vpn-gateway.example.com",
},
algorithm={
"rsa": {
"rsa_nbits": "3072",
},
})
# scep profile w/ all fields
scm_scep_profile4 = scm.ScepProfile("scm_scep_profile_4",
folder="All",
name="scep-prof-4",
scep_url="https://example.wifi.com/",
ca_identity_name="wifi",
digest="sha512",
subject="CN=$WIFI-ACCESS",
scep_ca_cert="Root CA",
scep_client_cert="Forward-UnTrust-CA-ECDSA",
fingerprint="4448CA00B268E5BU690378A1B5316D212F4F366B2477232234394I",
use_as_digital_signature=True,
use_for_key_encipherment=True,
scep_challenge={
"dynamic": {
"username": "admin",
"password": "Pwd@123",
"otp_server_url": "http://auth.com",
},
},
certificate_attributes={
"uniform_resource_identifier": "file:///C:/Users/Documents/report.txt",
},
algorithm={
"rsa": {
"rsa_nbits": "3072",
},
})
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 {
// scep profile w/ no challenge
_, err := scm.NewScepProfile(ctx, "scm_scep_profile_1", &scm.ScepProfileArgs{
Folder: pulumi.String("All"),
Name: pulumi.String("scep-prof-1"),
ScepUrl: pulumi.String("https://scep.example.com/"),
CaIdentityName: pulumi.String("Default"),
Digest: pulumi.String("sha1"),
Subject: pulumi.String("CN=$USERNAME"),
ScepChallenge: &scm.ScepProfileScepChallengeArgs{
Fixed: pulumi.String("123"),
},
Algorithm: &scm.ScepProfileAlgorithmArgs{
Rsa: &scm.ScepProfileAlgorithmRsaArgs{
RsaNbits: pulumi.String("1024"),
},
},
})
if err != nil {
return err
}
// scep profile w/ fixed challenge
_, err = scm.NewScepProfile(ctx, "scm_scep_profile_2", &scm.ScepProfileArgs{
Folder: pulumi.String("All"),
Name: pulumi.String("scep-prof-2"),
ScepUrl: pulumi.String("https://example.target.com/"),
CaIdentityName: pulumi.String("user-scep"),
Digest: pulumi.String("sha256"),
Subject: pulumi.String("CN=$USERNAME"),
ScepCaCert: pulumi.String("Forward-Trust-CA-ECDSA"),
ScepChallenge: &scm.ScepProfileScepChallengeArgs{
Fixed: pulumi.String("Password123!"),
},
CertificateAttributes: &scm.ScepProfileCertificateAttributesArgs{
Rfc822name: pulumi.String("user@example.com"),
},
Algorithm: &scm.ScepProfileAlgorithmArgs{
Rsa: &scm.ScepProfileAlgorithmRsaArgs{
RsaNbits: pulumi.String("2048"),
},
},
})
if err != nil {
return err
}
// scep profile w/ dynamic challenge
_, err = scm.NewScepProfile(ctx, "scm_scep_profile_3", &scm.ScepProfileArgs{
Folder: pulumi.String("All"),
Name: pulumi.String("scep-prof-3"),
ScepUrl: pulumi.String("https://example.gateway.com/"),
CaIdentityName: pulumi.String("vpn-gateway"),
Digest: pulumi.String("sha384"),
Subject: pulumi.String("CN=$CORP_VPN"),
ScepCaCert: pulumi.String("GlobalSign-Root-CA"),
Fingerprint: pulumi.String("64EC88CA00B268E5BA1A35678A1B5316D212F4F366B24772322342423123455A"),
UseAsDigitalSignature: pulumi.Bool(false),
ScepChallenge: &scm.ScepProfileScepChallengeArgs{
Dynamic: &scm.ScepProfileScepChallengeDynamicArgs{
Username: pulumi.String("user123"),
Password: pulumi.String("Password123!"),
OtpServerUrl: pulumi.String("http://auth.com"),
},
},
CertificateAttributes: &scm.ScepProfileCertificateAttributesArgs{
Dnsname: pulumi.String("vpn-gateway.example.com"),
},
Algorithm: &scm.ScepProfileAlgorithmArgs{
Rsa: &scm.ScepProfileAlgorithmRsaArgs{
RsaNbits: pulumi.String("3072"),
},
},
})
if err != nil {
return err
}
// scep profile w/ all fields
_, err = scm.NewScepProfile(ctx, "scm_scep_profile_4", &scm.ScepProfileArgs{
Folder: pulumi.String("All"),
Name: pulumi.String("scep-prof-4"),
ScepUrl: pulumi.String("https://example.wifi.com/"),
CaIdentityName: pulumi.String("wifi"),
Digest: pulumi.String("sha512"),
Subject: pulumi.String("CN=$WIFI-ACCESS"),
ScepCaCert: pulumi.String("Root CA"),
ScepClientCert: pulumi.String("Forward-UnTrust-CA-ECDSA"),
Fingerprint: pulumi.String("4448CA00B268E5BU690378A1B5316D212F4F366B2477232234394I"),
UseAsDigitalSignature: pulumi.Bool(true),
UseForKeyEncipherment: pulumi.Bool(true),
ScepChallenge: &scm.ScepProfileScepChallengeArgs{
Dynamic: &scm.ScepProfileScepChallengeDynamicArgs{
Username: pulumi.String("admin"),
Password: pulumi.String("Pwd@123"),
OtpServerUrl: pulumi.String("http://auth.com"),
},
},
CertificateAttributes: &scm.ScepProfileCertificateAttributesArgs{
UniformResourceIdentifier: pulumi.String("file:///C:/Users/Documents/report.txt"),
},
Algorithm: &scm.ScepProfileAlgorithmArgs{
Rsa: &scm.ScepProfileAlgorithmRsaArgs{
RsaNbits: pulumi.String("3072"),
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Scm = Pulumi.Scm;
return await Deployment.RunAsync(() =>
{
// scep profile w/ no challenge
var scmScepProfile1 = new Scm.ScepProfile("scm_scep_profile_1", new()
{
Folder = "All",
Name = "scep-prof-1",
ScepUrl = "https://scep.example.com/",
CaIdentityName = "Default",
Digest = "sha1",
Subject = "CN=$USERNAME",
ScepChallenge = new Scm.Inputs.ScepProfileScepChallengeArgs
{
Fixed = "123",
},
Algorithm = new Scm.Inputs.ScepProfileAlgorithmArgs
{
Rsa = new Scm.Inputs.ScepProfileAlgorithmRsaArgs
{
RsaNbits = "1024",
},
},
});
// scep profile w/ fixed challenge
var scmScepProfile2 = new Scm.ScepProfile("scm_scep_profile_2", new()
{
Folder = "All",
Name = "scep-prof-2",
ScepUrl = "https://example.target.com/",
CaIdentityName = "user-scep",
Digest = "sha256",
Subject = "CN=$USERNAME",
ScepCaCert = "Forward-Trust-CA-ECDSA",
ScepChallenge = new Scm.Inputs.ScepProfileScepChallengeArgs
{
Fixed = "Password123!",
},
CertificateAttributes = new Scm.Inputs.ScepProfileCertificateAttributesArgs
{
Rfc822name = "user@example.com",
},
Algorithm = new Scm.Inputs.ScepProfileAlgorithmArgs
{
Rsa = new Scm.Inputs.ScepProfileAlgorithmRsaArgs
{
RsaNbits = "2048",
},
},
});
// scep profile w/ dynamic challenge
var scmScepProfile3 = new Scm.ScepProfile("scm_scep_profile_3", new()
{
Folder = "All",
Name = "scep-prof-3",
ScepUrl = "https://example.gateway.com/",
CaIdentityName = "vpn-gateway",
Digest = "sha384",
Subject = "CN=$CORP_VPN",
ScepCaCert = "GlobalSign-Root-CA",
Fingerprint = "64EC88CA00B268E5BA1A35678A1B5316D212F4F366B24772322342423123455A",
UseAsDigitalSignature = false,
ScepChallenge = new Scm.Inputs.ScepProfileScepChallengeArgs
{
Dynamic = new Scm.Inputs.ScepProfileScepChallengeDynamicArgs
{
Username = "user123",
Password = "Password123!",
OtpServerUrl = "http://auth.com",
},
},
CertificateAttributes = new Scm.Inputs.ScepProfileCertificateAttributesArgs
{
Dnsname = "vpn-gateway.example.com",
},
Algorithm = new Scm.Inputs.ScepProfileAlgorithmArgs
{
Rsa = new Scm.Inputs.ScepProfileAlgorithmRsaArgs
{
RsaNbits = "3072",
},
},
});
// scep profile w/ all fields
var scmScepProfile4 = new Scm.ScepProfile("scm_scep_profile_4", new()
{
Folder = "All",
Name = "scep-prof-4",
ScepUrl = "https://example.wifi.com/",
CaIdentityName = "wifi",
Digest = "sha512",
Subject = "CN=$WIFI-ACCESS",
ScepCaCert = "Root CA",
ScepClientCert = "Forward-UnTrust-CA-ECDSA",
Fingerprint = "4448CA00B268E5BU690378A1B5316D212F4F366B2477232234394I",
UseAsDigitalSignature = true,
UseForKeyEncipherment = true,
ScepChallenge = new Scm.Inputs.ScepProfileScepChallengeArgs
{
Dynamic = new Scm.Inputs.ScepProfileScepChallengeDynamicArgs
{
Username = "admin",
Password = "Pwd@123",
OtpServerUrl = "http://auth.com",
},
},
CertificateAttributes = new Scm.Inputs.ScepProfileCertificateAttributesArgs
{
UniformResourceIdentifier = "file:///C:/Users/Documents/report.txt",
},
Algorithm = new Scm.Inputs.ScepProfileAlgorithmArgs
{
Rsa = new Scm.Inputs.ScepProfileAlgorithmRsaArgs
{
RsaNbits = "3072",
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.scm.ScepProfile;
import com.pulumi.scm.ScepProfileArgs;
import com.pulumi.scm.inputs.ScepProfileScepChallengeArgs;
import com.pulumi.scm.inputs.ScepProfileAlgorithmArgs;
import com.pulumi.scm.inputs.ScepProfileAlgorithmRsaArgs;
import com.pulumi.scm.inputs.ScepProfileCertificateAttributesArgs;
import com.pulumi.scm.inputs.ScepProfileScepChallengeDynamicArgs;
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) {
// scep profile w/ no challenge
var scmScepProfile1 = new ScepProfile("scmScepProfile1", ScepProfileArgs.builder()
.folder("All")
.name("scep-prof-1")
.scepUrl("https://scep.example.com/")
.caIdentityName("Default")
.digest("sha1")
.subject("CN=$USERNAME")
.scepChallenge(ScepProfileScepChallengeArgs.builder()
.fixed("123")
.build())
.algorithm(ScepProfileAlgorithmArgs.builder()
.rsa(ScepProfileAlgorithmRsaArgs.builder()
.rsaNbits("1024")
.build())
.build())
.build());
// scep profile w/ fixed challenge
var scmScepProfile2 = new ScepProfile("scmScepProfile2", ScepProfileArgs.builder()
.folder("All")
.name("scep-prof-2")
.scepUrl("https://example.target.com/")
.caIdentityName("user-scep")
.digest("sha256")
.subject("CN=$USERNAME")
.scepCaCert("Forward-Trust-CA-ECDSA")
.scepChallenge(ScepProfileScepChallengeArgs.builder()
.fixed("Password123!")
.build())
.certificateAttributes(ScepProfileCertificateAttributesArgs.builder()
.rfc822name("user@example.com")
.build())
.algorithm(ScepProfileAlgorithmArgs.builder()
.rsa(ScepProfileAlgorithmRsaArgs.builder()
.rsaNbits("2048")
.build())
.build())
.build());
// scep profile w/ dynamic challenge
var scmScepProfile3 = new ScepProfile("scmScepProfile3", ScepProfileArgs.builder()
.folder("All")
.name("scep-prof-3")
.scepUrl("https://example.gateway.com/")
.caIdentityName("vpn-gateway")
.digest("sha384")
.subject("CN=$CORP_VPN")
.scepCaCert("GlobalSign-Root-CA")
.fingerprint("64EC88CA00B268E5BA1A35678A1B5316D212F4F366B24772322342423123455A")
.useAsDigitalSignature(false)
.scepChallenge(ScepProfileScepChallengeArgs.builder()
.dynamic(ScepProfileScepChallengeDynamicArgs.builder()
.username("user123")
.password("Password123!")
.otpServerUrl("http://auth.com")
.build())
.build())
.certificateAttributes(ScepProfileCertificateAttributesArgs.builder()
.dnsname("vpn-gateway.example.com")
.build())
.algorithm(ScepProfileAlgorithmArgs.builder()
.rsa(ScepProfileAlgorithmRsaArgs.builder()
.rsaNbits("3072")
.build())
.build())
.build());
// scep profile w/ all fields
var scmScepProfile4 = new ScepProfile("scmScepProfile4", ScepProfileArgs.builder()
.folder("All")
.name("scep-prof-4")
.scepUrl("https://example.wifi.com/")
.caIdentityName("wifi")
.digest("sha512")
.subject("CN=$WIFI-ACCESS")
.scepCaCert("Root CA")
.scepClientCert("Forward-UnTrust-CA-ECDSA")
.fingerprint("4448CA00B268E5BU690378A1B5316D212F4F366B2477232234394I")
.useAsDigitalSignature(true)
.useForKeyEncipherment(true)
.scepChallenge(ScepProfileScepChallengeArgs.builder()
.dynamic(ScepProfileScepChallengeDynamicArgs.builder()
.username("admin")
.password("Pwd@123")
.otpServerUrl("http://auth.com")
.build())
.build())
.certificateAttributes(ScepProfileCertificateAttributesArgs.builder()
.uniformResourceIdentifier("file:///C:/Users/Documents/report.txt")
.build())
.algorithm(ScepProfileAlgorithmArgs.builder()
.rsa(ScepProfileAlgorithmRsaArgs.builder()
.rsaNbits("3072")
.build())
.build())
.build());
}
}
resources:
# scep profile w/ no challenge
scmScepProfile1:
type: scm:ScepProfile
name: scm_scep_profile_1
properties:
folder: All
name: scep-prof-1
scepUrl: https://scep.example.com/
caIdentityName: Default
digest: sha1
subject: CN=$USERNAME
scepChallenge:
fixed: '123'
algorithm:
rsa:
rsaNbits: '1024'
# scep profile w/ fixed challenge
scmScepProfile2:
type: scm:ScepProfile
name: scm_scep_profile_2
properties:
folder: All
name: scep-prof-2
scepUrl: https://example.target.com/
caIdentityName: user-scep
digest: sha256
subject: CN=$USERNAME
scepCaCert: Forward-Trust-CA-ECDSA
scepChallenge:
fixed: Password123!
certificateAttributes:
rfc822name: user@example.com
algorithm:
rsa:
rsaNbits: '2048'
# scep profile w/ dynamic challenge
scmScepProfile3:
type: scm:ScepProfile
name: scm_scep_profile_3
properties:
folder: All
name: scep-prof-3
scepUrl: https://example.gateway.com/
caIdentityName: vpn-gateway
digest: sha384
subject: CN=$CORP_VPN
scepCaCert: GlobalSign-Root-CA
fingerprint: 64EC88CA00B268E5BA1A35678A1B5316D212F4F366B24772322342423123455A
useAsDigitalSignature: false
scepChallenge:
dynamic:
username: user123
password: Password123!
otpServerUrl: http://auth.com
certificateAttributes:
dnsname: vpn-gateway.example.com
algorithm:
rsa:
rsaNbits: '3072'
# scep profile w/ all fields
scmScepProfile4:
type: scm:ScepProfile
name: scm_scep_profile_4
properties:
folder: All
name: scep-prof-4
scepUrl: https://example.wifi.com/
caIdentityName: wifi
digest: sha512
subject: CN=$WIFI-ACCESS
scepCaCert: Root CA
scepClientCert: Forward-UnTrust-CA-ECDSA
fingerprint: 4448CA00B268E5BU690378A1B5316D212F4F366B2477232234394I
useAsDigitalSignature: true
useForKeyEncipherment: true
scepChallenge:
dynamic:
username: admin
password: Pwd@123
otpServerUrl: http://auth.com
certificateAttributes:
uniformResourceIdentifier: file:///C:/Users/Documents/report.txt
algorithm:
rsa:
rsaNbits: '3072'
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 = "string",
},
},
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 = null,
},
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.String("string"),
},
},
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: &scm.ScepProfileScepChallengeNoneArgs{},
},
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("string")
.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(ScepProfileScepChallengeNoneArgs.builder()
.build())
.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": "string",
},
},
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": {},
},
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: "string",
},
},
caIdentityName: "string",
subject: "string",
scepUrl: "string",
digest: "string",
scepChallenge: {
dynamic: {
otpServerUrl: "string",
password: "string",
username: "string",
},
fixed: "string",
none: {},
},
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: string
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: {}
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
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- Name string
- The name of the SCEP profile
- Scep
Ca stringCert - SCEP Server CA Certificate
- Scep
Client stringCert - SCEP Client Certificate
- Snippet string
The snippet in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- 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
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- Name string
- The name of the SCEP profile
- Scep
Ca stringCert - SCEP Server CA Certificate
- Scep
Client stringCert - SCEP Client Certificate
- Snippet string
The snippet in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- 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
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- name String
- The name of the SCEP profile
- scep
Ca StringCert - SCEP Server CA Certificate
- scep
Client StringCert - SCEP Client Certificate
- snippet String
The snippet in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- 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
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- name string
- The name of the SCEP profile
- scep
Ca stringCert - SCEP Server CA Certificate
- scep
Client stringCert - SCEP Client Certificate
- snippet string
The snippet in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- 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
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- name str
- The name of the SCEP profile
- scep_
ca_ strcert - SCEP Server CA Certificate
- scep_
client_ strcert - SCEP Client Certificate
- snippet str
The snippet in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- 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
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- name String
- The name of the SCEP profile
- scep
Ca StringCert - SCEP Server CA Certificate
- scep
Client StringCert - SCEP Client Certificate
- snippet String
The snippet in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- 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
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- 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 Certificate
- Scep
Url string - SCEP server URL
- Snippet string
The snippet in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- 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
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- 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 Certificate
- Scep
Url string - SCEP server URL
- Snippet string
The snippet in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- 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
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- 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 Certificate
- scep
Url String - SCEP server URL
- snippet String
The snippet in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- 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
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- 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 Certificate
- scep
Url string - SCEP server URL
- snippet string
The snippet in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- 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
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- 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 Certificate
- scep_
url str - SCEP server URL
- snippet str
The snippet in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- 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
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- 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 Certificate
- scep
Url String - SCEP server URL
- snippet String
The snippet in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- 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 string - Rsa nbits
- Rsa
Nbits string - Rsa nbits
- rsa
Nbits String - Rsa nbits
- rsa
Nbits string - Rsa nbits
- rsa_
nbits str - Rsa nbits
- rsa
Nbits String - Rsa nbits
ScepProfileCertificateAttributes, ScepProfileCertificateAttributesArgs
- Dnsname string
- Dnsname
- Rfc822name string
Rfc822name
ℹ️ Note: You must specify exactly one of
dnsname,rfc822name, anduniform_resource_identifier.- Uniform
Resource stringIdentifier Uniform resource identifier
ℹ️ Note: You must specify exactly one of
dnsname,rfc822name, anduniform_resource_identifier.
- Dnsname string
- Dnsname
- Rfc822name string
Rfc822name
ℹ️ Note: You must specify exactly one of
dnsname,rfc822name, anduniform_resource_identifier.- Uniform
Resource stringIdentifier Uniform resource identifier
ℹ️ Note: You must specify exactly one of
dnsname,rfc822name, anduniform_resource_identifier.
- dnsname String
- Dnsname
- rfc822name String
Rfc822name
ℹ️ Note: You must specify exactly one of
dnsname,rfc822name, anduniform_resource_identifier.- uniform
Resource StringIdentifier Uniform resource identifier
ℹ️ Note: You must specify exactly one of
dnsname,rfc822name, anduniform_resource_identifier.
- dnsname string
- Dnsname
- rfc822name string
Rfc822name
ℹ️ Note: You must specify exactly one of
dnsname,rfc822name, anduniform_resource_identifier.- uniform
Resource stringIdentifier Uniform resource identifier
ℹ️ Note: You must specify exactly one of
dnsname,rfc822name, anduniform_resource_identifier.
- dnsname str
- Dnsname
- rfc822name str
Rfc822name
ℹ️ Note: You must specify exactly one of
dnsname,rfc822name, anduniform_resource_identifier.- uniform_
resource_ stridentifier Uniform resource identifier
ℹ️ Note: You must specify exactly one of
dnsname,rfc822name, anduniform_resource_identifier.
- dnsname String
- Dnsname
- rfc822name String
Rfc822name
ℹ️ Note: You must specify exactly one of
dnsname,rfc822name, anduniform_resource_identifier.- uniform
Resource StringIdentifier Uniform resource identifier
ℹ️ Note: You must specify exactly one of
dnsname,rfc822name, anduniform_resource_identifier.
ScepProfileScepChallenge, ScepProfileScepChallengeArgs
- Dynamic
Scep
Profile Scep Challenge Dynamic - Dynamic
- Fixed string
Challenge to use for SCEP server on mobile clients
ℹ️ Note: You must specify exactly one of
dynamic,fixed, andnone.- None
Scep
Profile Scep Challenge None No OTP
ℹ️ Note: You must specify exactly one of
dynamic,fixed, andnone.
- Dynamic
Scep
Profile Scep Challenge Dynamic - Dynamic
- Fixed string
Challenge to use for SCEP server on mobile clients
ℹ️ Note: You must specify exactly one of
dynamic,fixed, andnone.- None
Scep
Profile Scep Challenge None No OTP
ℹ️ Note: You must specify exactly one of
dynamic,fixed, andnone.
- dynamic
Scep
Profile Scep Challenge Dynamic - Dynamic
- fixed String
Challenge to use for SCEP server on mobile clients
ℹ️ Note: You must specify exactly one of
dynamic,fixed, andnone.- none
Scep
Profile Scep Challenge None No OTP
ℹ️ Note: You must specify exactly one of
dynamic,fixed, andnone.
- dynamic
Scep
Profile Scep Challenge Dynamic - Dynamic
- fixed string
Challenge to use for SCEP server on mobile clients
ℹ️ Note: You must specify exactly one of
dynamic,fixed, andnone.- none
Scep
Profile Scep Challenge None No OTP
ℹ️ Note: You must specify exactly one of
dynamic,fixed, andnone.
- dynamic
Scep
Profile Scep Challenge Dynamic - Dynamic
- fixed str
Challenge to use for SCEP server on mobile clients
ℹ️ Note: You must specify exactly one of
dynamic,fixed, andnone.- none
Scep
Profile Scep Challenge None No OTP
ℹ️ Note: You must specify exactly one of
dynamic,fixed, andnone.
- dynamic Property Map
- Dynamic
- fixed String
Challenge to use for SCEP server on mobile clients
ℹ️ Note: You must specify exactly one of
dynamic,fixed, andnone.- none Property Map
No OTP
ℹ️ Note: You must specify exactly one of
dynamic,fixed, andnone.
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
Import
The following command can be used to import a resource not managed by Terraform:
bash
$ pulumi import scm:index/scepProfile:ScepProfile example folder:::id
or
bash
$ pulumi import scm:index/scepProfile:ScepProfile example :snippet::id
or
bash
$ pulumi import scm:index/scepProfile:ScepProfile example ::device:id
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- scm pulumi/pulumi-scm
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
scmTerraform Provider.
