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:
- Mfa
Cert stringProfile - 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
- Mfa
Vendor MfaType Server Mfa Vendor Type - 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 stringProfile - 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
- Mfa
Vendor MfaType Server Mfa Vendor Type Args - 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 StringProfile - 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
- mfa
Vendor MfaType Server Mfa Vendor Type - 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 stringProfile - 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
- mfa
Vendor MfaType Server Mfa Vendor Type - 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_ strprofile - 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_ Mfatype Server Mfa Vendor Type Args - The MFA vendor type
- name str
- The name of the MFA server profile
- snippet str
- The snippet in which the resource is defined
- mfa
Cert StringProfile - 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
- mfa
Vendor Property MapType - 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:
- 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 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) -> MfaServerfunc 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.
- Device string
- The device in which the resource is defined
- Encrypted
Values Dictionary<string, string> - Map of sensitive values returned from the API.
- Folder string
- The folder in which the resource is defined
- Mfa
Cert stringProfile - The MFA server certificate profile
- Mfa
Vendor MfaType Server Mfa Vendor Type - 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
- Encrypted
Values map[string]string - Map of sensitive values returned from the API.
- Folder string
- The folder in which the resource is defined
- Mfa
Cert stringProfile - The MFA server certificate profile
- Mfa
Vendor MfaType Server Mfa Vendor Type Args - 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
- encrypted
Values Map<String,String> - Map of sensitive values returned from the API.
- folder String
- The folder in which the resource is defined
- mfa
Cert StringProfile - The MFA server certificate profile
- mfa
Vendor MfaType Server Mfa Vendor Type - 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
- encrypted
Values {[key: string]: string} - Map of sensitive values returned from the API.
- folder string
- The folder in which the resource is defined
- mfa
Cert stringProfile - The MFA server certificate profile
- mfa
Vendor MfaType Server Mfa Vendor Type - 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_ strprofile - The MFA server certificate profile
- mfa_
vendor_ Mfatype Server Mfa Vendor Type Args - 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
- encrypted
Values Map<String> - Map of sensitive values returned from the API.
- folder String
- The folder in which the resource is defined
- mfa
Cert StringProfile - The MFA server certificate profile
- mfa
Vendor Property MapType - 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
- Duo
Security MfaV2 Server Mfa Vendor Type Duo Security V2 - Integration with Duo Security
- Okta
Adaptive MfaV1 Server Mfa Vendor Type Okta Adaptive V1 - Integration with Okta Adaptive MFA
- Ping
Identity MfaV1 Server Mfa Vendor Type Ping Identity V1 - Integation with Ping Identity
- Rsa
Securid MfaAccess V1 Server Mfa Vendor Type Rsa Securid Access V1 - Integration with RSA SecurID
- Duo
Security MfaV2 Server Mfa Vendor Type Duo Security V2 - Integration with Duo Security
- Okta
Adaptive MfaV1 Server Mfa Vendor Type Okta Adaptive V1 - Integration with Okta Adaptive MFA
- Ping
Identity MfaV1 Server Mfa Vendor Type Ping Identity V1 - Integation with Ping Identity
- Rsa
Securid MfaAccess V1 Server Mfa Vendor Type Rsa Securid Access V1 - Integration with RSA SecurID
- duo
Security MfaV2 Server Mfa Vendor Type Duo Security V2 - Integration with Duo Security
- okta
Adaptive MfaV1 Server Mfa Vendor Type Okta Adaptive V1 - Integration with Okta Adaptive MFA
- ping
Identity MfaV1 Server Mfa Vendor Type Ping Identity V1 - Integation with Ping Identity
- rsa
Securid MfaAccess V1 Server Mfa Vendor Type Rsa Securid Access V1 - Integration with RSA SecurID
- duo
Security MfaV2 Server Mfa Vendor Type Duo Security V2 - Integration with Duo Security
- okta
Adaptive MfaV1 Server Mfa Vendor Type Okta Adaptive V1 - Integration with Okta Adaptive MFA
- ping
Identity MfaV1 Server Mfa Vendor Type Ping Identity V1 - Integation with Ping Identity
- rsa
Securid MfaAccess V1 Server Mfa Vendor Type Rsa Securid Access V1 - Integration with RSA SecurID
- duo_
security_ Mfav2 Server Mfa Vendor Type Duo Security V2 - Integration with Duo Security
- okta_
adaptive_ Mfav1 Server Mfa Vendor Type Okta Adaptive V1 - Integration with Okta Adaptive MFA
- ping_
identity_ Mfav1 Server Mfa Vendor Type Ping Identity V1 - Integation with Ping Identity
- rsa_
securid_ Mfaaccess_ v1 Server Mfa Vendor Type Rsa Securid Access V1 - Integration with RSA SecurID
- duo
Security Property MapV2 - Integration with Duo Security
- okta
Adaptive Property MapV1 - Integration with Okta Adaptive MFA
- ping
Identity Property MapV1 - Integation with Ping Identity
- rsa
Securid Property MapAccess V1 - Integration with RSA SecurID
MfaServerMfaVendorTypeDuoSecurityV2, MfaServerMfaVendorTypeDuoSecurityV2Args
- Duo
Api stringHost - Duo Security API hostname
- Duo
Baseuri string - Duo Security API base URI
- Duo
Integration stringKey - Duo Security integration key
- Duo
Secret stringKey - Duo Security secret key
- Duo
Timeout int - Duo Security timeout (seconds)
- Duo
Api stringHost - Duo Security API hostname
- Duo
Baseuri string - Duo Security API base URI
- Duo
Integration stringKey - Duo Security integration key
- Duo
Secret stringKey - Duo Security secret key
- Duo
Timeout int - Duo Security timeout (seconds)
- duo
Api StringHost - Duo Security API hostname
- duo
Baseuri String - Duo Security API base URI
- duo
Integration StringKey - Duo Security integration key
- duo
Secret StringKey - Duo Security secret key
- duo
Timeout Integer - Duo Security timeout (seconds)
- duo
Api stringHost - Duo Security API hostname
- duo
Baseuri string - Duo Security API base URI
- duo
Integration stringKey - Duo Security integration key
- duo
Secret stringKey - Duo Security secret key
- duo
Timeout number - Duo Security timeout (seconds)
- duo_
api_ strhost - Duo Security API hostname
- duo_
baseuri str - Duo Security API base URI
- duo_
integration_ strkey - Duo Security integration key
- duo_
secret_ strkey - Duo Security secret key
- duo_
timeout int - Duo Security timeout (seconds)
- duo
Api StringHost - Duo Security API hostname
- duo
Baseuri String - Duo Security API base URI
- duo
Integration StringKey - Duo Security integration key
- duo
Secret StringKey - Duo Security secret key
- duo
Timeout Number - Duo Security timeout (seconds)
MfaServerMfaVendorTypeOktaAdaptiveV1, MfaServerMfaVendorTypeOktaAdaptiveV1Args
- Okta
Api stringHost - Okta API hostname
- Okta
Baseuri string - Okta baseuri
- Okta
Org string - Okta organization
- Okta
Timeout int - Okta timeout (seconds)
- Okta
Token string - Okta API token
- Okta
Api stringHost - Okta API hostname
- Okta
Baseuri string - Okta baseuri
- Okta
Org string - Okta organization
- Okta
Timeout int - Okta timeout (seconds)
- Okta
Token string - Okta API token
- okta
Api StringHost - Okta API hostname
- okta
Baseuri String - Okta baseuri
- okta
Org String - Okta organization
- okta
Timeout Integer - Okta timeout (seconds)
- okta
Token String - Okta API token
- okta
Api stringHost - Okta API hostname
- okta
Baseuri string - Okta baseuri
- okta
Org string - Okta organization
- okta
Timeout number - Okta timeout (seconds)
- okta
Token string - Okta API token
- okta_
api_ strhost - 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
- okta
Api StringHost - Okta API hostname
- okta
Baseuri String - Okta baseuri
- okta
Org String - Okta organization
- okta
Timeout Number - Okta timeout (seconds)
- okta
Token String - Okta API token
MfaServerMfaVendorTypePingIdentityV1, MfaServerMfaVendorTypePingIdentityV1Args
- Ping
Api stringHost - Ping Identity API hostname
- Ping
Baseuri string - Ping Identity API base URI
- Ping
Timeout int - Ping Identity timeout (seconds)
- Ping
Token string - Ping Identity API token
- Ping
Use stringBase64Key - Ping Identity Base64 key
- Ping
Org stringAlias - Ping Identity client organization ID
- Ping
Api stringHost - Ping Identity API hostname
- Ping
Baseuri string - Ping Identity API base URI
- Ping
Timeout int - Ping Identity timeout (seconds)
- Ping
Token string - Ping Identity API token
- Ping
Use stringBase64Key - Ping Identity Base64 key
- Ping
Org stringAlias - Ping Identity client organization ID
- ping
Api StringHost - Ping Identity API hostname
- ping
Baseuri String - Ping Identity API base URI
- ping
Timeout Integer - Ping Identity timeout (seconds)
- ping
Token String - Ping Identity API token
- ping
Use StringBase64Key - Ping Identity Base64 key
- ping
Org StringAlias - Ping Identity client organization ID
- ping
Api stringHost - Ping Identity API hostname
- ping
Baseuri string - Ping Identity API base URI
- ping
Timeout number - Ping Identity timeout (seconds)
- ping
Token string - Ping Identity API token
- ping
Use stringBase64Key - Ping Identity Base64 key
- ping
Org stringAlias - Ping Identity client organization ID
- ping_
api_ strhost - 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_ strbase64_ key - Ping Identity Base64 key
- ping_
org_ stralias - Ping Identity client organization ID
- ping
Api StringHost - Ping Identity API hostname
- ping
Baseuri String - Ping Identity API base URI
- ping
Timeout Number - Ping Identity timeout (seconds)
- ping
Token String - Ping Identity API token
- ping
Use StringBase64Key - Ping Identity Base64 key
- ping
Org StringAlias - Ping Identity client organization ID
MfaServerMfaVendorTypeRsaSecuridAccessV1, MfaServerMfaVendorTypeRsaSecuridAccessV1Args
- Rsa
Accessid string - RSA SecurID access ID
- Rsa
Accesskey string - RSA SecurID access key
- Rsa
Api stringHost - RSA SecurID hostname
- Rsa
Assurancepolicyid string - RSA SecurID assurance level
- Rsa
Baseuri string - RSA SecurID API base URI
- Rsa
Timeout int - RSA SecurID timeout (seconds)
- Rsa
Accessid string - RSA SecurID access ID
- Rsa
Accesskey string - RSA SecurID access key
- Rsa
Api stringHost - RSA SecurID hostname
- Rsa
Assurancepolicyid string - RSA SecurID assurance level
- Rsa
Baseuri string - RSA SecurID API base URI
- Rsa
Timeout int - RSA SecurID timeout (seconds)
- rsa
Accessid String - RSA SecurID access ID
- rsa
Accesskey String - RSA SecurID access key
- rsa
Api StringHost - RSA SecurID hostname
- rsa
Assurancepolicyid String - RSA SecurID assurance level
- rsa
Baseuri String - RSA SecurID API base URI
- rsa
Timeout Integer - RSA SecurID timeout (seconds)
- rsa
Accessid string - RSA SecurID access ID
- rsa
Accesskey string - RSA SecurID access key
- rsa
Api stringHost - RSA SecurID hostname
- rsa
Assurancepolicyid string - RSA SecurID assurance level
- rsa
Baseuri string - RSA SecurID API base URI
- rsa
Timeout number - RSA SecurID timeout (seconds)
- rsa_
accessid str - RSA SecurID access ID
- rsa_
accesskey str - RSA SecurID access key
- rsa_
api_ strhost - 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)
- rsa
Accessid String - RSA SecurID access ID
- rsa
Accesskey String - RSA SecurID access key
- rsa
Api StringHost - RSA SecurID hostname
- rsa
Assurancepolicyid String - RSA SecurID assurance level
- rsa
Baseuri String - RSA SecurID API base URI
- rsa
Timeout Number - RSA SecurID timeout (seconds)
Package Details
- Repository
- scm pulumi/pulumi-scm
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
scmTerraform Provider.
