AuthenticationProfile resource
Create AuthenticationProfile Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AuthenticationProfile(name: string, args?: AuthenticationProfileArgs, opts?: CustomResourceOptions);@overload
def AuthenticationProfile(resource_name: str,
args: Optional[AuthenticationProfileArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def AuthenticationProfile(resource_name: str,
opts: Optional[ResourceOptions] = None,
allow_lists: Optional[Sequence[str]] = None,
device: Optional[str] = None,
folder: Optional[str] = None,
lockout: Optional[AuthenticationProfileLockoutArgs] = None,
method: Optional[AuthenticationProfileMethodArgs] = None,
multi_factor_auth: Optional[AuthenticationProfileMultiFactorAuthArgs] = None,
name: Optional[str] = None,
single_sign_on: Optional[AuthenticationProfileSingleSignOnArgs] = None,
snippet: Optional[str] = None,
user_domain: Optional[str] = None,
username_modifier: Optional[str] = None)func NewAuthenticationProfile(ctx *Context, name string, args *AuthenticationProfileArgs, opts ...ResourceOption) (*AuthenticationProfile, error)public AuthenticationProfile(string name, AuthenticationProfileArgs? args = null, CustomResourceOptions? opts = null)
public AuthenticationProfile(String name, AuthenticationProfileArgs args)
public AuthenticationProfile(String name, AuthenticationProfileArgs args, CustomResourceOptions options)
type: scm:AuthenticationProfile
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 AuthenticationProfileArgs
- 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 AuthenticationProfileArgs
- 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 AuthenticationProfileArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AuthenticationProfileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AuthenticationProfileArgs
- 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 authenticationProfileResource = new Scm.AuthenticationProfile("authenticationProfileResource", new()
{
AllowLists = new[]
{
"string",
},
Device = "string",
Folder = "string",
Lockout = new Scm.Inputs.AuthenticationProfileLockoutArgs
{
FailedAttempts = 0,
LockoutTime = 0,
},
Method = new Scm.Inputs.AuthenticationProfileMethodArgs
{
Cloud = new Scm.Inputs.AuthenticationProfileMethodCloudArgs
{
ProfileName = "string",
},
Kerberos = new Scm.Inputs.AuthenticationProfileMethodKerberosArgs
{
Realm = "string",
ServerProfile = "string",
},
Ldap = new Scm.Inputs.AuthenticationProfileMethodLdapArgs
{
LoginAttribute = "string",
PasswdExpDays = 0,
ServerProfile = "string",
},
LocalDatabase = null,
Radius = new Scm.Inputs.AuthenticationProfileMethodRadiusArgs
{
Checkgroup = false,
ServerProfile = "string",
},
SamlIdp = new Scm.Inputs.AuthenticationProfileMethodSamlIdpArgs
{
AttributeNameUsergroup = "string",
AttributeNameUsername = "string",
CertificateProfile = "string",
EnableSingleLogout = false,
RequestSigningCertificate = "string",
ServerProfile = "string",
},
Tacplus = new Scm.Inputs.AuthenticationProfileMethodTacplusArgs
{
Checkgroup = false,
ServerProfile = "string",
},
},
MultiFactorAuth = new Scm.Inputs.AuthenticationProfileMultiFactorAuthArgs
{
Factors = new[]
{
"string",
},
MfaEnable = false,
},
Name = "string",
SingleSignOn = new Scm.Inputs.AuthenticationProfileSingleSignOnArgs
{
KerberosKeytab = "string",
Realm = "string",
},
Snippet = "string",
UserDomain = "string",
UsernameModifier = "string",
});
example, err := scm.NewAuthenticationProfile(ctx, "authenticationProfileResource", &scm.AuthenticationProfileArgs{
AllowLists: pulumi.StringArray{
pulumi.String("string"),
},
Device: pulumi.String("string"),
Folder: pulumi.String("string"),
Lockout: &scm.AuthenticationProfileLockoutArgs{
FailedAttempts: pulumi.Int(0),
LockoutTime: pulumi.Int(0),
},
Method: &scm.AuthenticationProfileMethodArgs{
Cloud: &scm.AuthenticationProfileMethodCloudArgs{
ProfileName: pulumi.String("string"),
},
Kerberos: &scm.AuthenticationProfileMethodKerberosArgs{
Realm: pulumi.String("string"),
ServerProfile: pulumi.String("string"),
},
Ldap: &scm.AuthenticationProfileMethodLdapArgs{
LoginAttribute: pulumi.String("string"),
PasswdExpDays: pulumi.Int(0),
ServerProfile: pulumi.String("string"),
},
LocalDatabase: &scm.AuthenticationProfileMethodLocalDatabaseArgs{},
Radius: &scm.AuthenticationProfileMethodRadiusArgs{
Checkgroup: pulumi.Bool(false),
ServerProfile: pulumi.String("string"),
},
SamlIdp: &scm.AuthenticationProfileMethodSamlIdpArgs{
AttributeNameUsergroup: pulumi.String("string"),
AttributeNameUsername: pulumi.String("string"),
CertificateProfile: pulumi.String("string"),
EnableSingleLogout: pulumi.Bool(false),
RequestSigningCertificate: pulumi.String("string"),
ServerProfile: pulumi.String("string"),
},
Tacplus: &scm.AuthenticationProfileMethodTacplusArgs{
Checkgroup: pulumi.Bool(false),
ServerProfile: pulumi.String("string"),
},
},
MultiFactorAuth: &scm.AuthenticationProfileMultiFactorAuthArgs{
Factors: pulumi.StringArray{
pulumi.String("string"),
},
MfaEnable: pulumi.Bool(false),
},
Name: pulumi.String("string"),
SingleSignOn: &scm.AuthenticationProfileSingleSignOnArgs{
KerberosKeytab: pulumi.String("string"),
Realm: pulumi.String("string"),
},
Snippet: pulumi.String("string"),
UserDomain: pulumi.String("string"),
UsernameModifier: pulumi.String("string"),
})
var authenticationProfileResource = new AuthenticationProfile("authenticationProfileResource", AuthenticationProfileArgs.builder()
.allowLists("string")
.device("string")
.folder("string")
.lockout(AuthenticationProfileLockoutArgs.builder()
.failedAttempts(0)
.lockoutTime(0)
.build())
.method(AuthenticationProfileMethodArgs.builder()
.cloud(AuthenticationProfileMethodCloudArgs.builder()
.profileName("string")
.build())
.kerberos(AuthenticationProfileMethodKerberosArgs.builder()
.realm("string")
.serverProfile("string")
.build())
.ldap(AuthenticationProfileMethodLdapArgs.builder()
.loginAttribute("string")
.passwdExpDays(0)
.serverProfile("string")
.build())
.localDatabase(AuthenticationProfileMethodLocalDatabaseArgs.builder()
.build())
.radius(AuthenticationProfileMethodRadiusArgs.builder()
.checkgroup(false)
.serverProfile("string")
.build())
.samlIdp(AuthenticationProfileMethodSamlIdpArgs.builder()
.attributeNameUsergroup("string")
.attributeNameUsername("string")
.certificateProfile("string")
.enableSingleLogout(false)
.requestSigningCertificate("string")
.serverProfile("string")
.build())
.tacplus(AuthenticationProfileMethodTacplusArgs.builder()
.checkgroup(false)
.serverProfile("string")
.build())
.build())
.multiFactorAuth(AuthenticationProfileMultiFactorAuthArgs.builder()
.factors("string")
.mfaEnable(false)
.build())
.name("string")
.singleSignOn(AuthenticationProfileSingleSignOnArgs.builder()
.kerberosKeytab("string")
.realm("string")
.build())
.snippet("string")
.userDomain("string")
.usernameModifier("string")
.build());
authentication_profile_resource = scm.AuthenticationProfile("authenticationProfileResource",
allow_lists=["string"],
device="string",
folder="string",
lockout={
"failed_attempts": 0,
"lockout_time": 0,
},
method={
"cloud": {
"profile_name": "string",
},
"kerberos": {
"realm": "string",
"server_profile": "string",
},
"ldap": {
"login_attribute": "string",
"passwd_exp_days": 0,
"server_profile": "string",
},
"local_database": {},
"radius": {
"checkgroup": False,
"server_profile": "string",
},
"saml_idp": {
"attribute_name_usergroup": "string",
"attribute_name_username": "string",
"certificate_profile": "string",
"enable_single_logout": False,
"request_signing_certificate": "string",
"server_profile": "string",
},
"tacplus": {
"checkgroup": False,
"server_profile": "string",
},
},
multi_factor_auth={
"factors": ["string"],
"mfa_enable": False,
},
name="string",
single_sign_on={
"kerberos_keytab": "string",
"realm": "string",
},
snippet="string",
user_domain="string",
username_modifier="string")
const authenticationProfileResource = new scm.AuthenticationProfile("authenticationProfileResource", {
allowLists: ["string"],
device: "string",
folder: "string",
lockout: {
failedAttempts: 0,
lockoutTime: 0,
},
method: {
cloud: {
profileName: "string",
},
kerberos: {
realm: "string",
serverProfile: "string",
},
ldap: {
loginAttribute: "string",
passwdExpDays: 0,
serverProfile: "string",
},
localDatabase: {},
radius: {
checkgroup: false,
serverProfile: "string",
},
samlIdp: {
attributeNameUsergroup: "string",
attributeNameUsername: "string",
certificateProfile: "string",
enableSingleLogout: false,
requestSigningCertificate: "string",
serverProfile: "string",
},
tacplus: {
checkgroup: false,
serverProfile: "string",
},
},
multiFactorAuth: {
factors: ["string"],
mfaEnable: false,
},
name: "string",
singleSignOn: {
kerberosKeytab: "string",
realm: "string",
},
snippet: "string",
userDomain: "string",
usernameModifier: "string",
});
type: scm:AuthenticationProfile
properties:
allowLists:
- string
device: string
folder: string
lockout:
failedAttempts: 0
lockoutTime: 0
method:
cloud:
profileName: string
kerberos:
realm: string
serverProfile: string
ldap:
loginAttribute: string
passwdExpDays: 0
serverProfile: string
localDatabase: {}
radius:
checkgroup: false
serverProfile: string
samlIdp:
attributeNameUsergroup: string
attributeNameUsername: string
certificateProfile: string
enableSingleLogout: false
requestSigningCertificate: string
serverProfile: string
tacplus:
checkgroup: false
serverProfile: string
multiFactorAuth:
factors:
- string
mfaEnable: false
name: string
singleSignOn:
kerberosKeytab: string
realm: string
snippet: string
userDomain: string
usernameModifier: string
AuthenticationProfile 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 AuthenticationProfile resource accepts the following input properties:
- Allow
Lists List<string> - Allow list
- Device string
- The device in which the resource is defined
- Folder string
- The folder in which the resource is defined
- Lockout
Authentication
Profile Lockout - Lockout
- Method
Authentication
Profile Method - Method
- Multi
Factor AuthenticationAuth Profile Multi Factor Auth - Multi factor auth
- Name string
- The name of the authentication profile
- Single
Sign AuthenticationOn Profile Single Sign On - Single sign on
- Snippet string
- The snippet in which the resource is defined
- User
Domain string - User domain
- Username
Modifier string - Username modifier
- Allow
Lists []string - Allow list
- Device string
- The device in which the resource is defined
- Folder string
- The folder in which the resource is defined
- Lockout
Authentication
Profile Lockout Args - Lockout
- Method
Authentication
Profile Method Args - Method
- Multi
Factor AuthenticationAuth Profile Multi Factor Auth Args - Multi factor auth
- Name string
- The name of the authentication profile
- Single
Sign AuthenticationOn Profile Single Sign On Args - Single sign on
- Snippet string
- The snippet in which the resource is defined
- User
Domain string - User domain
- Username
Modifier string - Username modifier
- allow
Lists List<String> - Allow list
- device String
- The device in which the resource is defined
- folder String
- The folder in which the resource is defined
- lockout
Authentication
Profile Lockout - Lockout
- method
Authentication
Profile Method - Method
- multi
Factor AuthenticationAuth Profile Multi Factor Auth - Multi factor auth
- name String
- The name of the authentication profile
- single
Sign AuthenticationOn Profile Single Sign On - Single sign on
- snippet String
- The snippet in which the resource is defined
- user
Domain String - User domain
- username
Modifier String - Username modifier
- allow
Lists string[] - Allow list
- device string
- The device in which the resource is defined
- folder string
- The folder in which the resource is defined
- lockout
Authentication
Profile Lockout - Lockout
- method
Authentication
Profile Method - Method
- multi
Factor AuthenticationAuth Profile Multi Factor Auth - Multi factor auth
- name string
- The name of the authentication profile
- single
Sign AuthenticationOn Profile Single Sign On - Single sign on
- snippet string
- The snippet in which the resource is defined
- user
Domain string - User domain
- username
Modifier string - Username modifier
- allow_
lists Sequence[str] - Allow list
- device str
- The device in which the resource is defined
- folder str
- The folder in which the resource is defined
- lockout
Authentication
Profile Lockout Args - Lockout
- method
Authentication
Profile Method Args - Method
- multi_
factor_ Authenticationauth Profile Multi Factor Auth Args - Multi factor auth
- name str
- The name of the authentication profile
- single_
sign_ Authenticationon Profile Single Sign On Args - Single sign on
- snippet str
- The snippet in which the resource is defined
- user_
domain str - User domain
- username_
modifier str - Username modifier
- allow
Lists List<String> - Allow list
- device String
- The device in which the resource is defined
- folder String
- The folder in which the resource is defined
- lockout Property Map
- Lockout
- method Property Map
- Method
- multi
Factor Property MapAuth - Multi factor auth
- name String
- The name of the authentication profile
- single
Sign Property MapOn - Single sign on
- snippet String
- The snippet in which the resource is defined
- user
Domain String - User domain
- username
Modifier String - Username modifier
Outputs
All input properties are implicitly available as output properties. Additionally, the AuthenticationProfile resource produces the following output properties:
Look up Existing AuthenticationProfile Resource
Get an existing AuthenticationProfile 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?: AuthenticationProfileState, opts?: CustomResourceOptions): AuthenticationProfile@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
allow_lists: Optional[Sequence[str]] = None,
device: Optional[str] = None,
folder: Optional[str] = None,
lockout: Optional[AuthenticationProfileLockoutArgs] = None,
method: Optional[AuthenticationProfileMethodArgs] = None,
multi_factor_auth: Optional[AuthenticationProfileMultiFactorAuthArgs] = None,
name: Optional[str] = None,
single_sign_on: Optional[AuthenticationProfileSingleSignOnArgs] = None,
snippet: Optional[str] = None,
tfid: Optional[str] = None,
user_domain: Optional[str] = None,
username_modifier: Optional[str] = None) -> AuthenticationProfilefunc GetAuthenticationProfile(ctx *Context, name string, id IDInput, state *AuthenticationProfileState, opts ...ResourceOption) (*AuthenticationProfile, error)public static AuthenticationProfile Get(string name, Input<string> id, AuthenticationProfileState? state, CustomResourceOptions? opts = null)public static AuthenticationProfile get(String name, Output<String> id, AuthenticationProfileState state, CustomResourceOptions options)resources: _: type: scm:AuthenticationProfile 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.
- Allow
Lists List<string> - Allow list
- Device string
- The device in which the resource is defined
- Folder string
- The folder in which the resource is defined
- Lockout
Authentication
Profile Lockout - Lockout
- Method
Authentication
Profile Method - Method
- Multi
Factor AuthenticationAuth Profile Multi Factor Auth - Multi factor auth
- Name string
- The name of the authentication profile
- Single
Sign AuthenticationOn Profile Single Sign On - Single sign on
- Snippet string
- The snippet in which the resource is defined
- Tfid string
- User
Domain string - User domain
- Username
Modifier string - Username modifier
- Allow
Lists []string - Allow list
- Device string
- The device in which the resource is defined
- Folder string
- The folder in which the resource is defined
- Lockout
Authentication
Profile Lockout Args - Lockout
- Method
Authentication
Profile Method Args - Method
- Multi
Factor AuthenticationAuth Profile Multi Factor Auth Args - Multi factor auth
- Name string
- The name of the authentication profile
- Single
Sign AuthenticationOn Profile Single Sign On Args - Single sign on
- Snippet string
- The snippet in which the resource is defined
- Tfid string
- User
Domain string - User domain
- Username
Modifier string - Username modifier
- allow
Lists List<String> - Allow list
- device String
- The device in which the resource is defined
- folder String
- The folder in which the resource is defined
- lockout
Authentication
Profile Lockout - Lockout
- method
Authentication
Profile Method - Method
- multi
Factor AuthenticationAuth Profile Multi Factor Auth - Multi factor auth
- name String
- The name of the authentication profile
- single
Sign AuthenticationOn Profile Single Sign On - Single sign on
- snippet String
- The snippet in which the resource is defined
- tfid String
- user
Domain String - User domain
- username
Modifier String - Username modifier
- allow
Lists string[] - Allow list
- device string
- The device in which the resource is defined
- folder string
- The folder in which the resource is defined
- lockout
Authentication
Profile Lockout - Lockout
- method
Authentication
Profile Method - Method
- multi
Factor AuthenticationAuth Profile Multi Factor Auth - Multi factor auth
- name string
- The name of the authentication profile
- single
Sign AuthenticationOn Profile Single Sign On - Single sign on
- snippet string
- The snippet in which the resource is defined
- tfid string
- user
Domain string - User domain
- username
Modifier string - Username modifier
- allow_
lists Sequence[str] - Allow list
- device str
- The device in which the resource is defined
- folder str
- The folder in which the resource is defined
- lockout
Authentication
Profile Lockout Args - Lockout
- method
Authentication
Profile Method Args - Method
- multi_
factor_ Authenticationauth Profile Multi Factor Auth Args - Multi factor auth
- name str
- The name of the authentication profile
- single_
sign_ Authenticationon Profile Single Sign On Args - Single sign on
- snippet str
- The snippet in which the resource is defined
- tfid str
- user_
domain str - User domain
- username_
modifier str - Username modifier
- allow
Lists List<String> - Allow list
- device String
- The device in which the resource is defined
- folder String
- The folder in which the resource is defined
- lockout Property Map
- Lockout
- method Property Map
- Method
- multi
Factor Property MapAuth - Multi factor auth
- name String
- The name of the authentication profile
- single
Sign Property MapOn - Single sign on
- snippet String
- The snippet in which the resource is defined
- tfid String
- user
Domain String - User domain
- username
Modifier String - Username modifier
Supporting Types
AuthenticationProfileLockout, AuthenticationProfileLockoutArgs
- Failed
Attempts int - Failed attempts
- Lockout
Time int - Lockout time
- Failed
Attempts int - Failed attempts
- Lockout
Time int - Lockout time
- failed
Attempts Integer - Failed attempts
- lockout
Time Integer - Lockout time
- failed
Attempts number - Failed attempts
- lockout
Time number - Lockout time
- failed_
attempts int - Failed attempts
- lockout_
time int - Lockout time
- failed
Attempts Number - Failed attempts
- lockout
Time Number - Lockout time
AuthenticationProfileMethod, AuthenticationProfileMethodArgs
- Cloud
Authentication
Profile Method Cloud - Cloud
- Kerberos
Authentication
Profile Method Kerberos - Kerberos
- Ldap
Authentication
Profile Method Ldap - Ldap
- Local
Database AuthenticationProfile Method Local Database - Local database
- Radius
Authentication
Profile Method Radius - Radius
- Saml
Idp AuthenticationProfile Method Saml Idp - Saml idp
- Tacplus
Authentication
Profile Method Tacplus - Tacplus
- Cloud
Authentication
Profile Method Cloud - Cloud
- Kerberos
Authentication
Profile Method Kerberos - Kerberos
- Ldap
Authentication
Profile Method Ldap - Ldap
- Local
Database AuthenticationProfile Method Local Database - Local database
- Radius
Authentication
Profile Method Radius - Radius
- Saml
Idp AuthenticationProfile Method Saml Idp - Saml idp
- Tacplus
Authentication
Profile Method Tacplus - Tacplus
- cloud
Authentication
Profile Method Cloud - Cloud
- kerberos
Authentication
Profile Method Kerberos - Kerberos
- ldap
Authentication
Profile Method Ldap - Ldap
- local
Database AuthenticationProfile Method Local Database - Local database
- radius
Authentication
Profile Method Radius - Radius
- saml
Idp AuthenticationProfile Method Saml Idp - Saml idp
- tacplus
Authentication
Profile Method Tacplus - Tacplus
- cloud
Authentication
Profile Method Cloud - Cloud
- kerberos
Authentication
Profile Method Kerberos - Kerberos
- ldap
Authentication
Profile Method Ldap - Ldap
- local
Database AuthenticationProfile Method Local Database - Local database
- radius
Authentication
Profile Method Radius - Radius
- saml
Idp AuthenticationProfile Method Saml Idp - Saml idp
- tacplus
Authentication
Profile Method Tacplus - Tacplus
- cloud
Authentication
Profile Method Cloud - Cloud
- kerberos
Authentication
Profile Method Kerberos - Kerberos
- ldap
Authentication
Profile Method Ldap - Ldap
- local_
database AuthenticationProfile Method Local Database - Local database
- radius
Authentication
Profile Method Radius - Radius
- saml_
idp AuthenticationProfile Method Saml Idp - Saml idp
- tacplus
Authentication
Profile Method Tacplus - Tacplus
- cloud Property Map
- Cloud
- kerberos Property Map
- Kerberos
- ldap Property Map
- Ldap
- local
Database Property Map - Local database
- radius Property Map
- Radius
- saml
Idp Property Map - Saml idp
- tacplus Property Map
- Tacplus
AuthenticationProfileMethodCloud, AuthenticationProfileMethodCloudArgs
- Profile
Name string - The tenant profile name
- Profile
Name string - The tenant profile name
- profile
Name String - The tenant profile name
- profile
Name string - The tenant profile name
- profile_
name str - The tenant profile name
- profile
Name String - The tenant profile name
AuthenticationProfileMethodKerberos, AuthenticationProfileMethodKerberosArgs
- Realm string
- Realm
- Server
Profile string - Server profile
- Realm string
- Realm
- Server
Profile string - Server profile
- realm String
- Realm
- server
Profile String - Server profile
- realm string
- Realm
- server
Profile string - Server profile
- realm str
- Realm
- server_
profile str - Server profile
- realm String
- Realm
- server
Profile String - Server profile
AuthenticationProfileMethodLdap, AuthenticationProfileMethodLdapArgs
- Login
Attribute string - Login attribute
- Passwd
Exp intDays - Passwd exp days
- Server
Profile string - Server profile
- Login
Attribute string - Login attribute
- Passwd
Exp intDays - Passwd exp days
- Server
Profile string - Server profile
- login
Attribute String - Login attribute
- passwd
Exp IntegerDays - Passwd exp days
- server
Profile String - Server profile
- login
Attribute string - Login attribute
- passwd
Exp numberDays - Passwd exp days
- server
Profile string - Server profile
- login_
attribute str - Login attribute
- passwd_
exp_ intdays - Passwd exp days
- server_
profile str - Server profile
- login
Attribute String - Login attribute
- passwd
Exp NumberDays - Passwd exp days
- server
Profile String - Server profile
AuthenticationProfileMethodRadius, AuthenticationProfileMethodRadiusArgs
- Checkgroup bool
- Checkgroup
- Server
Profile string - Server profile
- Checkgroup bool
- Checkgroup
- Server
Profile string - Server profile
- checkgroup Boolean
- Checkgroup
- server
Profile String - Server profile
- checkgroup boolean
- Checkgroup
- server
Profile string - Server profile
- checkgroup bool
- Checkgroup
- server_
profile str - Server profile
- checkgroup Boolean
- Checkgroup
- server
Profile String - Server profile
AuthenticationProfileMethodSamlIdp, AuthenticationProfileMethodSamlIdpArgs
- Attribute
Name stringUsergroup - Attribute name usergroup
- Attribute
Name stringUsername - Attribute name username
- Certificate
Profile string - Certificate profile
- Enable
Single boolLogout - Enable single logout
- Request
Signing stringCertificate - Request signing certificate
- Server
Profile string - Server profile
- Attribute
Name stringUsergroup - Attribute name usergroup
- Attribute
Name stringUsername - Attribute name username
- Certificate
Profile string - Certificate profile
- Enable
Single boolLogout - Enable single logout
- Request
Signing stringCertificate - Request signing certificate
- Server
Profile string - Server profile
- attribute
Name StringUsergroup - Attribute name usergroup
- attribute
Name StringUsername - Attribute name username
- certificate
Profile String - Certificate profile
- enable
Single BooleanLogout - Enable single logout
- request
Signing StringCertificate - Request signing certificate
- server
Profile String - Server profile
- attribute
Name stringUsergroup - Attribute name usergroup
- attribute
Name stringUsername - Attribute name username
- certificate
Profile string - Certificate profile
- enable
Single booleanLogout - Enable single logout
- request
Signing stringCertificate - Request signing certificate
- server
Profile string - Server profile
- attribute_
name_ strusergroup - Attribute name usergroup
- attribute_
name_ strusername - Attribute name username
- certificate_
profile str - Certificate profile
- enable_
single_ boollogout - Enable single logout
- request_
signing_ strcertificate - Request signing certificate
- server_
profile str - Server profile
- attribute
Name StringUsergroup - Attribute name usergroup
- attribute
Name StringUsername - Attribute name username
- certificate
Profile String - Certificate profile
- enable
Single BooleanLogout - Enable single logout
- request
Signing StringCertificate - Request signing certificate
- server
Profile String - Server profile
AuthenticationProfileMethodTacplus, AuthenticationProfileMethodTacplusArgs
- Checkgroup bool
- Checkgroup
- Server
Profile string - Server profile
- Checkgroup bool
- Checkgroup
- Server
Profile string - Server profile
- checkgroup Boolean
- Checkgroup
- server
Profile String - Server profile
- checkgroup boolean
- Checkgroup
- server
Profile string - Server profile
- checkgroup bool
- Checkgroup
- server_
profile str - Server profile
- checkgroup Boolean
- Checkgroup
- server
Profile String - Server profile
AuthenticationProfileMultiFactorAuth, AuthenticationProfileMultiFactorAuthArgs
- factors Sequence[str]
- Factors
- mfa_
enable bool - Mfa enable
AuthenticationProfileSingleSignOn, AuthenticationProfileSingleSignOnArgs
- Kerberos
Keytab string - Kerberos keytab
- Realm string
- Realm
- Kerberos
Keytab string - Kerberos keytab
- Realm string
- Realm
- kerberos
Keytab String - Kerberos keytab
- realm String
- Realm
- kerberos
Keytab string - Kerberos keytab
- realm string
- Realm
- kerberos_
keytab str - Kerberos keytab
- realm str
- Realm
- kerberos
Keytab String - Kerberos keytab
- realm String
- Realm
Package Details
- Repository
- scm pulumi/pulumi-scm
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
scmTerraform Provider.
