1. Packages
  2. Strata Cloud Manager Provider
  3. API Docs
  4. MfaServer
Strata Cloud Manager v0.4.3 published on Saturday, Nov 8, 2025 by Pulumi
scm logo
Strata Cloud Manager v0.4.3 published on Saturday, Nov 8, 2025 by Pulumi

    MfaServer resource

    Create MfaServer Resource

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

    Constructor syntax

    new MfaServer(name: string, args: MfaServerArgs, opts?: CustomResourceOptions);
    @overload
    def MfaServer(resource_name: str,
                  args: MfaServerArgs,
                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def MfaServer(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  mfa_cert_profile: Optional[str] = None,
                  device: Optional[str] = None,
                  folder: Optional[str] = None,
                  mfa_vendor_type: Optional[MfaServerMfaVendorTypeArgs] = None,
                  name: Optional[str] = None,
                  snippet: Optional[str] = None)
    func NewMfaServer(ctx *Context, name string, args MfaServerArgs, opts ...ResourceOption) (*MfaServer, error)
    public MfaServer(string name, MfaServerArgs args, CustomResourceOptions? opts = null)
    public MfaServer(String name, MfaServerArgs args)
    public MfaServer(String name, MfaServerArgs args, CustomResourceOptions options)
    
    type: scm:MfaServer
    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 MfaServerArgs
    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 MfaServerArgs
    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 MfaServerArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args MfaServerArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args MfaServerArgs
    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 mfaServerResource = new Scm.MfaServer("mfaServerResource", new()
    {
        MfaCertProfile = "string",
        Device = "string",
        Folder = "string",
        MfaVendorType = new Scm.Inputs.MfaServerMfaVendorTypeArgs
        {
            DuoSecurityV2 = new Scm.Inputs.MfaServerMfaVendorTypeDuoSecurityV2Args
            {
                DuoApiHost = "string",
                DuoBaseuri = "string",
                DuoIntegrationKey = "string",
                DuoSecretKey = "string",
                DuoTimeout = 0,
            },
            OktaAdaptiveV1 = new Scm.Inputs.MfaServerMfaVendorTypeOktaAdaptiveV1Args
            {
                OktaApiHost = "string",
                OktaBaseuri = "string",
                OktaOrg = "string",
                OktaTimeout = 0,
                OktaToken = "string",
            },
            PingIdentityV1 = new Scm.Inputs.MfaServerMfaVendorTypePingIdentityV1Args
            {
                PingApiHost = "string",
                PingBaseuri = "string",
                PingTimeout = 0,
                PingToken = "string",
                PingUseBase64Key = "string",
                PingOrgAlias = "string",
            },
            RsaSecuridAccessV1 = new Scm.Inputs.MfaServerMfaVendorTypeRsaSecuridAccessV1Args
            {
                RsaAccessid = "string",
                RsaAccesskey = "string",
                RsaApiHost = "string",
                RsaAssurancepolicyid = "string",
                RsaBaseuri = "string",
                RsaTimeout = 0,
            },
        },
        Name = "string",
        Snippet = "string",
    });
    
    example, err := scm.NewMfaServer(ctx, "mfaServerResource", &scm.MfaServerArgs{
    	MfaCertProfile: pulumi.String("string"),
    	Device:         pulumi.String("string"),
    	Folder:         pulumi.String("string"),
    	MfaVendorType: &scm.MfaServerMfaVendorTypeArgs{
    		DuoSecurityV2: &scm.MfaServerMfaVendorTypeDuoSecurityV2Args{
    			DuoApiHost:        pulumi.String("string"),
    			DuoBaseuri:        pulumi.String("string"),
    			DuoIntegrationKey: pulumi.String("string"),
    			DuoSecretKey:      pulumi.String("string"),
    			DuoTimeout:        pulumi.Int(0),
    		},
    		OktaAdaptiveV1: &scm.MfaServerMfaVendorTypeOktaAdaptiveV1Args{
    			OktaApiHost: pulumi.String("string"),
    			OktaBaseuri: pulumi.String("string"),
    			OktaOrg:     pulumi.String("string"),
    			OktaTimeout: pulumi.Int(0),
    			OktaToken:   pulumi.String("string"),
    		},
    		PingIdentityV1: &scm.MfaServerMfaVendorTypePingIdentityV1Args{
    			PingApiHost:      pulumi.String("string"),
    			PingBaseuri:      pulumi.String("string"),
    			PingTimeout:      pulumi.Int(0),
    			PingToken:        pulumi.String("string"),
    			PingUseBase64Key: pulumi.String("string"),
    			PingOrgAlias:     pulumi.String("string"),
    		},
    		RsaSecuridAccessV1: &scm.MfaServerMfaVendorTypeRsaSecuridAccessV1Args{
    			RsaAccessid:          pulumi.String("string"),
    			RsaAccesskey:         pulumi.String("string"),
    			RsaApiHost:           pulumi.String("string"),
    			RsaAssurancepolicyid: pulumi.String("string"),
    			RsaBaseuri:           pulumi.String("string"),
    			RsaTimeout:           pulumi.Int(0),
    		},
    	},
    	Name:    pulumi.String("string"),
    	Snippet: pulumi.String("string"),
    })
    
    var mfaServerResource = new MfaServer("mfaServerResource", MfaServerArgs.builder()
        .mfaCertProfile("string")
        .device("string")
        .folder("string")
        .mfaVendorType(MfaServerMfaVendorTypeArgs.builder()
            .duoSecurityV2(MfaServerMfaVendorTypeDuoSecurityV2Args.builder()
                .duoApiHost("string")
                .duoBaseuri("string")
                .duoIntegrationKey("string")
                .duoSecretKey("string")
                .duoTimeout(0)
                .build())
            .oktaAdaptiveV1(MfaServerMfaVendorTypeOktaAdaptiveV1Args.builder()
                .oktaApiHost("string")
                .oktaBaseuri("string")
                .oktaOrg("string")
                .oktaTimeout(0)
                .oktaToken("string")
                .build())
            .pingIdentityV1(MfaServerMfaVendorTypePingIdentityV1Args.builder()
                .pingApiHost("string")
                .pingBaseuri("string")
                .pingTimeout(0)
                .pingToken("string")
                .pingUseBase64Key("string")
                .pingOrgAlias("string")
                .build())
            .rsaSecuridAccessV1(MfaServerMfaVendorTypeRsaSecuridAccessV1Args.builder()
                .rsaAccessid("string")
                .rsaAccesskey("string")
                .rsaApiHost("string")
                .rsaAssurancepolicyid("string")
                .rsaBaseuri("string")
                .rsaTimeout(0)
                .build())
            .build())
        .name("string")
        .snippet("string")
        .build());
    
    mfa_server_resource = scm.MfaServer("mfaServerResource",
        mfa_cert_profile="string",
        device="string",
        folder="string",
        mfa_vendor_type={
            "duo_security_v2": {
                "duo_api_host": "string",
                "duo_baseuri": "string",
                "duo_integration_key": "string",
                "duo_secret_key": "string",
                "duo_timeout": 0,
            },
            "okta_adaptive_v1": {
                "okta_api_host": "string",
                "okta_baseuri": "string",
                "okta_org": "string",
                "okta_timeout": 0,
                "okta_token": "string",
            },
            "ping_identity_v1": {
                "ping_api_host": "string",
                "ping_baseuri": "string",
                "ping_timeout": 0,
                "ping_token": "string",
                "ping_use_base64_key": "string",
                "ping_org_alias": "string",
            },
            "rsa_securid_access_v1": {
                "rsa_accessid": "string",
                "rsa_accesskey": "string",
                "rsa_api_host": "string",
                "rsa_assurancepolicyid": "string",
                "rsa_baseuri": "string",
                "rsa_timeout": 0,
            },
        },
        name="string",
        snippet="string")
    
    const mfaServerResource = new scm.MfaServer("mfaServerResource", {
        mfaCertProfile: "string",
        device: "string",
        folder: "string",
        mfaVendorType: {
            duoSecurityV2: {
                duoApiHost: "string",
                duoBaseuri: "string",
                duoIntegrationKey: "string",
                duoSecretKey: "string",
                duoTimeout: 0,
            },
            oktaAdaptiveV1: {
                oktaApiHost: "string",
                oktaBaseuri: "string",
                oktaOrg: "string",
                oktaTimeout: 0,
                oktaToken: "string",
            },
            pingIdentityV1: {
                pingApiHost: "string",
                pingBaseuri: "string",
                pingTimeout: 0,
                pingToken: "string",
                pingUseBase64Key: "string",
                pingOrgAlias: "string",
            },
            rsaSecuridAccessV1: {
                rsaAccessid: "string",
                rsaAccesskey: "string",
                rsaApiHost: "string",
                rsaAssurancepolicyid: "string",
                rsaBaseuri: "string",
                rsaTimeout: 0,
            },
        },
        name: "string",
        snippet: "string",
    });
    
    type: scm:MfaServer
    properties:
        device: string
        folder: string
        mfaCertProfile: string
        mfaVendorType:
            duoSecurityV2:
                duoApiHost: string
                duoBaseuri: string
                duoIntegrationKey: string
                duoSecretKey: string
                duoTimeout: 0
            oktaAdaptiveV1:
                oktaApiHost: string
                oktaBaseuri: string
                oktaOrg: string
                oktaTimeout: 0
                oktaToken: string
            pingIdentityV1:
                pingApiHost: string
                pingBaseuri: string
                pingOrgAlias: string
                pingTimeout: 0
                pingToken: string
                pingUseBase64Key: string
            rsaSecuridAccessV1:
                rsaAccessid: string
                rsaAccesskey: string
                rsaApiHost: string
                rsaAssurancepolicyid: string
                rsaBaseuri: string
                rsaTimeout: 0
        name: string
        snippet: string
    

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

    MfaCertProfile string
    The MFA server certificate profile
    Device string
    The device in which the resource is defined
    Folder string
    The folder in which the resource is defined
    MfaVendorType MfaServerMfaVendorType
    The MFA vendor type
    Name string
    The name of the MFA server profile
    Snippet string
    The snippet in which the resource is defined
    MfaCertProfile string
    The MFA server certificate profile
    Device string
    The device in which the resource is defined
    Folder string
    The folder in which the resource is defined
    MfaVendorType MfaServerMfaVendorTypeArgs
    The MFA vendor type
    Name string
    The name of the MFA server profile
    Snippet string
    The snippet in which the resource is defined
    mfaCertProfile String
    The MFA server certificate profile
    device String
    The device in which the resource is defined
    folder String
    The folder in which the resource is defined
    mfaVendorType MfaServerMfaVendorType
    The MFA vendor type
    name String
    The name of the MFA server profile
    snippet String
    The snippet in which the resource is defined
    mfaCertProfile string
    The MFA server certificate profile
    device string
    The device in which the resource is defined
    folder string
    The folder in which the resource is defined
    mfaVendorType MfaServerMfaVendorType
    The MFA vendor type
    name string
    The name of the MFA server profile
    snippet string
    The snippet in which the resource is defined
    mfa_cert_profile str
    The MFA server certificate profile
    device str
    The device in which the resource is defined
    folder str
    The folder in which the resource is defined
    mfa_vendor_type MfaServerMfaVendorTypeArgs
    The MFA vendor type
    name str
    The name of the MFA server profile
    snippet str
    The snippet in which the resource is defined
    mfaCertProfile String
    The MFA server certificate profile
    device String
    The device in which the resource is defined
    folder String
    The folder in which the resource is defined
    mfaVendorType Property Map
    The MFA vendor type
    name String
    The name of the MFA server profile
    snippet String
    The snippet in which the resource is defined

    Outputs

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

    EncryptedValues Dictionary<string, string>
    Map of sensitive values returned from the API.
    Id string
    The provider-assigned unique ID for this managed resource.
    Tfid string
    EncryptedValues map[string]string
    Map of sensitive values returned from the API.
    Id string
    The provider-assigned unique ID for this managed resource.
    Tfid string
    encryptedValues Map<String,String>
    Map of sensitive values returned from the API.
    id String
    The provider-assigned unique ID for this managed resource.
    tfid String
    encryptedValues {[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
    encryptedValues 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 MfaServer Resource

    Get an existing MfaServer 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?: MfaServerState, opts?: CustomResourceOptions): MfaServer
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            device: Optional[str] = None,
            encrypted_values: Optional[Mapping[str, str]] = None,
            folder: Optional[str] = None,
            mfa_cert_profile: Optional[str] = None,
            mfa_vendor_type: Optional[MfaServerMfaVendorTypeArgs] = None,
            name: Optional[str] = None,
            snippet: Optional[str] = None,
            tfid: Optional[str] = None) -> MfaServer
    func GetMfaServer(ctx *Context, name string, id IDInput, state *MfaServerState, opts ...ResourceOption) (*MfaServer, error)
    public static MfaServer Get(string name, Input<string> id, MfaServerState? state, CustomResourceOptions? opts = null)
    public static MfaServer get(String name, Output<String> id, MfaServerState state, CustomResourceOptions options)
    resources:  _:    type: scm:MfaServer    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Device string
    The device in which the resource is defined
    EncryptedValues Dictionary<string, string>
    Map of sensitive values returned from the API.
    Folder string
    The folder in which the resource is defined
    MfaCertProfile string
    The MFA server certificate profile
    MfaVendorType MfaServerMfaVendorType
    The MFA vendor type
    Name string
    The name of the MFA server profile
    Snippet string
    The snippet in which the resource is defined
    Tfid string
    Device string
    The device in which the resource is defined
    EncryptedValues map[string]string
    Map of sensitive values returned from the API.
    Folder string
    The folder in which the resource is defined
    MfaCertProfile string
    The MFA server certificate profile
    MfaVendorType MfaServerMfaVendorTypeArgs
    The MFA vendor type
    Name string
    The name of the MFA server profile
    Snippet string
    The snippet in which the resource is defined
    Tfid string
    device String
    The device in which the resource is defined
    encryptedValues Map<String,String>
    Map of sensitive values returned from the API.
    folder String
    The folder in which the resource is defined
    mfaCertProfile String
    The MFA server certificate profile
    mfaVendorType MfaServerMfaVendorType
    The MFA vendor type
    name String
    The name of the MFA server profile
    snippet String
    The snippet in which the resource is defined
    tfid String
    device string
    The device in which the resource is defined
    encryptedValues {[key: string]: string}
    Map of sensitive values returned from the API.
    folder string
    The folder in which the resource is defined
    mfaCertProfile string
    The MFA server certificate profile
    mfaVendorType MfaServerMfaVendorType
    The MFA vendor type
    name string
    The name of the MFA server profile
    snippet string
    The snippet in which the resource is defined
    tfid string
    device str
    The device in which the resource is defined
    encrypted_values Mapping[str, str]
    Map of sensitive values returned from the API.
    folder str
    The folder in which the resource is defined
    mfa_cert_profile str
    The MFA server certificate profile
    mfa_vendor_type MfaServerMfaVendorTypeArgs
    The MFA vendor type
    name str
    The name of the MFA server profile
    snippet str
    The snippet in which the resource is defined
    tfid str
    device String
    The device in which the resource is defined
    encryptedValues Map<String>
    Map of sensitive values returned from the API.
    folder String
    The folder in which the resource is defined
    mfaCertProfile String
    The MFA server certificate profile
    mfaVendorType Property Map
    The MFA vendor type
    name String
    The name of the MFA server profile
    snippet String
    The snippet in which the resource is defined
    tfid String

    Supporting Types

    MfaServerMfaVendorType, MfaServerMfaVendorTypeArgs

    MfaServerMfaVendorTypeDuoSecurityV2, MfaServerMfaVendorTypeDuoSecurityV2Args

    DuoApiHost string
    Duo Security API hostname
    DuoBaseuri string
    Duo Security API base URI
    DuoIntegrationKey string
    Duo Security integration key
    DuoSecretKey string
    Duo Security secret key
    DuoTimeout int
    Duo Security timeout (seconds)
    DuoApiHost string
    Duo Security API hostname
    DuoBaseuri string
    Duo Security API base URI
    DuoIntegrationKey string
    Duo Security integration key
    DuoSecretKey string
    Duo Security secret key
    DuoTimeout int
    Duo Security timeout (seconds)
    duoApiHost String
    Duo Security API hostname
    duoBaseuri String
    Duo Security API base URI
    duoIntegrationKey String
    Duo Security integration key
    duoSecretKey String
    Duo Security secret key
    duoTimeout Integer
    Duo Security timeout (seconds)
    duoApiHost string
    Duo Security API hostname
    duoBaseuri string
    Duo Security API base URI
    duoIntegrationKey string
    Duo Security integration key
    duoSecretKey string
    Duo Security secret key
    duoTimeout number
    Duo Security timeout (seconds)
    duo_api_host str
    Duo Security API hostname
    duo_baseuri str
    Duo Security API base URI
    duo_integration_key str
    Duo Security integration key
    duo_secret_key str
    Duo Security secret key
    duo_timeout int
    Duo Security timeout (seconds)
    duoApiHost String
    Duo Security API hostname
    duoBaseuri String
    Duo Security API base URI
    duoIntegrationKey String
    Duo Security integration key
    duoSecretKey String
    Duo Security secret key
    duoTimeout Number
    Duo Security timeout (seconds)

    MfaServerMfaVendorTypeOktaAdaptiveV1, MfaServerMfaVendorTypeOktaAdaptiveV1Args

    OktaApiHost string
    Okta API hostname
    OktaBaseuri string
    Okta baseuri
    OktaOrg string
    Okta organization
    OktaTimeout int
    Okta timeout (seconds)
    OktaToken string
    Okta API token
    OktaApiHost string
    Okta API hostname
    OktaBaseuri string
    Okta baseuri
    OktaOrg string
    Okta organization
    OktaTimeout int
    Okta timeout (seconds)
    OktaToken string
    Okta API token
    oktaApiHost String
    Okta API hostname
    oktaBaseuri String
    Okta baseuri
    oktaOrg String
    Okta organization
    oktaTimeout Integer
    Okta timeout (seconds)
    oktaToken String
    Okta API token
    oktaApiHost string
    Okta API hostname
    oktaBaseuri string
    Okta baseuri
    oktaOrg string
    Okta organization
    oktaTimeout number
    Okta timeout (seconds)
    oktaToken string
    Okta API token
    okta_api_host str
    Okta API hostname
    okta_baseuri str
    Okta baseuri
    okta_org str
    Okta organization
    okta_timeout int
    Okta timeout (seconds)
    okta_token str
    Okta API token
    oktaApiHost String
    Okta API hostname
    oktaBaseuri String
    Okta baseuri
    oktaOrg String
    Okta organization
    oktaTimeout Number
    Okta timeout (seconds)
    oktaToken String
    Okta API token

    MfaServerMfaVendorTypePingIdentityV1, MfaServerMfaVendorTypePingIdentityV1Args

    PingApiHost string
    Ping Identity API hostname
    PingBaseuri string
    Ping Identity API base URI
    PingTimeout int
    Ping Identity timeout (seconds)
    PingToken string
    Ping Identity API token
    PingUseBase64Key string
    Ping Identity Base64 key
    PingOrgAlias string
    Ping Identity client organization ID
    PingApiHost string
    Ping Identity API hostname
    PingBaseuri string
    Ping Identity API base URI
    PingTimeout int
    Ping Identity timeout (seconds)
    PingToken string
    Ping Identity API token
    PingUseBase64Key string
    Ping Identity Base64 key
    PingOrgAlias string
    Ping Identity client organization ID
    pingApiHost String
    Ping Identity API hostname
    pingBaseuri String
    Ping Identity API base URI
    pingTimeout Integer
    Ping Identity timeout (seconds)
    pingToken String
    Ping Identity API token
    pingUseBase64Key String
    Ping Identity Base64 key
    pingOrgAlias String
    Ping Identity client organization ID
    pingApiHost string
    Ping Identity API hostname
    pingBaseuri string
    Ping Identity API base URI
    pingTimeout number
    Ping Identity timeout (seconds)
    pingToken string
    Ping Identity API token
    pingUseBase64Key string
    Ping Identity Base64 key
    pingOrgAlias string
    Ping Identity client organization ID
    ping_api_host str
    Ping Identity API hostname
    ping_baseuri str
    Ping Identity API base URI
    ping_timeout int
    Ping Identity timeout (seconds)
    ping_token str
    Ping Identity API token
    ping_use_base64_key str
    Ping Identity Base64 key
    ping_org_alias str
    Ping Identity client organization ID
    pingApiHost String
    Ping Identity API hostname
    pingBaseuri String
    Ping Identity API base URI
    pingTimeout Number
    Ping Identity timeout (seconds)
    pingToken String
    Ping Identity API token
    pingUseBase64Key String
    Ping Identity Base64 key
    pingOrgAlias String
    Ping Identity client organization ID

    MfaServerMfaVendorTypeRsaSecuridAccessV1, MfaServerMfaVendorTypeRsaSecuridAccessV1Args

    RsaAccessid string
    RSA SecurID access ID
    RsaAccesskey string
    RSA SecurID access key
    RsaApiHost string
    RSA SecurID hostname
    RsaAssurancepolicyid string
    RSA SecurID assurance level
    RsaBaseuri string
    RSA SecurID API base URI
    RsaTimeout int
    RSA SecurID timeout (seconds)
    RsaAccessid string
    RSA SecurID access ID
    RsaAccesskey string
    RSA SecurID access key
    RsaApiHost string
    RSA SecurID hostname
    RsaAssurancepolicyid string
    RSA SecurID assurance level
    RsaBaseuri string
    RSA SecurID API base URI
    RsaTimeout int
    RSA SecurID timeout (seconds)
    rsaAccessid String
    RSA SecurID access ID
    rsaAccesskey String
    RSA SecurID access key
    rsaApiHost String
    RSA SecurID hostname
    rsaAssurancepolicyid String
    RSA SecurID assurance level
    rsaBaseuri String
    RSA SecurID API base URI
    rsaTimeout Integer
    RSA SecurID timeout (seconds)
    rsaAccessid string
    RSA SecurID access ID
    rsaAccesskey string
    RSA SecurID access key
    rsaApiHost string
    RSA SecurID hostname
    rsaAssurancepolicyid string
    RSA SecurID assurance level
    rsaBaseuri string
    RSA SecurID API base URI
    rsaTimeout number
    RSA SecurID timeout (seconds)
    rsa_accessid str
    RSA SecurID access ID
    rsa_accesskey str
    RSA SecurID access key
    rsa_api_host str
    RSA SecurID hostname
    rsa_assurancepolicyid str
    RSA SecurID assurance level
    rsa_baseuri str
    RSA SecurID API base URI
    rsa_timeout int
    RSA SecurID timeout (seconds)
    rsaAccessid String
    RSA SecurID access ID
    rsaAccesskey String
    RSA SecurID access key
    rsaApiHost String
    RSA SecurID hostname
    rsaAssurancepolicyid String
    RSA SecurID assurance level
    rsaBaseuri String
    RSA SecurID API base URI
    rsaTimeout Number
    RSA SecurID timeout (seconds)

    Package Details

    Repository
    scm pulumi/pulumi-scm
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the scm Terraform Provider.
    scm logo
    Strata Cloud Manager v0.4.3 published on Saturday, Nov 8, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate