AuthenticationProfile resource
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as scm from "@pulumi/scm";
const globalRadiusAccess = new scm.AuthenticationProfile("global_radius_access", {
name: "test_auth_profile_radius_1",
folder: "All",
userDomain: "default",
usernameModifier: "%USERINPUT%",
allowLists: ["all"],
lockout: {
failedAttempts: 1,
lockoutTime: 3,
},
method: {
radius: {
checkgroup: true,
serverProfile: "CHAP_only_rsp_1",
},
},
singleSignOn: {
realm: "EXAMPLE.COM",
},
});
const globalDbAccess = new scm.AuthenticationProfile("global_db_access", {
name: "test_auth_profile_db_1",
folder: "All",
userDomain: "default",
usernameModifier: "%USERINPUT%",
allowLists: ["all"],
lockout: {
failedAttempts: 3,
lockoutTime: 1,
},
method: {
localDatabase: {},
},
singleSignOn: {
realm: "EXAMPLE.COM",
},
});
import pulumi
import pulumi_scm as scm
global_radius_access = scm.AuthenticationProfile("global_radius_access",
name="test_auth_profile_radius_1",
folder="All",
user_domain="default",
username_modifier="%USERINPUT%",
allow_lists=["all"],
lockout={
"failed_attempts": 1,
"lockout_time": 3,
},
method={
"radius": {
"checkgroup": True,
"server_profile": "CHAP_only_rsp_1",
},
},
single_sign_on={
"realm": "EXAMPLE.COM",
})
global_db_access = scm.AuthenticationProfile("global_db_access",
name="test_auth_profile_db_1",
folder="All",
user_domain="default",
username_modifier="%USERINPUT%",
allow_lists=["all"],
lockout={
"failed_attempts": 3,
"lockout_time": 1,
},
method={
"local_database": {},
},
single_sign_on={
"realm": "EXAMPLE.COM",
})
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 {
_, err := scm.NewAuthenticationProfile(ctx, "global_radius_access", &scm.AuthenticationProfileArgs{
Name: pulumi.String("test_auth_profile_radius_1"),
Folder: pulumi.String("All"),
UserDomain: pulumi.String("default"),
UsernameModifier: pulumi.String("%USERINPUT%"),
AllowLists: pulumi.StringArray{
pulumi.String("all"),
},
Lockout: &scm.AuthenticationProfileLockoutArgs{
FailedAttempts: pulumi.Int(1),
LockoutTime: pulumi.Int(3),
},
Method: &scm.AuthenticationProfileMethodArgs{
Radius: &scm.AuthenticationProfileMethodRadiusArgs{
Checkgroup: pulumi.Bool(true),
ServerProfile: pulumi.String("CHAP_only_rsp_1"),
},
},
SingleSignOn: &scm.AuthenticationProfileSingleSignOnArgs{
Realm: pulumi.String("EXAMPLE.COM"),
},
})
if err != nil {
return err
}
_, err = scm.NewAuthenticationProfile(ctx, "global_db_access", &scm.AuthenticationProfileArgs{
Name: pulumi.String("test_auth_profile_db_1"),
Folder: pulumi.String("All"),
UserDomain: pulumi.String("default"),
UsernameModifier: pulumi.String("%USERINPUT%"),
AllowLists: pulumi.StringArray{
pulumi.String("all"),
},
Lockout: &scm.AuthenticationProfileLockoutArgs{
FailedAttempts: pulumi.Int(3),
LockoutTime: pulumi.Int(1),
},
Method: &scm.AuthenticationProfileMethodArgs{
LocalDatabase: &scm.AuthenticationProfileMethodLocalDatabaseArgs{},
},
SingleSignOn: &scm.AuthenticationProfileSingleSignOnArgs{
Realm: pulumi.String("EXAMPLE.COM"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Scm = Pulumi.Scm;
return await Deployment.RunAsync(() =>
{
var globalRadiusAccess = new Scm.AuthenticationProfile("global_radius_access", new()
{
Name = "test_auth_profile_radius_1",
Folder = "All",
UserDomain = "default",
UsernameModifier = "%USERINPUT%",
AllowLists = new[]
{
"all",
},
Lockout = new Scm.Inputs.AuthenticationProfileLockoutArgs
{
FailedAttempts = 1,
LockoutTime = 3,
},
Method = new Scm.Inputs.AuthenticationProfileMethodArgs
{
Radius = new Scm.Inputs.AuthenticationProfileMethodRadiusArgs
{
Checkgroup = true,
ServerProfile = "CHAP_only_rsp_1",
},
},
SingleSignOn = new Scm.Inputs.AuthenticationProfileSingleSignOnArgs
{
Realm = "EXAMPLE.COM",
},
});
var globalDbAccess = new Scm.AuthenticationProfile("global_db_access", new()
{
Name = "test_auth_profile_db_1",
Folder = "All",
UserDomain = "default",
UsernameModifier = "%USERINPUT%",
AllowLists = new[]
{
"all",
},
Lockout = new Scm.Inputs.AuthenticationProfileLockoutArgs
{
FailedAttempts = 3,
LockoutTime = 1,
},
Method = new Scm.Inputs.AuthenticationProfileMethodArgs
{
LocalDatabase = null,
},
SingleSignOn = new Scm.Inputs.AuthenticationProfileSingleSignOnArgs
{
Realm = "EXAMPLE.COM",
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.scm.AuthenticationProfile;
import com.pulumi.scm.AuthenticationProfileArgs;
import com.pulumi.scm.inputs.AuthenticationProfileLockoutArgs;
import com.pulumi.scm.inputs.AuthenticationProfileMethodArgs;
import com.pulumi.scm.inputs.AuthenticationProfileMethodRadiusArgs;
import com.pulumi.scm.inputs.AuthenticationProfileSingleSignOnArgs;
import com.pulumi.scm.inputs.AuthenticationProfileMethodLocalDatabaseArgs;
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) {
var globalRadiusAccess = new AuthenticationProfile("globalRadiusAccess", AuthenticationProfileArgs.builder()
.name("test_auth_profile_radius_1")
.folder("All")
.userDomain("default")
.usernameModifier("%USERINPUT%")
.allowLists("all")
.lockout(AuthenticationProfileLockoutArgs.builder()
.failedAttempts(1)
.lockoutTime(3)
.build())
.method(AuthenticationProfileMethodArgs.builder()
.radius(AuthenticationProfileMethodRadiusArgs.builder()
.checkgroup(true)
.serverProfile("CHAP_only_rsp_1")
.build())
.build())
.singleSignOn(AuthenticationProfileSingleSignOnArgs.builder()
.realm("EXAMPLE.COM")
.build())
.build());
var globalDbAccess = new AuthenticationProfile("globalDbAccess", AuthenticationProfileArgs.builder()
.name("test_auth_profile_db_1")
.folder("All")
.userDomain("default")
.usernameModifier("%USERINPUT%")
.allowLists("all")
.lockout(AuthenticationProfileLockoutArgs.builder()
.failedAttempts(3)
.lockoutTime(1)
.build())
.method(AuthenticationProfileMethodArgs.builder()
.localDatabase(AuthenticationProfileMethodLocalDatabaseArgs.builder()
.build())
.build())
.singleSignOn(AuthenticationProfileSingleSignOnArgs.builder()
.realm("EXAMPLE.COM")
.build())
.build());
}
}
resources:
globalRadiusAccess:
type: scm:AuthenticationProfile
name: global_radius_access
properties:
name: test_auth_profile_radius_1
folder: All
userDomain: default
usernameModifier: '%USERINPUT%'
allowLists:
- all
lockout:
failedAttempts: 1
lockoutTime: 3
method:
radius:
checkgroup: true
serverProfile: CHAP_only_rsp_1
singleSignOn:
realm: EXAMPLE.COM
globalDbAccess:
type: scm:AuthenticationProfile
name: global_db_access
properties:
name: test_auth_profile_db_1
folder: All
userDomain: default
usernameModifier: '%USERINPUT%'
allowLists:
- all
lockout:
failedAttempts: 3
lockoutTime: 1
method:
localDatabase: {}
singleSignOn:
realm: EXAMPLE.COM
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> - The allow_list of the authentication profile
- Device string
- The device in which the resource is defined
- Folder string
The folder in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- Lockout
Authentication
Profile Lockout - Lockout object of the authentication profile
- Method
Authentication
Profile Method - method object of authentication profile
- 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
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- User
Domain string - User domain
- Username
Modifier string - Username modifier
- Allow
Lists []string - The allow_list of the authentication profile
- Device string
- The device in which the resource is defined
- Folder string
The folder in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- Lockout
Authentication
Profile Lockout Args - Lockout object of the authentication profile
- Method
Authentication
Profile Method Args - method object of authentication profile
- 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
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- User
Domain string - User domain
- Username
Modifier string - Username modifier
- allow
Lists List<String> - The allow_list of the authentication profile
- device String
- The device in which the resource is defined
- folder String
The folder in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- lockout
Authentication
Profile Lockout - Lockout object of the authentication profile
- method
Authentication
Profile Method - method object of authentication profile
- 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
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- user
Domain String - User domain
- username
Modifier String - Username modifier
- allow
Lists string[] - The allow_list of the authentication profile
- device string
- The device in which the resource is defined
- folder string
The folder in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- lockout
Authentication
Profile Lockout - Lockout object of the authentication profile
- method
Authentication
Profile Method - method object of authentication profile
- 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
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- user
Domain string - User domain
- username
Modifier string - Username modifier
- allow_
lists Sequence[str] - The allow_list of the authentication profile
- device str
- The device in which the resource is defined
- folder str
The folder in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- lockout
Authentication
Profile Lockout Args - Lockout object of the authentication profile
- method
Authentication
Profile Method Args - method object of authentication profile
- 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
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- user_
domain str - User domain
- username_
modifier str - Username modifier
- allow
Lists List<String> - The allow_list of the authentication profile
- device String
- The device in which the resource is defined
- folder String
The folder in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- lockout Property Map
- Lockout object of the authentication profile
- method Property Map
- method object of authentication profile
- 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
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- 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> - The allow_list of the authentication profile
- Device string
- The device in which the resource is defined
- Folder string
The folder in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- Lockout
Authentication
Profile Lockout - Lockout object of the authentication profile
- Method
Authentication
Profile Method - method object of authentication profile
- 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
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- Tfid string
- User
Domain string - User domain
- Username
Modifier string - Username modifier
- Allow
Lists []string - The allow_list of the authentication profile
- Device string
- The device in which the resource is defined
- Folder string
The folder in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- Lockout
Authentication
Profile Lockout Args - Lockout object of the authentication profile
- Method
Authentication
Profile Method Args - method object of authentication profile
- 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
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- Tfid string
- User
Domain string - User domain
- Username
Modifier string - Username modifier
- allow
Lists List<String> - The allow_list of the authentication profile
- device String
- The device in which the resource is defined
- folder String
The folder in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- lockout
Authentication
Profile Lockout - Lockout object of the authentication profile
- method
Authentication
Profile Method - method object of authentication profile
- 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
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- tfid String
- user
Domain String - User domain
- username
Modifier String - Username modifier
- allow
Lists string[] - The allow_list of the authentication profile
- device string
- The device in which the resource is defined
- folder string
The folder in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- lockout
Authentication
Profile Lockout - Lockout object of the authentication profile
- method
Authentication
Profile Method - method object of authentication profile
- 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
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- tfid string
- user
Domain string - User domain
- username
Modifier string - Username modifier
- allow_
lists Sequence[str] - The allow_list of the authentication profile
- device str
- The device in which the resource is defined
- folder str
The folder in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- lockout
Authentication
Profile Lockout Args - Lockout object of the authentication profile
- method
Authentication
Profile Method Args - method object of authentication profile
- 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
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- tfid str
- user_
domain str - User domain
- username_
modifier str - Username modifier
- allow
Lists List<String> - The allow_list of the authentication profile
- device String
- The device in which the resource is defined
- folder String
The folder in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- lockout Property Map
- Lockout object of the authentication profile
- method Property Map
- method object of authentication profile
- 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
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- tfid String
- user
Domain String - User domain
- username
Modifier String - Username modifier
Supporting Types
AuthenticationProfileLockout, AuthenticationProfileLockoutArgs
- Failed
Attempts int - Lockout object - failed_attempts of authentication profile
- Lockout
Time int - Lockout object - lockout-time of authentication profile
- Failed
Attempts int - Lockout object - failed_attempts of authentication profile
- Lockout
Time int - Lockout object - lockout-time of authentication profile
- failed
Attempts Integer - Lockout object - failed_attempts of authentication profile
- lockout
Time Integer - Lockout object - lockout-time of authentication profile
- failed
Attempts number - Lockout object - failed_attempts of authentication profile
- lockout
Time number - Lockout object - lockout-time of authentication profile
- failed_
attempts int - Lockout object - failed_attempts of authentication profile
- lockout_
time int - Lockout object - lockout-time of authentication profile
- failed
Attempts Number - Lockout object - failed_attempts of authentication profile
- lockout
Time Number - Lockout object - lockout-time of authentication profile
AuthenticationProfileMethod, AuthenticationProfileMethodArgs
- Cloud
Authentication
Profile Method Cloud - Cloud
- Kerberos
Authentication
Profile Method Kerberos Kerberos
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.- Ldap
Authentication
Profile Method Ldap Ldap
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.- Local
Database AuthenticationProfile Method Local Database Local database
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.- Radius
Authentication
Profile Method Radius Radius
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.- Saml
Idp AuthenticationProfile Method Saml Idp Saml idp
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.- Tacplus
Authentication
Profile Method Tacplus Tacplus
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.
- Cloud
Authentication
Profile Method Cloud - Cloud
- Kerberos
Authentication
Profile Method Kerberos Kerberos
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.- Ldap
Authentication
Profile Method Ldap Ldap
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.- Local
Database AuthenticationProfile Method Local Database Local database
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.- Radius
Authentication
Profile Method Radius Radius
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.- Saml
Idp AuthenticationProfile Method Saml Idp Saml idp
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.- Tacplus
Authentication
Profile Method Tacplus Tacplus
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.
- cloud
Authentication
Profile Method Cloud - Cloud
- kerberos
Authentication
Profile Method Kerberos Kerberos
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.- ldap
Authentication
Profile Method Ldap Ldap
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.- local
Database AuthenticationProfile Method Local Database Local database
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.- radius
Authentication
Profile Method Radius Radius
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.- saml
Idp AuthenticationProfile Method Saml Idp Saml idp
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.- tacplus
Authentication
Profile Method Tacplus Tacplus
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.
- cloud
Authentication
Profile Method Cloud - Cloud
- kerberos
Authentication
Profile Method Kerberos Kerberos
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.- ldap
Authentication
Profile Method Ldap Ldap
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.- local
Database AuthenticationProfile Method Local Database Local database
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.- radius
Authentication
Profile Method Radius Radius
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.- saml
Idp AuthenticationProfile Method Saml Idp Saml idp
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.- tacplus
Authentication
Profile Method Tacplus Tacplus
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.
- cloud
Authentication
Profile Method Cloud - Cloud
- kerberos
Authentication
Profile Method Kerberos Kerberos
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.- ldap
Authentication
Profile Method Ldap Ldap
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.- local_
database AuthenticationProfile Method Local Database Local database
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.- radius
Authentication
Profile Method Radius Radius
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.- saml_
idp AuthenticationProfile Method Saml Idp Saml idp
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.- tacplus
Authentication
Profile Method Tacplus Tacplus
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.
- cloud Property Map
- Cloud
- kerberos Property Map
Kerberos
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.- ldap Property Map
Ldap
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.- local
Database Property Map Local database
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.- radius Property Map
Radius
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.- saml
Idp Property Map Saml idp
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.- tacplus Property Map
Tacplus
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.
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
- method kerberos object realm of authentication profile
- Server
Profile string - method kerberos object server profile of authentication profile
- Realm string
- method kerberos object realm of authentication profile
- Server
Profile string - method kerberos object server profile of authentication profile
- realm String
- method kerberos object realm of authentication profile
- server
Profile String - method kerberos object server profile of authentication profile
- realm string
- method kerberos object realm of authentication profile
- server
Profile string - method kerberos object server profile of authentication profile
- realm str
- method kerberos object realm of authentication profile
- server_
profile str - method kerberos object server profile of authentication profile
- realm String
- method kerberos object realm of authentication profile
- server
Profile String - method kerberos object server profile of authentication 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
- method radius object check group of authentication profile
- Server
Profile string - method radius object server profile of authentication profile
- Checkgroup bool
- method radius object check group of authentication profile
- Server
Profile string - method radius object server profile of authentication profile
- checkgroup Boolean
- method radius object check group of authentication profile
- server
Profile String - method radius object server profile of authentication profile
- checkgroup boolean
- method radius object check group of authentication profile
- server
Profile string - method radius object server profile of authentication profile
- checkgroup bool
- method radius object check group of authentication profile
- server_
profile str - method radius object server profile of authentication profile
- checkgroup Boolean
- method radius object check group of authentication profile
- server
Profile String - method radius object server profile of authentication profile
AuthenticationProfileMethodSamlIdp, AuthenticationProfileMethodSamlIdpArgs
- Attribute
Name stringUsergroup - Attribute name usergroup
- Attribute
Name stringUsername - Attribute name username
- Certificate
Profile string - method object saml idp certificate profile of authentication profile
- Enable
Single boolLogout - Enable single logout
- Request
Signing stringCertificate - Request signing certificate
- Server
Profile string - method object saml idp server profile of authentication profile
- Attribute
Name stringUsergroup - Attribute name usergroup
- Attribute
Name stringUsername - Attribute name username
- Certificate
Profile string - method object saml idp certificate profile of authentication profile
- Enable
Single boolLogout - Enable single logout
- Request
Signing stringCertificate - Request signing certificate
- Server
Profile string - method object saml idp server profile of authentication profile
- attribute
Name StringUsergroup - Attribute name usergroup
- attribute
Name StringUsername - Attribute name username
- certificate
Profile String - method object saml idp certificate profile of authentication profile
- enable
Single BooleanLogout - Enable single logout
- request
Signing StringCertificate - Request signing certificate
- server
Profile String - method object saml idp server profile of authentication profile
- attribute
Name stringUsergroup - Attribute name usergroup
- attribute
Name stringUsername - Attribute name username
- certificate
Profile string - method object saml idp certificate profile of authentication profile
- enable
Single booleanLogout - Enable single logout
- request
Signing stringCertificate - Request signing certificate
- server
Profile string - method object saml idp server profile of authentication profile
- attribute_
name_ strusergroup - Attribute name usergroup
- attribute_
name_ strusername - Attribute name username
- certificate_
profile str - method object saml idp certificate profile of authentication profile
- enable_
single_ boollogout - Enable single logout
- request_
signing_ strcertificate - Request signing certificate
- server_
profile str - method object saml idp server profile of authentication profile
- attribute
Name StringUsergroup - Attribute name usergroup
- attribute
Name StringUsername - Attribute name username
- certificate
Profile String - method object saml idp certificate profile of authentication profile
- enable
Single BooleanLogout - Enable single logout
- request
Signing StringCertificate - Request signing certificate
- server
Profile String - method object saml idp server profile of authentication profile
AuthenticationProfileMethodTacplus, AuthenticationProfileMethodTacplusArgs
- Checkgroup bool
- method tacplus object check group of authentication profile
- Server
Profile string - method tacplus object check group of authentication profile
- Checkgroup bool
- method tacplus object check group of authentication profile
- Server
Profile string - method tacplus object check group of authentication profile
- checkgroup Boolean
- method tacplus object check group of authentication profile
- server
Profile String - method tacplus object check group of authentication profile
- checkgroup boolean
- method tacplus object check group of authentication profile
- server
Profile string - method tacplus object check group of authentication profile
- checkgroup bool
- method tacplus object check group of authentication profile
- server_
profile str - method tacplus object check group of authentication profile
- checkgroup Boolean
- method tacplus object check group of authentication profile
- server
Profile String - method tacplus object check group of authentication 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.
