1. Packages
  2. Strata Cloud Manager Provider
  3. API Docs
  4. AuthenticationProfile
Strata Cloud Manager v1.0.1 published on Wednesday, Nov 26, 2025 by Pulumi
scm logo
Strata Cloud Manager v1.0.1 published on Wednesday, Nov 26, 2025 by Pulumi

    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:

    AllowLists 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, and snippet.

    Lockout AuthenticationProfileLockout
    Lockout object of the authentication profile
    Method AuthenticationProfileMethod
    method object of authentication profile
    MultiFactorAuth AuthenticationProfileMultiFactorAuth
    Multi factor auth
    Name string
    The name of the authentication profile
    SingleSignOn AuthenticationProfileSingleSignOn
    Single sign on
    Snippet string

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    UserDomain string
    User domain
    UsernameModifier string
    Username modifier
    AllowLists []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, and snippet.

    Lockout AuthenticationProfileLockoutArgs
    Lockout object of the authentication profile
    Method AuthenticationProfileMethodArgs
    method object of authentication profile
    MultiFactorAuth AuthenticationProfileMultiFactorAuthArgs
    Multi factor auth
    Name string
    The name of the authentication profile
    SingleSignOn AuthenticationProfileSingleSignOnArgs
    Single sign on
    Snippet string

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    UserDomain string
    User domain
    UsernameModifier string
    Username modifier
    allowLists 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, and snippet.

    lockout AuthenticationProfileLockout
    Lockout object of the authentication profile
    method AuthenticationProfileMethod
    method object of authentication profile
    multiFactorAuth AuthenticationProfileMultiFactorAuth
    Multi factor auth
    name String
    The name of the authentication profile
    singleSignOn AuthenticationProfileSingleSignOn
    Single sign on
    snippet String

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    userDomain String
    User domain
    usernameModifier String
    Username modifier
    allowLists 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, and snippet.

    lockout AuthenticationProfileLockout
    Lockout object of the authentication profile
    method AuthenticationProfileMethod
    method object of authentication profile
    multiFactorAuth AuthenticationProfileMultiFactorAuth
    Multi factor auth
    name string
    The name of the authentication profile
    singleSignOn AuthenticationProfileSingleSignOn
    Single sign on
    snippet string

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    userDomain string
    User domain
    usernameModifier 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, and snippet.

    lockout AuthenticationProfileLockoutArgs
    Lockout object of the authentication profile
    method AuthenticationProfileMethodArgs
    method object of authentication profile
    multi_factor_auth AuthenticationProfileMultiFactorAuthArgs
    Multi factor auth
    name str
    The name of the authentication profile
    single_sign_on AuthenticationProfileSingleSignOnArgs
    Single sign on
    snippet str

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    user_domain str
    User domain
    username_modifier str
    Username modifier
    allowLists 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, and snippet.

    lockout Property Map
    Lockout object of the authentication profile
    method Property Map
    method object of authentication profile
    multiFactorAuth Property Map
    Multi factor auth
    name String
    The name of the authentication profile
    singleSignOn Property Map
    Single sign on
    snippet String

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    userDomain String
    User domain
    usernameModifier String
    Username modifier

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Tfid string
    Id string
    The provider-assigned unique ID for this managed resource.
    Tfid string
    id String
    The provider-assigned unique ID for this managed resource.
    tfid String
    id string
    The provider-assigned unique ID for this managed resource.
    tfid string
    id str
    The provider-assigned unique ID for this managed resource.
    tfid str
    id String
    The provider-assigned unique ID for this managed resource.
    tfid String

    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) -> AuthenticationProfile
    func 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.
    The following state arguments are supported:
    AllowLists 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, and snippet.

    Lockout AuthenticationProfileLockout
    Lockout object of the authentication profile
    Method AuthenticationProfileMethod
    method object of authentication profile
    MultiFactorAuth AuthenticationProfileMultiFactorAuth
    Multi factor auth
    Name string
    The name of the authentication profile
    SingleSignOn AuthenticationProfileSingleSignOn
    Single sign on
    Snippet string

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    Tfid string
    UserDomain string
    User domain
    UsernameModifier string
    Username modifier
    AllowLists []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, and snippet.

    Lockout AuthenticationProfileLockoutArgs
    Lockout object of the authentication profile
    Method AuthenticationProfileMethodArgs
    method object of authentication profile
    MultiFactorAuth AuthenticationProfileMultiFactorAuthArgs
    Multi factor auth
    Name string
    The name of the authentication profile
    SingleSignOn AuthenticationProfileSingleSignOnArgs
    Single sign on
    Snippet string

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    Tfid string
    UserDomain string
    User domain
    UsernameModifier string
    Username modifier
    allowLists 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, and snippet.

    lockout AuthenticationProfileLockout
    Lockout object of the authentication profile
    method AuthenticationProfileMethod
    method object of authentication profile
    multiFactorAuth AuthenticationProfileMultiFactorAuth
    Multi factor auth
    name String
    The name of the authentication profile
    singleSignOn AuthenticationProfileSingleSignOn
    Single sign on
    snippet String

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    tfid String
    userDomain String
    User domain
    usernameModifier String
    Username modifier
    allowLists 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, and snippet.

    lockout AuthenticationProfileLockout
    Lockout object of the authentication profile
    method AuthenticationProfileMethod
    method object of authentication profile
    multiFactorAuth AuthenticationProfileMultiFactorAuth
    Multi factor auth
    name string
    The name of the authentication profile
    singleSignOn AuthenticationProfileSingleSignOn
    Single sign on
    snippet string

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    tfid string
    userDomain string
    User domain
    usernameModifier 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, and snippet.

    lockout AuthenticationProfileLockoutArgs
    Lockout object of the authentication profile
    method AuthenticationProfileMethodArgs
    method object of authentication profile
    multi_factor_auth AuthenticationProfileMultiFactorAuthArgs
    Multi factor auth
    name str
    The name of the authentication profile
    single_sign_on AuthenticationProfileSingleSignOnArgs
    Single sign on
    snippet str

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    tfid str
    user_domain str
    User domain
    username_modifier str
    Username modifier
    allowLists 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, and snippet.

    lockout Property Map
    Lockout object of the authentication profile
    method Property Map
    method object of authentication profile
    multiFactorAuth Property Map
    Multi factor auth
    name String
    The name of the authentication profile
    singleSignOn Property Map
    Single sign on
    snippet String

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    tfid String
    userDomain String
    User domain
    usernameModifier String
    Username modifier

    Supporting Types

    AuthenticationProfileLockout, AuthenticationProfileLockoutArgs

    FailedAttempts int
    Lockout object - failed_attempts of authentication profile
    LockoutTime int
    Lockout object - lockout-time of authentication profile
    FailedAttempts int
    Lockout object - failed_attempts of authentication profile
    LockoutTime int
    Lockout object - lockout-time of authentication profile
    failedAttempts Integer
    Lockout object - failed_attempts of authentication profile
    lockoutTime Integer
    Lockout object - lockout-time of authentication profile
    failedAttempts number
    Lockout object - failed_attempts of authentication profile
    lockoutTime 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
    failedAttempts Number
    Lockout object - failed_attempts of authentication profile
    lockoutTime Number
    Lockout object - lockout-time of authentication profile

    AuthenticationProfileMethod, AuthenticationProfileMethodArgs

    Cloud AuthenticationProfileMethodCloud
    Cloud
    Kerberos AuthenticationProfileMethodKerberos

    Kerberos

    ℹ️ Note: You must specify exactly one of cloud, kerberos, ldap, local_database, radius, saml_idp, and tacplus.

    Ldap AuthenticationProfileMethodLdap

    Ldap

    ℹ️ Note: You must specify exactly one of cloud, kerberos, ldap, local_database, radius, saml_idp, and tacplus.

    LocalDatabase AuthenticationProfileMethodLocalDatabase

    Local database

    ℹ️ Note: You must specify exactly one of cloud, kerberos, ldap, local_database, radius, saml_idp, and tacplus.

    Radius AuthenticationProfileMethodRadius

    Radius

    ℹ️ Note: You must specify exactly one of cloud, kerberos, ldap, local_database, radius, saml_idp, and tacplus.

    SamlIdp AuthenticationProfileMethodSamlIdp

    Saml idp

    ℹ️ Note: You must specify exactly one of cloud, kerberos, ldap, local_database, radius, saml_idp, and tacplus.

    Tacplus AuthenticationProfileMethodTacplus

    Tacplus

    ℹ️ Note: You must specify exactly one of cloud, kerberos, ldap, local_database, radius, saml_idp, and tacplus.

    Cloud AuthenticationProfileMethodCloud
    Cloud
    Kerberos AuthenticationProfileMethodKerberos

    Kerberos

    ℹ️ Note: You must specify exactly one of cloud, kerberos, ldap, local_database, radius, saml_idp, and tacplus.

    Ldap AuthenticationProfileMethodLdap

    Ldap

    ℹ️ Note: You must specify exactly one of cloud, kerberos, ldap, local_database, radius, saml_idp, and tacplus.

    LocalDatabase AuthenticationProfileMethodLocalDatabase

    Local database

    ℹ️ Note: You must specify exactly one of cloud, kerberos, ldap, local_database, radius, saml_idp, and tacplus.

    Radius AuthenticationProfileMethodRadius

    Radius

    ℹ️ Note: You must specify exactly one of cloud, kerberos, ldap, local_database, radius, saml_idp, and tacplus.

    SamlIdp AuthenticationProfileMethodSamlIdp

    Saml idp

    ℹ️ Note: You must specify exactly one of cloud, kerberos, ldap, local_database, radius, saml_idp, and tacplus.

    Tacplus AuthenticationProfileMethodTacplus

    Tacplus

    ℹ️ Note: You must specify exactly one of cloud, kerberos, ldap, local_database, radius, saml_idp, and tacplus.

    cloud AuthenticationProfileMethodCloud
    Cloud
    kerberos AuthenticationProfileMethodKerberos

    Kerberos

    ℹ️ Note: You must specify exactly one of cloud, kerberos, ldap, local_database, radius, saml_idp, and tacplus.

    ldap AuthenticationProfileMethodLdap

    Ldap

    ℹ️ Note: You must specify exactly one of cloud, kerberos, ldap, local_database, radius, saml_idp, and tacplus.

    localDatabase AuthenticationProfileMethodLocalDatabase

    Local database

    ℹ️ Note: You must specify exactly one of cloud, kerberos, ldap, local_database, radius, saml_idp, and tacplus.

    radius AuthenticationProfileMethodRadius

    Radius

    ℹ️ Note: You must specify exactly one of cloud, kerberos, ldap, local_database, radius, saml_idp, and tacplus.

    samlIdp AuthenticationProfileMethodSamlIdp

    Saml idp

    ℹ️ Note: You must specify exactly one of cloud, kerberos, ldap, local_database, radius, saml_idp, and tacplus.

    tacplus AuthenticationProfileMethodTacplus

    Tacplus

    ℹ️ Note: You must specify exactly one of cloud, kerberos, ldap, local_database, radius, saml_idp, and tacplus.

    cloud AuthenticationProfileMethodCloud
    Cloud
    kerberos AuthenticationProfileMethodKerberos

    Kerberos

    ℹ️ Note: You must specify exactly one of cloud, kerberos, ldap, local_database, radius, saml_idp, and tacplus.

    ldap AuthenticationProfileMethodLdap

    Ldap

    ℹ️ Note: You must specify exactly one of cloud, kerberos, ldap, local_database, radius, saml_idp, and tacplus.

    localDatabase AuthenticationProfileMethodLocalDatabase

    Local database

    ℹ️ Note: You must specify exactly one of cloud, kerberos, ldap, local_database, radius, saml_idp, and tacplus.

    radius AuthenticationProfileMethodRadius

    Radius

    ℹ️ Note: You must specify exactly one of cloud, kerberos, ldap, local_database, radius, saml_idp, and tacplus.

    samlIdp AuthenticationProfileMethodSamlIdp

    Saml idp

    ℹ️ Note: You must specify exactly one of cloud, kerberos, ldap, local_database, radius, saml_idp, and tacplus.

    tacplus AuthenticationProfileMethodTacplus

    Tacplus

    ℹ️ Note: You must specify exactly one of cloud, kerberos, ldap, local_database, radius, saml_idp, and tacplus.

    cloud AuthenticationProfileMethodCloud
    Cloud
    kerberos AuthenticationProfileMethodKerberos

    Kerberos

    ℹ️ Note: You must specify exactly one of cloud, kerberos, ldap, local_database, radius, saml_idp, and tacplus.

    ldap AuthenticationProfileMethodLdap

    Ldap

    ℹ️ Note: You must specify exactly one of cloud, kerberos, ldap, local_database, radius, saml_idp, and tacplus.

    local_database AuthenticationProfileMethodLocalDatabase

    Local database

    ℹ️ Note: You must specify exactly one of cloud, kerberos, ldap, local_database, radius, saml_idp, and tacplus.

    radius AuthenticationProfileMethodRadius

    Radius

    ℹ️ Note: You must specify exactly one of cloud, kerberos, ldap, local_database, radius, saml_idp, and tacplus.

    saml_idp AuthenticationProfileMethodSamlIdp

    Saml idp

    ℹ️ Note: You must specify exactly one of cloud, kerberos, ldap, local_database, radius, saml_idp, and tacplus.

    tacplus AuthenticationProfileMethodTacplus

    Tacplus

    ℹ️ Note: You must specify exactly one of cloud, kerberos, ldap, local_database, radius, saml_idp, and tacplus.

    cloud Property Map
    Cloud
    kerberos Property Map

    Kerberos

    ℹ️ Note: You must specify exactly one of cloud, kerberos, ldap, local_database, radius, saml_idp, and tacplus.

    ldap Property Map

    Ldap

    ℹ️ Note: You must specify exactly one of cloud, kerberos, ldap, local_database, radius, saml_idp, and tacplus.

    localDatabase Property Map

    Local database

    ℹ️ Note: You must specify exactly one of cloud, kerberos, ldap, local_database, radius, saml_idp, and tacplus.

    radius Property Map

    Radius

    ℹ️ Note: You must specify exactly one of cloud, kerberos, ldap, local_database, radius, saml_idp, and tacplus.

    samlIdp Property Map

    Saml idp

    ℹ️ Note: You must specify exactly one of cloud, kerberos, ldap, local_database, radius, saml_idp, and tacplus.

    tacplus Property Map

    Tacplus

    ℹ️ Note: You must specify exactly one of cloud, kerberos, ldap, local_database, radius, saml_idp, and tacplus.

    AuthenticationProfileMethodCloud, AuthenticationProfileMethodCloudArgs

    ProfileName string
    The tenant profile name
    ProfileName string
    The tenant profile name
    profileName String
    The tenant profile name
    profileName string
    The tenant profile name
    profile_name str
    The tenant profile name
    profileName String
    The tenant profile name

    AuthenticationProfileMethodKerberos, AuthenticationProfileMethodKerberosArgs

    Realm string
    method kerberos object realm of authentication profile
    ServerProfile string
    method kerberos object server profile of authentication profile
    Realm string
    method kerberos object realm of authentication profile
    ServerProfile string
    method kerberos object server profile of authentication profile
    realm String
    method kerberos object realm of authentication profile
    serverProfile String
    method kerberos object server profile of authentication profile
    realm string
    method kerberos object realm of authentication profile
    serverProfile 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
    serverProfile String
    method kerberos object server profile of authentication profile

    AuthenticationProfileMethodLdap, AuthenticationProfileMethodLdapArgs

    LoginAttribute string
    Login attribute
    PasswdExpDays int
    Passwd exp days
    ServerProfile string
    Server profile
    LoginAttribute string
    Login attribute
    PasswdExpDays int
    Passwd exp days
    ServerProfile string
    Server profile
    loginAttribute String
    Login attribute
    passwdExpDays Integer
    Passwd exp days
    serverProfile String
    Server profile
    loginAttribute string
    Login attribute
    passwdExpDays number
    Passwd exp days
    serverProfile string
    Server profile
    login_attribute str
    Login attribute
    passwd_exp_days int
    Passwd exp days
    server_profile str
    Server profile
    loginAttribute String
    Login attribute
    passwdExpDays Number
    Passwd exp days
    serverProfile String
    Server profile

    AuthenticationProfileMethodRadius, AuthenticationProfileMethodRadiusArgs

    Checkgroup bool
    method radius object check group of authentication profile
    ServerProfile string
    method radius object server profile of authentication profile
    Checkgroup bool
    method radius object check group of authentication profile
    ServerProfile string
    method radius object server profile of authentication profile
    checkgroup Boolean
    method radius object check group of authentication profile
    serverProfile String
    method radius object server profile of authentication profile
    checkgroup boolean
    method radius object check group of authentication profile
    serverProfile 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
    serverProfile String
    method radius object server profile of authentication profile

    AuthenticationProfileMethodSamlIdp, AuthenticationProfileMethodSamlIdpArgs

    AttributeNameUsergroup string
    Attribute name usergroup
    AttributeNameUsername string
    Attribute name username
    CertificateProfile string
    method object saml idp certificate profile of authentication profile
    EnableSingleLogout bool
    Enable single logout
    RequestSigningCertificate string
    Request signing certificate
    ServerProfile string
    method object saml idp server profile of authentication profile
    AttributeNameUsergroup string
    Attribute name usergroup
    AttributeNameUsername string
    Attribute name username
    CertificateProfile string
    method object saml idp certificate profile of authentication profile
    EnableSingleLogout bool
    Enable single logout
    RequestSigningCertificate string
    Request signing certificate
    ServerProfile string
    method object saml idp server profile of authentication profile
    attributeNameUsergroup String
    Attribute name usergroup
    attributeNameUsername String
    Attribute name username
    certificateProfile String
    method object saml idp certificate profile of authentication profile
    enableSingleLogout Boolean
    Enable single logout
    requestSigningCertificate String
    Request signing certificate
    serverProfile String
    method object saml idp server profile of authentication profile
    attributeNameUsergroup string
    Attribute name usergroup
    attributeNameUsername string
    Attribute name username
    certificateProfile string
    method object saml idp certificate profile of authentication profile
    enableSingleLogout boolean
    Enable single logout
    requestSigningCertificate string
    Request signing certificate
    serverProfile string
    method object saml idp server profile of authentication profile
    attribute_name_usergroup str
    Attribute name usergroup
    attribute_name_username str
    Attribute name username
    certificate_profile str
    method object saml idp certificate profile of authentication profile
    enable_single_logout bool
    Enable single logout
    request_signing_certificate str
    Request signing certificate
    server_profile str
    method object saml idp server profile of authentication profile
    attributeNameUsergroup String
    Attribute name usergroup
    attributeNameUsername String
    Attribute name username
    certificateProfile String
    method object saml idp certificate profile of authentication profile
    enableSingleLogout Boolean
    Enable single logout
    requestSigningCertificate String
    Request signing certificate
    serverProfile String
    method object saml idp server profile of authentication profile

    AuthenticationProfileMethodTacplus, AuthenticationProfileMethodTacplusArgs

    Checkgroup bool
    method tacplus object check group of authentication profile
    ServerProfile string
    method tacplus object check group of authentication profile
    Checkgroup bool
    method tacplus object check group of authentication profile
    ServerProfile string
    method tacplus object check group of authentication profile
    checkgroup Boolean
    method tacplus object check group of authentication profile
    serverProfile String
    method tacplus object check group of authentication profile
    checkgroup boolean
    method tacplus object check group of authentication profile
    serverProfile 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
    serverProfile String
    method tacplus object check group of authentication profile

    AuthenticationProfileMultiFactorAuth, AuthenticationProfileMultiFactorAuthArgs

    Factors List<string>
    Factors
    MfaEnable bool
    Mfa enable
    Factors []string
    Factors
    MfaEnable bool
    Mfa enable
    factors List<String>
    Factors
    mfaEnable Boolean
    Mfa enable
    factors string[]
    Factors
    mfaEnable boolean
    Mfa enable
    factors Sequence[str]
    Factors
    mfa_enable bool
    Mfa enable
    factors List<String>
    Factors
    mfaEnable Boolean
    Mfa enable

    AuthenticationProfileSingleSignOn, AuthenticationProfileSingleSignOnArgs

    KerberosKeytab string
    Kerberos keytab
    Realm string
    Realm
    KerberosKeytab string
    Kerberos keytab
    Realm string
    Realm
    kerberosKeytab String
    Kerberos keytab
    realm String
    Realm
    kerberosKeytab string
    Kerberos keytab
    realm string
    Realm
    kerberos_keytab str
    Kerberos keytab
    realm str
    Realm
    kerberosKeytab 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 scm Terraform Provider.
    scm logo
    Strata Cloud Manager v1.0.1 published on Wednesday, Nov 26, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate