1. Packages
  2. Fortimanager Provider
  3. API Docs
  4. ObjectUserLocal
fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev

fortimanager.ObjectUserLocal

Explore with Pulumi AI

fortimanager logo
fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev

    Configure local users.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const labelname = new fortimanager.ObjectUserLocal("labelname", {
        authConcurrentOverride: "disable",
        authConcurrentValue: 0,
        authtimeout: 0,
        fosid: 0,
        passwds: ["dddExxxxxxxx"],
        ppkSecrets: ["xxxxxddxxxxxxdewewfa"],
        smsServer: "fortiguard",
        status: "enable",
        twoFactor: "disable",
        twoFactorAuthentication: "email",
        twoFactorNotification: "email",
        usernameCaseInsensitivity: "disable",
        usernameCaseSensitivity: "enable",
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    labelname = fortimanager.ObjectUserLocal("labelname",
        auth_concurrent_override="disable",
        auth_concurrent_value=0,
        authtimeout=0,
        fosid=0,
        passwds=["dddExxxxxxxx"],
        ppk_secrets=["xxxxxddxxxxxxdewewfa"],
        sms_server="fortiguard",
        status="enable",
        two_factor="disable",
        two_factor_authentication="email",
        two_factor_notification="email",
        username_case_insensitivity="disable",
        username_case_sensitivity="enable")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/fortimanager/fortimanager"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := fortimanager.NewObjectUserLocal(ctx, "labelname", &fortimanager.ObjectUserLocalArgs{
    			AuthConcurrentOverride: pulumi.String("disable"),
    			AuthConcurrentValue:    pulumi.Float64(0),
    			Authtimeout:            pulumi.Float64(0),
    			Fosid:                  pulumi.Float64(0),
    			Passwds: pulumi.StringArray{
    				pulumi.String("dddExxxxxxxx"),
    			},
    			PpkSecrets: pulumi.StringArray{
    				pulumi.String("xxxxxddxxxxxxdewewfa"),
    			},
    			SmsServer:                 pulumi.String("fortiguard"),
    			Status:                    pulumi.String("enable"),
    			TwoFactor:                 pulumi.String("disable"),
    			TwoFactorAuthentication:   pulumi.String("email"),
    			TwoFactorNotification:     pulumi.String("email"),
    			UsernameCaseInsensitivity: pulumi.String("disable"),
    			UsernameCaseSensitivity:   pulumi.String("enable"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Fortimanager = Pulumi.Fortimanager;
    
    return await Deployment.RunAsync(() => 
    {
        var labelname = new Fortimanager.ObjectUserLocal("labelname", new()
        {
            AuthConcurrentOverride = "disable",
            AuthConcurrentValue = 0,
            Authtimeout = 0,
            Fosid = 0,
            Passwds = new[]
            {
                "dddExxxxxxxx",
            },
            PpkSecrets = new[]
            {
                "xxxxxddxxxxxxdewewfa",
            },
            SmsServer = "fortiguard",
            Status = "enable",
            TwoFactor = "disable",
            TwoFactorAuthentication = "email",
            TwoFactorNotification = "email",
            UsernameCaseInsensitivity = "disable",
            UsernameCaseSensitivity = "enable",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.ObjectUserLocal;
    import com.pulumi.fortimanager.ObjectUserLocalArgs;
    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 labelname = new ObjectUserLocal("labelname", ObjectUserLocalArgs.builder()
                .authConcurrentOverride("disable")
                .authConcurrentValue(0)
                .authtimeout(0)
                .fosid(0)
                .passwds("dddExxxxxxxx")
                .ppkSecrets("xxxxxddxxxxxxdewewfa")
                .smsServer("fortiguard")
                .status("enable")
                .twoFactor("disable")
                .twoFactorAuthentication("email")
                .twoFactorNotification("email")
                .usernameCaseInsensitivity("disable")
                .usernameCaseSensitivity("enable")
                .build());
    
        }
    }
    
    resources:
      labelname:
        type: fortimanager:ObjectUserLocal
        properties:
          authConcurrentOverride: disable
          authConcurrentValue: 0
          authtimeout: 0
          fosid: 0
          passwds:
            - dddExxxxxxxx
          ppkSecrets:
            - xxxxxddxxxxxxdewewfa
          smsServer: fortiguard
          status: enable
          twoFactor: disable
          twoFactorAuthentication: email
          twoFactorNotification: email
          usernameCaseInsensitivity: disable
          usernameCaseSensitivity: enable
    

    Create ObjectUserLocal Resource

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

    Constructor syntax

    new ObjectUserLocal(name: string, args?: ObjectUserLocalArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectUserLocal(resource_name: str,
                        args: Optional[ObjectUserLocalArgs] = None,
                        opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectUserLocal(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        adom: Optional[str] = None,
                        auth_concurrent_override: Optional[str] = None,
                        auth_concurrent_value: Optional[float] = None,
                        authtimeout: Optional[float] = None,
                        email_to: Optional[str] = None,
                        fortitoken: Optional[str] = None,
                        fosid: Optional[float] = None,
                        history0s: Optional[Sequence[str]] = None,
                        history1s: Optional[Sequence[str]] = None,
                        ldap_server: Optional[str] = None,
                        name: Optional[str] = None,
                        object_user_local_id: Optional[str] = None,
                        passwd_policy: Optional[str] = None,
                        passwds: Optional[Sequence[str]] = None,
                        ppk_identity: Optional[str] = None,
                        ppk_secrets: Optional[Sequence[str]] = None,
                        qkd_profile: Optional[str] = None,
                        radius_server: Optional[str] = None,
                        scopetype: Optional[str] = None,
                        sms_custom_server: Optional[str] = None,
                        sms_phone: Optional[str] = None,
                        sms_server: Optional[str] = None,
                        status: Optional[str] = None,
                        tacacs_server: Optional[str] = None,
                        two_factor: Optional[str] = None,
                        two_factor_authentication: Optional[str] = None,
                        two_factor_notification: Optional[str] = None,
                        type: Optional[str] = None,
                        username_case_insensitivity: Optional[str] = None,
                        username_case_sensitivity: Optional[str] = None,
                        username_sensitivity: Optional[str] = None,
                        workstation: Optional[str] = None)
    func NewObjectUserLocal(ctx *Context, name string, args *ObjectUserLocalArgs, opts ...ResourceOption) (*ObjectUserLocal, error)
    public ObjectUserLocal(string name, ObjectUserLocalArgs? args = null, CustomResourceOptions? opts = null)
    public ObjectUserLocal(String name, ObjectUserLocalArgs args)
    public ObjectUserLocal(String name, ObjectUserLocalArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectUserLocal
    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 ObjectUserLocalArgs
    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 ObjectUserLocalArgs
    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 ObjectUserLocalArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectUserLocalArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectUserLocalArgs
    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 objectUserLocalResource = new Fortimanager.ObjectUserLocal("objectUserLocalResource", new()
    {
        Adom = "string",
        AuthConcurrentOverride = "string",
        AuthConcurrentValue = 0,
        Authtimeout = 0,
        EmailTo = "string",
        Fortitoken = "string",
        Fosid = 0,
        History0s = new[]
        {
            "string",
        },
        History1s = new[]
        {
            "string",
        },
        LdapServer = "string",
        Name = "string",
        ObjectUserLocalId = "string",
        PasswdPolicy = "string",
        Passwds = new[]
        {
            "string",
        },
        PpkIdentity = "string",
        PpkSecrets = new[]
        {
            "string",
        },
        QkdProfile = "string",
        RadiusServer = "string",
        Scopetype = "string",
        SmsCustomServer = "string",
        SmsPhone = "string",
        SmsServer = "string",
        Status = "string",
        TacacsServer = "string",
        TwoFactor = "string",
        TwoFactorAuthentication = "string",
        TwoFactorNotification = "string",
        Type = "string",
        UsernameCaseInsensitivity = "string",
        UsernameCaseSensitivity = "string",
        UsernameSensitivity = "string",
        Workstation = "string",
    });
    
    example, err := fortimanager.NewObjectUserLocal(ctx, "objectUserLocalResource", &fortimanager.ObjectUserLocalArgs{
    Adom: pulumi.String("string"),
    AuthConcurrentOverride: pulumi.String("string"),
    AuthConcurrentValue: pulumi.Float64(0),
    Authtimeout: pulumi.Float64(0),
    EmailTo: pulumi.String("string"),
    Fortitoken: pulumi.String("string"),
    Fosid: pulumi.Float64(0),
    History0s: pulumi.StringArray{
    pulumi.String("string"),
    },
    History1s: pulumi.StringArray{
    pulumi.String("string"),
    },
    LdapServer: pulumi.String("string"),
    Name: pulumi.String("string"),
    ObjectUserLocalId: pulumi.String("string"),
    PasswdPolicy: pulumi.String("string"),
    Passwds: pulumi.StringArray{
    pulumi.String("string"),
    },
    PpkIdentity: pulumi.String("string"),
    PpkSecrets: pulumi.StringArray{
    pulumi.String("string"),
    },
    QkdProfile: pulumi.String("string"),
    RadiusServer: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    SmsCustomServer: pulumi.String("string"),
    SmsPhone: pulumi.String("string"),
    SmsServer: pulumi.String("string"),
    Status: pulumi.String("string"),
    TacacsServer: pulumi.String("string"),
    TwoFactor: pulumi.String("string"),
    TwoFactorAuthentication: pulumi.String("string"),
    TwoFactorNotification: pulumi.String("string"),
    Type: pulumi.String("string"),
    UsernameCaseInsensitivity: pulumi.String("string"),
    UsernameCaseSensitivity: pulumi.String("string"),
    UsernameSensitivity: pulumi.String("string"),
    Workstation: pulumi.String("string"),
    })
    
    var objectUserLocalResource = new ObjectUserLocal("objectUserLocalResource", ObjectUserLocalArgs.builder()
        .adom("string")
        .authConcurrentOverride("string")
        .authConcurrentValue(0)
        .authtimeout(0)
        .emailTo("string")
        .fortitoken("string")
        .fosid(0)
        .history0s("string")
        .history1s("string")
        .ldapServer("string")
        .name("string")
        .objectUserLocalId("string")
        .passwdPolicy("string")
        .passwds("string")
        .ppkIdentity("string")
        .ppkSecrets("string")
        .qkdProfile("string")
        .radiusServer("string")
        .scopetype("string")
        .smsCustomServer("string")
        .smsPhone("string")
        .smsServer("string")
        .status("string")
        .tacacsServer("string")
        .twoFactor("string")
        .twoFactorAuthentication("string")
        .twoFactorNotification("string")
        .type("string")
        .usernameCaseInsensitivity("string")
        .usernameCaseSensitivity("string")
        .usernameSensitivity("string")
        .workstation("string")
        .build());
    
    object_user_local_resource = fortimanager.ObjectUserLocal("objectUserLocalResource",
        adom="string",
        auth_concurrent_override="string",
        auth_concurrent_value=0,
        authtimeout=0,
        email_to="string",
        fortitoken="string",
        fosid=0,
        history0s=["string"],
        history1s=["string"],
        ldap_server="string",
        name="string",
        object_user_local_id="string",
        passwd_policy="string",
        passwds=["string"],
        ppk_identity="string",
        ppk_secrets=["string"],
        qkd_profile="string",
        radius_server="string",
        scopetype="string",
        sms_custom_server="string",
        sms_phone="string",
        sms_server="string",
        status="string",
        tacacs_server="string",
        two_factor="string",
        two_factor_authentication="string",
        two_factor_notification="string",
        type="string",
        username_case_insensitivity="string",
        username_case_sensitivity="string",
        username_sensitivity="string",
        workstation="string")
    
    const objectUserLocalResource = new fortimanager.ObjectUserLocal("objectUserLocalResource", {
        adom: "string",
        authConcurrentOverride: "string",
        authConcurrentValue: 0,
        authtimeout: 0,
        emailTo: "string",
        fortitoken: "string",
        fosid: 0,
        history0s: ["string"],
        history1s: ["string"],
        ldapServer: "string",
        name: "string",
        objectUserLocalId: "string",
        passwdPolicy: "string",
        passwds: ["string"],
        ppkIdentity: "string",
        ppkSecrets: ["string"],
        qkdProfile: "string",
        radiusServer: "string",
        scopetype: "string",
        smsCustomServer: "string",
        smsPhone: "string",
        smsServer: "string",
        status: "string",
        tacacsServer: "string",
        twoFactor: "string",
        twoFactorAuthentication: "string",
        twoFactorNotification: "string",
        type: "string",
        usernameCaseInsensitivity: "string",
        usernameCaseSensitivity: "string",
        usernameSensitivity: "string",
        workstation: "string",
    });
    
    type: fortimanager:ObjectUserLocal
    properties:
        adom: string
        authConcurrentOverride: string
        authConcurrentValue: 0
        authtimeout: 0
        emailTo: string
        fortitoken: string
        fosid: 0
        history0s:
            - string
        history1s:
            - string
        ldapServer: string
        name: string
        objectUserLocalId: string
        passwdPolicy: string
        passwds:
            - string
        ppkIdentity: string
        ppkSecrets:
            - string
        qkdProfile: string
        radiusServer: string
        scopetype: string
        smsCustomServer: string
        smsPhone: string
        smsServer: string
        status: string
        tacacsServer: string
        twoFactor: string
        twoFactorAuthentication: string
        twoFactorNotification: string
        type: string
        usernameCaseInsensitivity: string
        usernameCaseSensitivity: string
        usernameSensitivity: string
        workstation: string
    

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

    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    AuthConcurrentOverride string
    Enable/disable overriding the policy-auth-concurrent under config system global. Valid values: disable, enable.
    AuthConcurrentValue double
    Maximum number of concurrent logins permitted from the same user.
    Authtimeout double
    Time in minutes before the authentication timeout for a user is reached.
    EmailTo string
    Two-factor recipient's email address.
    Fortitoken string
    Two-factor recipient's FortiToken serial number.
    Fosid double
    Id.
    History0s List<string>
    History0.
    History1s List<string>
    History1.
    LdapServer string
    Name of LDAP server with which the user must authenticate.
    Name string
    User name.
    ObjectUserLocalId string
    an identifier for the resource with format {{name}}.
    PasswdPolicy string
    Password policy to apply to this user, as defined in config user password-policy.
    Passwds List<string>
    User's password.
    PpkIdentity string
    IKEv2 Postquantum Preshared Key Identity.
    PpkSecrets List<string>
    IKEv2 Postquantum Preshared Key (ASCII string or hexadecimal encoded with a leading 0x).
    QkdProfile string
    Quantum Key Distribution (QKD) profile.
    RadiusServer string
    Name of RADIUS server with which the user must authenticate.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    SmsCustomServer string
    Two-factor recipient's SMS server.
    SmsPhone string
    Two-factor recipient's mobile phone number.
    SmsServer string
    Send SMS through FortiGuard or other external server. Valid values: fortiguard, custom.
    Status string
    Enable/disable allowing the local user to authenticate with the FortiGate unit. Valid values: disable, enable.
    TacacsServer string
    Name of TACACS+ server with which the user must authenticate.
    TwoFactor string
    Enable/disable two-factor authentication. Valid values: disable, fortitoken, email, sms, fortitoken-cloud.
    TwoFactorAuthentication string
    Authentication method by FortiToken Cloud. Valid values: fortitoken, email, sms.
    TwoFactorNotification string
    Notification method for user activation by FortiToken Cloud. Valid values: email, sms.
    Type string
    Authentication method. Valid values: password, radius, tacacs+, ldap.
    UsernameCaseInsensitivity string
    Username-Case-Insensitivity. Valid values: disable, enable.
    UsernameCaseSensitivity string
    Enable/disable case sensitivity when performing username matching (uppercase and lowercase letters are treated either as distinct or equivalent). Valid values: disable, enable.
    UsernameSensitivity string
    Enable/disable case and accent sensitivity when performing username matching (accents are stripped and case is ignored when disabled). Valid values: disable, enable.
    Workstation string
    Name of the remote user workstation, if you want to limit the user to authenticate only from a particular workstation.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    AuthConcurrentOverride string
    Enable/disable overriding the policy-auth-concurrent under config system global. Valid values: disable, enable.
    AuthConcurrentValue float64
    Maximum number of concurrent logins permitted from the same user.
    Authtimeout float64
    Time in minutes before the authentication timeout for a user is reached.
    EmailTo string
    Two-factor recipient's email address.
    Fortitoken string
    Two-factor recipient's FortiToken serial number.
    Fosid float64
    Id.
    History0s []string
    History0.
    History1s []string
    History1.
    LdapServer string
    Name of LDAP server with which the user must authenticate.
    Name string
    User name.
    ObjectUserLocalId string
    an identifier for the resource with format {{name}}.
    PasswdPolicy string
    Password policy to apply to this user, as defined in config user password-policy.
    Passwds []string
    User's password.
    PpkIdentity string
    IKEv2 Postquantum Preshared Key Identity.
    PpkSecrets []string
    IKEv2 Postquantum Preshared Key (ASCII string or hexadecimal encoded with a leading 0x).
    QkdProfile string
    Quantum Key Distribution (QKD) profile.
    RadiusServer string
    Name of RADIUS server with which the user must authenticate.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    SmsCustomServer string
    Two-factor recipient's SMS server.
    SmsPhone string
    Two-factor recipient's mobile phone number.
    SmsServer string
    Send SMS through FortiGuard or other external server. Valid values: fortiguard, custom.
    Status string
    Enable/disable allowing the local user to authenticate with the FortiGate unit. Valid values: disable, enable.
    TacacsServer string
    Name of TACACS+ server with which the user must authenticate.
    TwoFactor string
    Enable/disable two-factor authentication. Valid values: disable, fortitoken, email, sms, fortitoken-cloud.
    TwoFactorAuthentication string
    Authentication method by FortiToken Cloud. Valid values: fortitoken, email, sms.
    TwoFactorNotification string
    Notification method for user activation by FortiToken Cloud. Valid values: email, sms.
    Type string
    Authentication method. Valid values: password, radius, tacacs+, ldap.
    UsernameCaseInsensitivity string
    Username-Case-Insensitivity. Valid values: disable, enable.
    UsernameCaseSensitivity string
    Enable/disable case sensitivity when performing username matching (uppercase and lowercase letters are treated either as distinct or equivalent). Valid values: disable, enable.
    UsernameSensitivity string
    Enable/disable case and accent sensitivity when performing username matching (accents are stripped and case is ignored when disabled). Valid values: disable, enable.
    Workstation string
    Name of the remote user workstation, if you want to limit the user to authenticate only from a particular workstation.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    authConcurrentOverride String
    Enable/disable overriding the policy-auth-concurrent under config system global. Valid values: disable, enable.
    authConcurrentValue Double
    Maximum number of concurrent logins permitted from the same user.
    authtimeout Double
    Time in minutes before the authentication timeout for a user is reached.
    emailTo String
    Two-factor recipient's email address.
    fortitoken String
    Two-factor recipient's FortiToken serial number.
    fosid Double
    Id.
    history0s List<String>
    History0.
    history1s List<String>
    History1.
    ldapServer String
    Name of LDAP server with which the user must authenticate.
    name String
    User name.
    objectUserLocalId String
    an identifier for the resource with format {{name}}.
    passwdPolicy String
    Password policy to apply to this user, as defined in config user password-policy.
    passwds List<String>
    User's password.
    ppkIdentity String
    IKEv2 Postquantum Preshared Key Identity.
    ppkSecrets List<String>
    IKEv2 Postquantum Preshared Key (ASCII string or hexadecimal encoded with a leading 0x).
    qkdProfile String
    Quantum Key Distribution (QKD) profile.
    radiusServer String
    Name of RADIUS server with which the user must authenticate.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    smsCustomServer String
    Two-factor recipient's SMS server.
    smsPhone String
    Two-factor recipient's mobile phone number.
    smsServer String
    Send SMS through FortiGuard or other external server. Valid values: fortiguard, custom.
    status String
    Enable/disable allowing the local user to authenticate with the FortiGate unit. Valid values: disable, enable.
    tacacsServer String
    Name of TACACS+ server with which the user must authenticate.
    twoFactor String
    Enable/disable two-factor authentication. Valid values: disable, fortitoken, email, sms, fortitoken-cloud.
    twoFactorAuthentication String
    Authentication method by FortiToken Cloud. Valid values: fortitoken, email, sms.
    twoFactorNotification String
    Notification method for user activation by FortiToken Cloud. Valid values: email, sms.
    type String
    Authentication method. Valid values: password, radius, tacacs+, ldap.
    usernameCaseInsensitivity String
    Username-Case-Insensitivity. Valid values: disable, enable.
    usernameCaseSensitivity String
    Enable/disable case sensitivity when performing username matching (uppercase and lowercase letters are treated either as distinct or equivalent). Valid values: disable, enable.
    usernameSensitivity String
    Enable/disable case and accent sensitivity when performing username matching (accents are stripped and case is ignored when disabled). Valid values: disable, enable.
    workstation String
    Name of the remote user workstation, if you want to limit the user to authenticate only from a particular workstation.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    authConcurrentOverride string
    Enable/disable overriding the policy-auth-concurrent under config system global. Valid values: disable, enable.
    authConcurrentValue number
    Maximum number of concurrent logins permitted from the same user.
    authtimeout number
    Time in minutes before the authentication timeout for a user is reached.
    emailTo string
    Two-factor recipient's email address.
    fortitoken string
    Two-factor recipient's FortiToken serial number.
    fosid number
    Id.
    history0s string[]
    History0.
    history1s string[]
    History1.
    ldapServer string
    Name of LDAP server with which the user must authenticate.
    name string
    User name.
    objectUserLocalId string
    an identifier for the resource with format {{name}}.
    passwdPolicy string
    Password policy to apply to this user, as defined in config user password-policy.
    passwds string[]
    User's password.
    ppkIdentity string
    IKEv2 Postquantum Preshared Key Identity.
    ppkSecrets string[]
    IKEv2 Postquantum Preshared Key (ASCII string or hexadecimal encoded with a leading 0x).
    qkdProfile string
    Quantum Key Distribution (QKD) profile.
    radiusServer string
    Name of RADIUS server with which the user must authenticate.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    smsCustomServer string
    Two-factor recipient's SMS server.
    smsPhone string
    Two-factor recipient's mobile phone number.
    smsServer string
    Send SMS through FortiGuard or other external server. Valid values: fortiguard, custom.
    status string
    Enable/disable allowing the local user to authenticate with the FortiGate unit. Valid values: disable, enable.
    tacacsServer string
    Name of TACACS+ server with which the user must authenticate.
    twoFactor string
    Enable/disable two-factor authentication. Valid values: disable, fortitoken, email, sms, fortitoken-cloud.
    twoFactorAuthentication string
    Authentication method by FortiToken Cloud. Valid values: fortitoken, email, sms.
    twoFactorNotification string
    Notification method for user activation by FortiToken Cloud. Valid values: email, sms.
    type string
    Authentication method. Valid values: password, radius, tacacs+, ldap.
    usernameCaseInsensitivity string
    Username-Case-Insensitivity. Valid values: disable, enable.
    usernameCaseSensitivity string
    Enable/disable case sensitivity when performing username matching (uppercase and lowercase letters are treated either as distinct or equivalent). Valid values: disable, enable.
    usernameSensitivity string
    Enable/disable case and accent sensitivity when performing username matching (accents are stripped and case is ignored when disabled). Valid values: disable, enable.
    workstation string
    Name of the remote user workstation, if you want to limit the user to authenticate only from a particular workstation.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    auth_concurrent_override str
    Enable/disable overriding the policy-auth-concurrent under config system global. Valid values: disable, enable.
    auth_concurrent_value float
    Maximum number of concurrent logins permitted from the same user.
    authtimeout float
    Time in minutes before the authentication timeout for a user is reached.
    email_to str
    Two-factor recipient's email address.
    fortitoken str
    Two-factor recipient's FortiToken serial number.
    fosid float
    Id.
    history0s Sequence[str]
    History0.
    history1s Sequence[str]
    History1.
    ldap_server str
    Name of LDAP server with which the user must authenticate.
    name str
    User name.
    object_user_local_id str
    an identifier for the resource with format {{name}}.
    passwd_policy str
    Password policy to apply to this user, as defined in config user password-policy.
    passwds Sequence[str]
    User's password.
    ppk_identity str
    IKEv2 Postquantum Preshared Key Identity.
    ppk_secrets Sequence[str]
    IKEv2 Postquantum Preshared Key (ASCII string or hexadecimal encoded with a leading 0x).
    qkd_profile str
    Quantum Key Distribution (QKD) profile.
    radius_server str
    Name of RADIUS server with which the user must authenticate.
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    sms_custom_server str
    Two-factor recipient's SMS server.
    sms_phone str
    Two-factor recipient's mobile phone number.
    sms_server str
    Send SMS through FortiGuard or other external server. Valid values: fortiguard, custom.
    status str
    Enable/disable allowing the local user to authenticate with the FortiGate unit. Valid values: disable, enable.
    tacacs_server str
    Name of TACACS+ server with which the user must authenticate.
    two_factor str
    Enable/disable two-factor authentication. Valid values: disable, fortitoken, email, sms, fortitoken-cloud.
    two_factor_authentication str
    Authentication method by FortiToken Cloud. Valid values: fortitoken, email, sms.
    two_factor_notification str
    Notification method for user activation by FortiToken Cloud. Valid values: email, sms.
    type str
    Authentication method. Valid values: password, radius, tacacs+, ldap.
    username_case_insensitivity str
    Username-Case-Insensitivity. Valid values: disable, enable.
    username_case_sensitivity str
    Enable/disable case sensitivity when performing username matching (uppercase and lowercase letters are treated either as distinct or equivalent). Valid values: disable, enable.
    username_sensitivity str
    Enable/disable case and accent sensitivity when performing username matching (accents are stripped and case is ignored when disabled). Valid values: disable, enable.
    workstation str
    Name of the remote user workstation, if you want to limit the user to authenticate only from a particular workstation.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    authConcurrentOverride String
    Enable/disable overriding the policy-auth-concurrent under config system global. Valid values: disable, enable.
    authConcurrentValue Number
    Maximum number of concurrent logins permitted from the same user.
    authtimeout Number
    Time in minutes before the authentication timeout for a user is reached.
    emailTo String
    Two-factor recipient's email address.
    fortitoken String
    Two-factor recipient's FortiToken serial number.
    fosid Number
    Id.
    history0s List<String>
    History0.
    history1s List<String>
    History1.
    ldapServer String
    Name of LDAP server with which the user must authenticate.
    name String
    User name.
    objectUserLocalId String
    an identifier for the resource with format {{name}}.
    passwdPolicy String
    Password policy to apply to this user, as defined in config user password-policy.
    passwds List<String>
    User's password.
    ppkIdentity String
    IKEv2 Postquantum Preshared Key Identity.
    ppkSecrets List<String>
    IKEv2 Postquantum Preshared Key (ASCII string or hexadecimal encoded with a leading 0x).
    qkdProfile String
    Quantum Key Distribution (QKD) profile.
    radiusServer String
    Name of RADIUS server with which the user must authenticate.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    smsCustomServer String
    Two-factor recipient's SMS server.
    smsPhone String
    Two-factor recipient's mobile phone number.
    smsServer String
    Send SMS through FortiGuard or other external server. Valid values: fortiguard, custom.
    status String
    Enable/disable allowing the local user to authenticate with the FortiGate unit. Valid values: disable, enable.
    tacacsServer String
    Name of TACACS+ server with which the user must authenticate.
    twoFactor String
    Enable/disable two-factor authentication. Valid values: disable, fortitoken, email, sms, fortitoken-cloud.
    twoFactorAuthentication String
    Authentication method by FortiToken Cloud. Valid values: fortitoken, email, sms.
    twoFactorNotification String
    Notification method for user activation by FortiToken Cloud. Valid values: email, sms.
    type String
    Authentication method. Valid values: password, radius, tacacs+, ldap.
    usernameCaseInsensitivity String
    Username-Case-Insensitivity. Valid values: disable, enable.
    usernameCaseSensitivity String
    Enable/disable case sensitivity when performing username matching (uppercase and lowercase letters are treated either as distinct or equivalent). Valid values: disable, enable.
    usernameSensitivity String
    Enable/disable case and accent sensitivity when performing username matching (accents are stripped and case is ignored when disabled). Valid values: disable, enable.
    workstation String
    Name of the remote user workstation, if you want to limit the user to authenticate only from a particular workstation.

    Outputs

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

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

    Look up Existing ObjectUserLocal Resource

    Get an existing ObjectUserLocal 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?: ObjectUserLocalState, opts?: CustomResourceOptions): ObjectUserLocal
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            adom: Optional[str] = None,
            auth_concurrent_override: Optional[str] = None,
            auth_concurrent_value: Optional[float] = None,
            authtimeout: Optional[float] = None,
            email_to: Optional[str] = None,
            fortitoken: Optional[str] = None,
            fosid: Optional[float] = None,
            history0s: Optional[Sequence[str]] = None,
            history1s: Optional[Sequence[str]] = None,
            ldap_server: Optional[str] = None,
            name: Optional[str] = None,
            object_user_local_id: Optional[str] = None,
            passwd_policy: Optional[str] = None,
            passwds: Optional[Sequence[str]] = None,
            ppk_identity: Optional[str] = None,
            ppk_secrets: Optional[Sequence[str]] = None,
            qkd_profile: Optional[str] = None,
            radius_server: Optional[str] = None,
            scopetype: Optional[str] = None,
            sms_custom_server: Optional[str] = None,
            sms_phone: Optional[str] = None,
            sms_server: Optional[str] = None,
            status: Optional[str] = None,
            tacacs_server: Optional[str] = None,
            two_factor: Optional[str] = None,
            two_factor_authentication: Optional[str] = None,
            two_factor_notification: Optional[str] = None,
            type: Optional[str] = None,
            username_case_insensitivity: Optional[str] = None,
            username_case_sensitivity: Optional[str] = None,
            username_sensitivity: Optional[str] = None,
            workstation: Optional[str] = None) -> ObjectUserLocal
    func GetObjectUserLocal(ctx *Context, name string, id IDInput, state *ObjectUserLocalState, opts ...ResourceOption) (*ObjectUserLocal, error)
    public static ObjectUserLocal Get(string name, Input<string> id, ObjectUserLocalState? state, CustomResourceOptions? opts = null)
    public static ObjectUserLocal get(String name, Output<String> id, ObjectUserLocalState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectUserLocal    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:
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    AuthConcurrentOverride string
    Enable/disable overriding the policy-auth-concurrent under config system global. Valid values: disable, enable.
    AuthConcurrentValue double
    Maximum number of concurrent logins permitted from the same user.
    Authtimeout double
    Time in minutes before the authentication timeout for a user is reached.
    EmailTo string
    Two-factor recipient's email address.
    Fortitoken string
    Two-factor recipient's FortiToken serial number.
    Fosid double
    Id.
    History0s List<string>
    History0.
    History1s List<string>
    History1.
    LdapServer string
    Name of LDAP server with which the user must authenticate.
    Name string
    User name.
    ObjectUserLocalId string
    an identifier for the resource with format {{name}}.
    PasswdPolicy string
    Password policy to apply to this user, as defined in config user password-policy.
    Passwds List<string>
    User's password.
    PpkIdentity string
    IKEv2 Postquantum Preshared Key Identity.
    PpkSecrets List<string>
    IKEv2 Postquantum Preshared Key (ASCII string or hexadecimal encoded with a leading 0x).
    QkdProfile string
    Quantum Key Distribution (QKD) profile.
    RadiusServer string
    Name of RADIUS server with which the user must authenticate.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    SmsCustomServer string
    Two-factor recipient's SMS server.
    SmsPhone string
    Two-factor recipient's mobile phone number.
    SmsServer string
    Send SMS through FortiGuard or other external server. Valid values: fortiguard, custom.
    Status string
    Enable/disable allowing the local user to authenticate with the FortiGate unit. Valid values: disable, enable.
    TacacsServer string
    Name of TACACS+ server with which the user must authenticate.
    TwoFactor string
    Enable/disable two-factor authentication. Valid values: disable, fortitoken, email, sms, fortitoken-cloud.
    TwoFactorAuthentication string
    Authentication method by FortiToken Cloud. Valid values: fortitoken, email, sms.
    TwoFactorNotification string
    Notification method for user activation by FortiToken Cloud. Valid values: email, sms.
    Type string
    Authentication method. Valid values: password, radius, tacacs+, ldap.
    UsernameCaseInsensitivity string
    Username-Case-Insensitivity. Valid values: disable, enable.
    UsernameCaseSensitivity string
    Enable/disable case sensitivity when performing username matching (uppercase and lowercase letters are treated either as distinct or equivalent). Valid values: disable, enable.
    UsernameSensitivity string
    Enable/disable case and accent sensitivity when performing username matching (accents are stripped and case is ignored when disabled). Valid values: disable, enable.
    Workstation string
    Name of the remote user workstation, if you want to limit the user to authenticate only from a particular workstation.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    AuthConcurrentOverride string
    Enable/disable overriding the policy-auth-concurrent under config system global. Valid values: disable, enable.
    AuthConcurrentValue float64
    Maximum number of concurrent logins permitted from the same user.
    Authtimeout float64
    Time in minutes before the authentication timeout for a user is reached.
    EmailTo string
    Two-factor recipient's email address.
    Fortitoken string
    Two-factor recipient's FortiToken serial number.
    Fosid float64
    Id.
    History0s []string
    History0.
    History1s []string
    History1.
    LdapServer string
    Name of LDAP server with which the user must authenticate.
    Name string
    User name.
    ObjectUserLocalId string
    an identifier for the resource with format {{name}}.
    PasswdPolicy string
    Password policy to apply to this user, as defined in config user password-policy.
    Passwds []string
    User's password.
    PpkIdentity string
    IKEv2 Postquantum Preshared Key Identity.
    PpkSecrets []string
    IKEv2 Postquantum Preshared Key (ASCII string or hexadecimal encoded with a leading 0x).
    QkdProfile string
    Quantum Key Distribution (QKD) profile.
    RadiusServer string
    Name of RADIUS server with which the user must authenticate.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    SmsCustomServer string
    Two-factor recipient's SMS server.
    SmsPhone string
    Two-factor recipient's mobile phone number.
    SmsServer string
    Send SMS through FortiGuard or other external server. Valid values: fortiguard, custom.
    Status string
    Enable/disable allowing the local user to authenticate with the FortiGate unit. Valid values: disable, enable.
    TacacsServer string
    Name of TACACS+ server with which the user must authenticate.
    TwoFactor string
    Enable/disable two-factor authentication. Valid values: disable, fortitoken, email, sms, fortitoken-cloud.
    TwoFactorAuthentication string
    Authentication method by FortiToken Cloud. Valid values: fortitoken, email, sms.
    TwoFactorNotification string
    Notification method for user activation by FortiToken Cloud. Valid values: email, sms.
    Type string
    Authentication method. Valid values: password, radius, tacacs+, ldap.
    UsernameCaseInsensitivity string
    Username-Case-Insensitivity. Valid values: disable, enable.
    UsernameCaseSensitivity string
    Enable/disable case sensitivity when performing username matching (uppercase and lowercase letters are treated either as distinct or equivalent). Valid values: disable, enable.
    UsernameSensitivity string
    Enable/disable case and accent sensitivity when performing username matching (accents are stripped and case is ignored when disabled). Valid values: disable, enable.
    Workstation string
    Name of the remote user workstation, if you want to limit the user to authenticate only from a particular workstation.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    authConcurrentOverride String
    Enable/disable overriding the policy-auth-concurrent under config system global. Valid values: disable, enable.
    authConcurrentValue Double
    Maximum number of concurrent logins permitted from the same user.
    authtimeout Double
    Time in minutes before the authentication timeout for a user is reached.
    emailTo String
    Two-factor recipient's email address.
    fortitoken String
    Two-factor recipient's FortiToken serial number.
    fosid Double
    Id.
    history0s List<String>
    History0.
    history1s List<String>
    History1.
    ldapServer String
    Name of LDAP server with which the user must authenticate.
    name String
    User name.
    objectUserLocalId String
    an identifier for the resource with format {{name}}.
    passwdPolicy String
    Password policy to apply to this user, as defined in config user password-policy.
    passwds List<String>
    User's password.
    ppkIdentity String
    IKEv2 Postquantum Preshared Key Identity.
    ppkSecrets List<String>
    IKEv2 Postquantum Preshared Key (ASCII string or hexadecimal encoded with a leading 0x).
    qkdProfile String
    Quantum Key Distribution (QKD) profile.
    radiusServer String
    Name of RADIUS server with which the user must authenticate.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    smsCustomServer String
    Two-factor recipient's SMS server.
    smsPhone String
    Two-factor recipient's mobile phone number.
    smsServer String
    Send SMS through FortiGuard or other external server. Valid values: fortiguard, custom.
    status String
    Enable/disable allowing the local user to authenticate with the FortiGate unit. Valid values: disable, enable.
    tacacsServer String
    Name of TACACS+ server with which the user must authenticate.
    twoFactor String
    Enable/disable two-factor authentication. Valid values: disable, fortitoken, email, sms, fortitoken-cloud.
    twoFactorAuthentication String
    Authentication method by FortiToken Cloud. Valid values: fortitoken, email, sms.
    twoFactorNotification String
    Notification method for user activation by FortiToken Cloud. Valid values: email, sms.
    type String
    Authentication method. Valid values: password, radius, tacacs+, ldap.
    usernameCaseInsensitivity String
    Username-Case-Insensitivity. Valid values: disable, enable.
    usernameCaseSensitivity String
    Enable/disable case sensitivity when performing username matching (uppercase and lowercase letters are treated either as distinct or equivalent). Valid values: disable, enable.
    usernameSensitivity String
    Enable/disable case and accent sensitivity when performing username matching (accents are stripped and case is ignored when disabled). Valid values: disable, enable.
    workstation String
    Name of the remote user workstation, if you want to limit the user to authenticate only from a particular workstation.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    authConcurrentOverride string
    Enable/disable overriding the policy-auth-concurrent under config system global. Valid values: disable, enable.
    authConcurrentValue number
    Maximum number of concurrent logins permitted from the same user.
    authtimeout number
    Time in minutes before the authentication timeout for a user is reached.
    emailTo string
    Two-factor recipient's email address.
    fortitoken string
    Two-factor recipient's FortiToken serial number.
    fosid number
    Id.
    history0s string[]
    History0.
    history1s string[]
    History1.
    ldapServer string
    Name of LDAP server with which the user must authenticate.
    name string
    User name.
    objectUserLocalId string
    an identifier for the resource with format {{name}}.
    passwdPolicy string
    Password policy to apply to this user, as defined in config user password-policy.
    passwds string[]
    User's password.
    ppkIdentity string
    IKEv2 Postquantum Preshared Key Identity.
    ppkSecrets string[]
    IKEv2 Postquantum Preshared Key (ASCII string or hexadecimal encoded with a leading 0x).
    qkdProfile string
    Quantum Key Distribution (QKD) profile.
    radiusServer string
    Name of RADIUS server with which the user must authenticate.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    smsCustomServer string
    Two-factor recipient's SMS server.
    smsPhone string
    Two-factor recipient's mobile phone number.
    smsServer string
    Send SMS through FortiGuard or other external server. Valid values: fortiguard, custom.
    status string
    Enable/disable allowing the local user to authenticate with the FortiGate unit. Valid values: disable, enable.
    tacacsServer string
    Name of TACACS+ server with which the user must authenticate.
    twoFactor string
    Enable/disable two-factor authentication. Valid values: disable, fortitoken, email, sms, fortitoken-cloud.
    twoFactorAuthentication string
    Authentication method by FortiToken Cloud. Valid values: fortitoken, email, sms.
    twoFactorNotification string
    Notification method for user activation by FortiToken Cloud. Valid values: email, sms.
    type string
    Authentication method. Valid values: password, radius, tacacs+, ldap.
    usernameCaseInsensitivity string
    Username-Case-Insensitivity. Valid values: disable, enable.
    usernameCaseSensitivity string
    Enable/disable case sensitivity when performing username matching (uppercase and lowercase letters are treated either as distinct or equivalent). Valid values: disable, enable.
    usernameSensitivity string
    Enable/disable case and accent sensitivity when performing username matching (accents are stripped and case is ignored when disabled). Valid values: disable, enable.
    workstation string
    Name of the remote user workstation, if you want to limit the user to authenticate only from a particular workstation.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    auth_concurrent_override str
    Enable/disable overriding the policy-auth-concurrent under config system global. Valid values: disable, enable.
    auth_concurrent_value float
    Maximum number of concurrent logins permitted from the same user.
    authtimeout float
    Time in minutes before the authentication timeout for a user is reached.
    email_to str
    Two-factor recipient's email address.
    fortitoken str
    Two-factor recipient's FortiToken serial number.
    fosid float
    Id.
    history0s Sequence[str]
    History0.
    history1s Sequence[str]
    History1.
    ldap_server str
    Name of LDAP server with which the user must authenticate.
    name str
    User name.
    object_user_local_id str
    an identifier for the resource with format {{name}}.
    passwd_policy str
    Password policy to apply to this user, as defined in config user password-policy.
    passwds Sequence[str]
    User's password.
    ppk_identity str
    IKEv2 Postquantum Preshared Key Identity.
    ppk_secrets Sequence[str]
    IKEv2 Postquantum Preshared Key (ASCII string or hexadecimal encoded with a leading 0x).
    qkd_profile str
    Quantum Key Distribution (QKD) profile.
    radius_server str
    Name of RADIUS server with which the user must authenticate.
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    sms_custom_server str
    Two-factor recipient's SMS server.
    sms_phone str
    Two-factor recipient's mobile phone number.
    sms_server str
    Send SMS through FortiGuard or other external server. Valid values: fortiguard, custom.
    status str
    Enable/disable allowing the local user to authenticate with the FortiGate unit. Valid values: disable, enable.
    tacacs_server str
    Name of TACACS+ server with which the user must authenticate.
    two_factor str
    Enable/disable two-factor authentication. Valid values: disable, fortitoken, email, sms, fortitoken-cloud.
    two_factor_authentication str
    Authentication method by FortiToken Cloud. Valid values: fortitoken, email, sms.
    two_factor_notification str
    Notification method for user activation by FortiToken Cloud. Valid values: email, sms.
    type str
    Authentication method. Valid values: password, radius, tacacs+, ldap.
    username_case_insensitivity str
    Username-Case-Insensitivity. Valid values: disable, enable.
    username_case_sensitivity str
    Enable/disable case sensitivity when performing username matching (uppercase and lowercase letters are treated either as distinct or equivalent). Valid values: disable, enable.
    username_sensitivity str
    Enable/disable case and accent sensitivity when performing username matching (accents are stripped and case is ignored when disabled). Valid values: disable, enable.
    workstation str
    Name of the remote user workstation, if you want to limit the user to authenticate only from a particular workstation.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    authConcurrentOverride String
    Enable/disable overriding the policy-auth-concurrent under config system global. Valid values: disable, enable.
    authConcurrentValue Number
    Maximum number of concurrent logins permitted from the same user.
    authtimeout Number
    Time in minutes before the authentication timeout for a user is reached.
    emailTo String
    Two-factor recipient's email address.
    fortitoken String
    Two-factor recipient's FortiToken serial number.
    fosid Number
    Id.
    history0s List<String>
    History0.
    history1s List<String>
    History1.
    ldapServer String
    Name of LDAP server with which the user must authenticate.
    name String
    User name.
    objectUserLocalId String
    an identifier for the resource with format {{name}}.
    passwdPolicy String
    Password policy to apply to this user, as defined in config user password-policy.
    passwds List<String>
    User's password.
    ppkIdentity String
    IKEv2 Postquantum Preshared Key Identity.
    ppkSecrets List<String>
    IKEv2 Postquantum Preshared Key (ASCII string or hexadecimal encoded with a leading 0x).
    qkdProfile String
    Quantum Key Distribution (QKD) profile.
    radiusServer String
    Name of RADIUS server with which the user must authenticate.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    smsCustomServer String
    Two-factor recipient's SMS server.
    smsPhone String
    Two-factor recipient's mobile phone number.
    smsServer String
    Send SMS through FortiGuard or other external server. Valid values: fortiguard, custom.
    status String
    Enable/disable allowing the local user to authenticate with the FortiGate unit. Valid values: disable, enable.
    tacacsServer String
    Name of TACACS+ server with which the user must authenticate.
    twoFactor String
    Enable/disable two-factor authentication. Valid values: disable, fortitoken, email, sms, fortitoken-cloud.
    twoFactorAuthentication String
    Authentication method by FortiToken Cloud. Valid values: fortitoken, email, sms.
    twoFactorNotification String
    Notification method for user activation by FortiToken Cloud. Valid values: email, sms.
    type String
    Authentication method. Valid values: password, radius, tacacs+, ldap.
    usernameCaseInsensitivity String
    Username-Case-Insensitivity. Valid values: disable, enable.
    usernameCaseSensitivity String
    Enable/disable case sensitivity when performing username matching (uppercase and lowercase letters are treated either as distinct or equivalent). Valid values: disable, enable.
    usernameSensitivity String
    Enable/disable case and accent sensitivity when performing username matching (accents are stripped and case is ignored when disabled). Valid values: disable, enable.
    workstation String
    Name of the remote user workstation, if you want to limit the user to authenticate only from a particular workstation.

    Import

    ObjectUser Local can be imported using any of these accepted formats:

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectUserLocal:ObjectUserLocal labelname {{name}}
    

    $ unset “FORTIMANAGER_IMPORT_TABLE”

    -> Hint: The scopetype and adom for import will directly inherit the scopetype and adom configuration of the provider.

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    fortimanager fortinetdev/terraform-provider-fortimanager
    License
    Notes
    This Pulumi package is based on the fortimanager Terraform Provider.
    fortimanager logo
    fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev