fortimanager.ObjectUserLocal
Explore with Pulumi AI
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
isadom
, otherwise the value of adom in the provider will be inherited. - Auth
Concurrent stringOverride - Enable/disable overriding the policy-auth-concurrent under config system global. Valid values:
disable
,enable
. - Auth
Concurrent doubleValue - Maximum number of concurrent logins permitted from the same user.
- Authtimeout double
- Time in minutes before the authentication timeout for a user is reached.
- Email
To 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.
- Ldap
Server string - Name of LDAP server with which the user must authenticate.
- Name string
- User name.
- Object
User stringLocal Id - an identifier for the resource with format {{name}}.
- Passwd
Policy string - Password policy to apply to this user, as defined in config user password-policy.
- Passwds List<string>
- User's password.
- Ppk
Identity string - IKEv2 Postquantum Preshared Key Identity.
- Ppk
Secrets List<string> - IKEv2 Postquantum Preshared Key (ASCII string or hexadecimal encoded with a leading 0x).
- Qkd
Profile string - Quantum Key Distribution (QKD) profile.
- Radius
Server 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Sms
Custom stringServer - Two-factor recipient's SMS server.
- Sms
Phone string - Two-factor recipient's mobile phone number.
- Sms
Server 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
. - Tacacs
Server string - Name of TACACS+ server with which the user must authenticate.
- Two
Factor string - Enable/disable two-factor authentication. Valid values:
disable
,fortitoken
,email
,sms
,fortitoken-cloud
. - Two
Factor stringAuthentication - Authentication method by FortiToken Cloud. Valid values:
fortitoken
,email
,sms
. - Two
Factor stringNotification - Notification method for user activation by FortiToken Cloud. Valid values:
email
,sms
. - Type string
- Authentication method. Valid values:
password
,radius
,tacacs+
,ldap
. - Username
Case stringInsensitivity - Username-Case-Insensitivity. Valid values:
disable
,enable
. - Username
Case stringSensitivity - 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 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
isadom
, otherwise the value of adom in the provider will be inherited. - Auth
Concurrent stringOverride - Enable/disable overriding the policy-auth-concurrent under config system global. Valid values:
disable
,enable
. - Auth
Concurrent float64Value - Maximum number of concurrent logins permitted from the same user.
- Authtimeout float64
- Time in minutes before the authentication timeout for a user is reached.
- Email
To 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.
- Ldap
Server string - Name of LDAP server with which the user must authenticate.
- Name string
- User name.
- Object
User stringLocal Id - an identifier for the resource with format {{name}}.
- Passwd
Policy string - Password policy to apply to this user, as defined in config user password-policy.
- Passwds []string
- User's password.
- Ppk
Identity string - IKEv2 Postquantum Preshared Key Identity.
- Ppk
Secrets []string - IKEv2 Postquantum Preshared Key (ASCII string or hexadecimal encoded with a leading 0x).
- Qkd
Profile string - Quantum Key Distribution (QKD) profile.
- Radius
Server 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Sms
Custom stringServer - Two-factor recipient's SMS server.
- Sms
Phone string - Two-factor recipient's mobile phone number.
- Sms
Server 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
. - Tacacs
Server string - Name of TACACS+ server with which the user must authenticate.
- Two
Factor string - Enable/disable two-factor authentication. Valid values:
disable
,fortitoken
,email
,sms
,fortitoken-cloud
. - Two
Factor stringAuthentication - Authentication method by FortiToken Cloud. Valid values:
fortitoken
,email
,sms
. - Two
Factor stringNotification - Notification method for user activation by FortiToken Cloud. Valid values:
email
,sms
. - Type string
- Authentication method. Valid values:
password
,radius
,tacacs+
,ldap
. - Username
Case stringInsensitivity - Username-Case-Insensitivity. Valid values:
disable
,enable
. - Username
Case stringSensitivity - 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 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
isadom
, otherwise the value of adom in the provider will be inherited. - auth
Concurrent StringOverride - Enable/disable overriding the policy-auth-concurrent under config system global. Valid values:
disable
,enable
. - auth
Concurrent DoubleValue - Maximum number of concurrent logins permitted from the same user.
- authtimeout Double
- Time in minutes before the authentication timeout for a user is reached.
- email
To 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.
- ldap
Server String - Name of LDAP server with which the user must authenticate.
- name String
- User name.
- object
User StringLocal Id - an identifier for the resource with format {{name}}.
- passwd
Policy String - Password policy to apply to this user, as defined in config user password-policy.
- passwds List<String>
- User's password.
- ppk
Identity String - IKEv2 Postquantum Preshared Key Identity.
- ppk
Secrets List<String> - IKEv2 Postquantum Preshared Key (ASCII string or hexadecimal encoded with a leading 0x).
- qkd
Profile String - Quantum Key Distribution (QKD) profile.
- radius
Server 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - sms
Custom StringServer - Two-factor recipient's SMS server.
- sms
Phone String - Two-factor recipient's mobile phone number.
- sms
Server 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
. - tacacs
Server String - Name of TACACS+ server with which the user must authenticate.
- two
Factor String - Enable/disable two-factor authentication. Valid values:
disable
,fortitoken
,email
,sms
,fortitoken-cloud
. - two
Factor StringAuthentication - Authentication method by FortiToken Cloud. Valid values:
fortitoken
,email
,sms
. - two
Factor StringNotification - Notification method for user activation by FortiToken Cloud. Valid values:
email
,sms
. - type String
- Authentication method. Valid values:
password
,radius
,tacacs+
,ldap
. - username
Case StringInsensitivity - Username-Case-Insensitivity. Valid values:
disable
,enable
. - username
Case StringSensitivity - 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 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
isadom
, otherwise the value of adom in the provider will be inherited. - auth
Concurrent stringOverride - Enable/disable overriding the policy-auth-concurrent under config system global. Valid values:
disable
,enable
. - auth
Concurrent numberValue - Maximum number of concurrent logins permitted from the same user.
- authtimeout number
- Time in minutes before the authentication timeout for a user is reached.
- email
To 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.
- ldap
Server string - Name of LDAP server with which the user must authenticate.
- name string
- User name.
- object
User stringLocal Id - an identifier for the resource with format {{name}}.
- passwd
Policy string - Password policy to apply to this user, as defined in config user password-policy.
- passwds string[]
- User's password.
- ppk
Identity string - IKEv2 Postquantum Preshared Key Identity.
- ppk
Secrets string[] - IKEv2 Postquantum Preshared Key (ASCII string or hexadecimal encoded with a leading 0x).
- qkd
Profile string - Quantum Key Distribution (QKD) profile.
- radius
Server 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - sms
Custom stringServer - Two-factor recipient's SMS server.
- sms
Phone string - Two-factor recipient's mobile phone number.
- sms
Server 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
. - tacacs
Server string - Name of TACACS+ server with which the user must authenticate.
- two
Factor string - Enable/disable two-factor authentication. Valid values:
disable
,fortitoken
,email
,sms
,fortitoken-cloud
. - two
Factor stringAuthentication - Authentication method by FortiToken Cloud. Valid values:
fortitoken
,email
,sms
. - two
Factor stringNotification - Notification method for user activation by FortiToken Cloud. Valid values:
email
,sms
. - type string
- Authentication method. Valid values:
password
,radius
,tacacs+
,ldap
. - username
Case stringInsensitivity - Username-Case-Insensitivity. Valid values:
disable
,enable
. - username
Case stringSensitivity - 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 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
isadom
, otherwise the value of adom in the provider will be inherited. - auth_
concurrent_ stroverride - Enable/disable overriding the policy-auth-concurrent under config system global. Valid values:
disable
,enable
. - auth_
concurrent_ floatvalue - 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_ strlocal_ id - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - sms_
custom_ strserver - 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_ strauthentication - Authentication method by FortiToken Cloud. Valid values:
fortitoken
,email
,sms
. - two_
factor_ strnotification - Notification method for user activation by FortiToken Cloud. Valid values:
email
,sms
. - type str
- Authentication method. Valid values:
password
,radius
,tacacs+
,ldap
. - username_
case_ strinsensitivity - Username-Case-Insensitivity. Valid values:
disable
,enable
. - username_
case_ strsensitivity - 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
isadom
, otherwise the value of adom in the provider will be inherited. - auth
Concurrent StringOverride - Enable/disable overriding the policy-auth-concurrent under config system global. Valid values:
disable
,enable
. - auth
Concurrent NumberValue - Maximum number of concurrent logins permitted from the same user.
- authtimeout Number
- Time in minutes before the authentication timeout for a user is reached.
- email
To 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.
- ldap
Server String - Name of LDAP server with which the user must authenticate.
- name String
- User name.
- object
User StringLocal Id - an identifier for the resource with format {{name}}.
- passwd
Policy String - Password policy to apply to this user, as defined in config user password-policy.
- passwds List<String>
- User's password.
- ppk
Identity String - IKEv2 Postquantum Preshared Key Identity.
- ppk
Secrets List<String> - IKEv2 Postquantum Preshared Key (ASCII string or hexadecimal encoded with a leading 0x).
- qkd
Profile String - Quantum Key Distribution (QKD) profile.
- radius
Server 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - sms
Custom StringServer - Two-factor recipient's SMS server.
- sms
Phone String - Two-factor recipient's mobile phone number.
- sms
Server 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
. - tacacs
Server String - Name of TACACS+ server with which the user must authenticate.
- two
Factor String - Enable/disable two-factor authentication. Valid values:
disable
,fortitoken
,email
,sms
,fortitoken-cloud
. - two
Factor StringAuthentication - Authentication method by FortiToken Cloud. Valid values:
fortitoken
,email
,sms
. - two
Factor StringNotification - Notification method for user activation by FortiToken Cloud. Valid values:
email
,sms
. - type String
- Authentication method. Valid values:
password
,radius
,tacacs+
,ldap
. - username
Case StringInsensitivity - Username-Case-Insensitivity. Valid values:
disable
,enable
. - username
Case StringSensitivity - 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 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.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Auth
Concurrent stringOverride - Enable/disable overriding the policy-auth-concurrent under config system global. Valid values:
disable
,enable
. - Auth
Concurrent doubleValue - Maximum number of concurrent logins permitted from the same user.
- Authtimeout double
- Time in minutes before the authentication timeout for a user is reached.
- Email
To 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.
- Ldap
Server string - Name of LDAP server with which the user must authenticate.
- Name string
- User name.
- Object
User stringLocal Id - an identifier for the resource with format {{name}}.
- Passwd
Policy string - Password policy to apply to this user, as defined in config user password-policy.
- Passwds List<string>
- User's password.
- Ppk
Identity string - IKEv2 Postquantum Preshared Key Identity.
- Ppk
Secrets List<string> - IKEv2 Postquantum Preshared Key (ASCII string or hexadecimal encoded with a leading 0x).
- Qkd
Profile string - Quantum Key Distribution (QKD) profile.
- Radius
Server 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Sms
Custom stringServer - Two-factor recipient's SMS server.
- Sms
Phone string - Two-factor recipient's mobile phone number.
- Sms
Server 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
. - Tacacs
Server string - Name of TACACS+ server with which the user must authenticate.
- Two
Factor string - Enable/disable two-factor authentication. Valid values:
disable
,fortitoken
,email
,sms
,fortitoken-cloud
. - Two
Factor stringAuthentication - Authentication method by FortiToken Cloud. Valid values:
fortitoken
,email
,sms
. - Two
Factor stringNotification - Notification method for user activation by FortiToken Cloud. Valid values:
email
,sms
. - Type string
- Authentication method. Valid values:
password
,radius
,tacacs+
,ldap
. - Username
Case stringInsensitivity - Username-Case-Insensitivity. Valid values:
disable
,enable
. - Username
Case stringSensitivity - 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 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
isadom
, otherwise the value of adom in the provider will be inherited. - Auth
Concurrent stringOverride - Enable/disable overriding the policy-auth-concurrent under config system global. Valid values:
disable
,enable
. - Auth
Concurrent float64Value - Maximum number of concurrent logins permitted from the same user.
- Authtimeout float64
- Time in minutes before the authentication timeout for a user is reached.
- Email
To 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.
- Ldap
Server string - Name of LDAP server with which the user must authenticate.
- Name string
- User name.
- Object
User stringLocal Id - an identifier for the resource with format {{name}}.
- Passwd
Policy string - Password policy to apply to this user, as defined in config user password-policy.
- Passwds []string
- User's password.
- Ppk
Identity string - IKEv2 Postquantum Preshared Key Identity.
- Ppk
Secrets []string - IKEv2 Postquantum Preshared Key (ASCII string or hexadecimal encoded with a leading 0x).
- Qkd
Profile string - Quantum Key Distribution (QKD) profile.
- Radius
Server 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Sms
Custom stringServer - Two-factor recipient's SMS server.
- Sms
Phone string - Two-factor recipient's mobile phone number.
- Sms
Server 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
. - Tacacs
Server string - Name of TACACS+ server with which the user must authenticate.
- Two
Factor string - Enable/disable two-factor authentication. Valid values:
disable
,fortitoken
,email
,sms
,fortitoken-cloud
. - Two
Factor stringAuthentication - Authentication method by FortiToken Cloud. Valid values:
fortitoken
,email
,sms
. - Two
Factor stringNotification - Notification method for user activation by FortiToken Cloud. Valid values:
email
,sms
. - Type string
- Authentication method. Valid values:
password
,radius
,tacacs+
,ldap
. - Username
Case stringInsensitivity - Username-Case-Insensitivity. Valid values:
disable
,enable
. - Username
Case stringSensitivity - 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 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
isadom
, otherwise the value of adom in the provider will be inherited. - auth
Concurrent StringOverride - Enable/disable overriding the policy-auth-concurrent under config system global. Valid values:
disable
,enable
. - auth
Concurrent DoubleValue - Maximum number of concurrent logins permitted from the same user.
- authtimeout Double
- Time in minutes before the authentication timeout for a user is reached.
- email
To 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.
- ldap
Server String - Name of LDAP server with which the user must authenticate.
- name String
- User name.
- object
User StringLocal Id - an identifier for the resource with format {{name}}.
- passwd
Policy String - Password policy to apply to this user, as defined in config user password-policy.
- passwds List<String>
- User's password.
- ppk
Identity String - IKEv2 Postquantum Preshared Key Identity.
- ppk
Secrets List<String> - IKEv2 Postquantum Preshared Key (ASCII string or hexadecimal encoded with a leading 0x).
- qkd
Profile String - Quantum Key Distribution (QKD) profile.
- radius
Server 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - sms
Custom StringServer - Two-factor recipient's SMS server.
- sms
Phone String - Two-factor recipient's mobile phone number.
- sms
Server 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
. - tacacs
Server String - Name of TACACS+ server with which the user must authenticate.
- two
Factor String - Enable/disable two-factor authentication. Valid values:
disable
,fortitoken
,email
,sms
,fortitoken-cloud
. - two
Factor StringAuthentication - Authentication method by FortiToken Cloud. Valid values:
fortitoken
,email
,sms
. - two
Factor StringNotification - Notification method for user activation by FortiToken Cloud. Valid values:
email
,sms
. - type String
- Authentication method. Valid values:
password
,radius
,tacacs+
,ldap
. - username
Case StringInsensitivity - Username-Case-Insensitivity. Valid values:
disable
,enable
. - username
Case StringSensitivity - 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 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
isadom
, otherwise the value of adom in the provider will be inherited. - auth
Concurrent stringOverride - Enable/disable overriding the policy-auth-concurrent under config system global. Valid values:
disable
,enable
. - auth
Concurrent numberValue - Maximum number of concurrent logins permitted from the same user.
- authtimeout number
- Time in minutes before the authentication timeout for a user is reached.
- email
To 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.
- ldap
Server string - Name of LDAP server with which the user must authenticate.
- name string
- User name.
- object
User stringLocal Id - an identifier for the resource with format {{name}}.
- passwd
Policy string - Password policy to apply to this user, as defined in config user password-policy.
- passwds string[]
- User's password.
- ppk
Identity string - IKEv2 Postquantum Preshared Key Identity.
- ppk
Secrets string[] - IKEv2 Postquantum Preshared Key (ASCII string or hexadecimal encoded with a leading 0x).
- qkd
Profile string - Quantum Key Distribution (QKD) profile.
- radius
Server 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - sms
Custom stringServer - Two-factor recipient's SMS server.
- sms
Phone string - Two-factor recipient's mobile phone number.
- sms
Server 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
. - tacacs
Server string - Name of TACACS+ server with which the user must authenticate.
- two
Factor string - Enable/disable two-factor authentication. Valid values:
disable
,fortitoken
,email
,sms
,fortitoken-cloud
. - two
Factor stringAuthentication - Authentication method by FortiToken Cloud. Valid values:
fortitoken
,email
,sms
. - two
Factor stringNotification - Notification method for user activation by FortiToken Cloud. Valid values:
email
,sms
. - type string
- Authentication method. Valid values:
password
,radius
,tacacs+
,ldap
. - username
Case stringInsensitivity - Username-Case-Insensitivity. Valid values:
disable
,enable
. - username
Case stringSensitivity - 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 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
isadom
, otherwise the value of adom in the provider will be inherited. - auth_
concurrent_ stroverride - Enable/disable overriding the policy-auth-concurrent under config system global. Valid values:
disable
,enable
. - auth_
concurrent_ floatvalue - 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_ strlocal_ id - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - sms_
custom_ strserver - 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_ strauthentication - Authentication method by FortiToken Cloud. Valid values:
fortitoken
,email
,sms
. - two_
factor_ strnotification - Notification method for user activation by FortiToken Cloud. Valid values:
email
,sms
. - type str
- Authentication method. Valid values:
password
,radius
,tacacs+
,ldap
. - username_
case_ strinsensitivity - Username-Case-Insensitivity. Valid values:
disable
,enable
. - username_
case_ strsensitivity - 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
isadom
, otherwise the value of adom in the provider will be inherited. - auth
Concurrent StringOverride - Enable/disable overriding the policy-auth-concurrent under config system global. Valid values:
disable
,enable
. - auth
Concurrent NumberValue - Maximum number of concurrent logins permitted from the same user.
- authtimeout Number
- Time in minutes before the authentication timeout for a user is reached.
- email
To 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.
- ldap
Server String - Name of LDAP server with which the user must authenticate.
- name String
- User name.
- object
User StringLocal Id - an identifier for the resource with format {{name}}.
- passwd
Policy String - Password policy to apply to this user, as defined in config user password-policy.
- passwds List<String>
- User's password.
- ppk
Identity String - IKEv2 Postquantum Preshared Key Identity.
- ppk
Secrets List<String> - IKEv2 Postquantum Preshared Key (ASCII string or hexadecimal encoded with a leading 0x).
- qkd
Profile String - Quantum Key Distribution (QKD) profile.
- radius
Server 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - sms
Custom StringServer - Two-factor recipient's SMS server.
- sms
Phone String - Two-factor recipient's mobile phone number.
- sms
Server 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
. - tacacs
Server String - Name of TACACS+ server with which the user must authenticate.
- two
Factor String - Enable/disable two-factor authentication. Valid values:
disable
,fortitoken
,email
,sms
,fortitoken-cloud
. - two
Factor StringAuthentication - Authentication method by FortiToken Cloud. Valid values:
fortitoken
,email
,sms
. - two
Factor StringNotification - Notification method for user activation by FortiToken Cloud. Valid values:
email
,sms
. - type String
- Authentication method. Valid values:
password
,radius
,tacacs+
,ldap
. - username
Case StringInsensitivity - Username-Case-Insensitivity. Valid values:
disable
,enable
. - username
Case StringSensitivity - 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 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.