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

fortimanager.ObjectUserFsso

Explore with Pulumi AI

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

    Configure Fortinet Single Sign On (FSSO) agents.

    The following variables have sub resource. Avoid using them together, otherwise conflicts and overwrites may occur.

    • dynamic_mapping: fortimanager.ObjectUserFssoDynamicMapping

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trname = new fortimanager.ObjectUserFsso("trname", {
        interfaceSelectMethod: "auto",
        passwords: ["fortinet"],
        password2s: [""],
        password3s: [""],
        password4s: [""],
        password5s: [""],
        port: 8000,
        port2: 8000,
        port3: 8000,
        port4: 8000,
        port5: 8000,
        server: "terraform-server",
        sourceIp: "0.0.0.0",
        sourceIp6: "::",
        ssl: "disable",
        type: "default",
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname = fortimanager.ObjectUserFsso("trname",
        interface_select_method="auto",
        passwords=["fortinet"],
        password2s=[""],
        password3s=[""],
        password4s=[""],
        password5s=[""],
        port=8000,
        port2=8000,
        port3=8000,
        port4=8000,
        port5=8000,
        server="terraform-server",
        source_ip="0.0.0.0",
        source_ip6="::",
        ssl="disable",
        type="default")
    
    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.NewObjectUserFsso(ctx, "trname", &fortimanager.ObjectUserFssoArgs{
    			InterfaceSelectMethod: pulumi.String("auto"),
    			Passwords: pulumi.StringArray{
    				pulumi.String("fortinet"),
    			},
    			Password2s: pulumi.StringArray{
    				pulumi.String(""),
    			},
    			Password3s: pulumi.StringArray{
    				pulumi.String(""),
    			},
    			Password4s: pulumi.StringArray{
    				pulumi.String(""),
    			},
    			Password5s: pulumi.StringArray{
    				pulumi.String(""),
    			},
    			Port:      pulumi.Float64(8000),
    			Port2:     pulumi.Float64(8000),
    			Port3:     pulumi.Float64(8000),
    			Port4:     pulumi.Float64(8000),
    			Port5:     pulumi.Float64(8000),
    			Server:    pulumi.String("terraform-server"),
    			SourceIp:  pulumi.String("0.0.0.0"),
    			SourceIp6: pulumi.String("::"),
    			Ssl:       pulumi.String("disable"),
    			Type:      pulumi.String("default"),
    		})
    		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 trname = new Fortimanager.ObjectUserFsso("trname", new()
        {
            InterfaceSelectMethod = "auto",
            Passwords = new[]
            {
                "fortinet",
            },
            Password2s = new[]
            {
                "",
            },
            Password3s = new[]
            {
                "",
            },
            Password4s = new[]
            {
                "",
            },
            Password5s = new[]
            {
                "",
            },
            Port = 8000,
            Port2 = 8000,
            Port3 = 8000,
            Port4 = 8000,
            Port5 = 8000,
            Server = "terraform-server",
            SourceIp = "0.0.0.0",
            SourceIp6 = "::",
            Ssl = "disable",
            Type = "default",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.ObjectUserFsso;
    import com.pulumi.fortimanager.ObjectUserFssoArgs;
    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 trname = new ObjectUserFsso("trname", ObjectUserFssoArgs.builder()
                .interfaceSelectMethod("auto")
                .passwords("fortinet")
                .password2s("")
                .password3s("")
                .password4s("")
                .password5s("")
                .port(8000)
                .port2(8000)
                .port3(8000)
                .port4(8000)
                .port5(8000)
                .server("terraform-server")
                .sourceIp("0.0.0.0")
                .sourceIp6("::")
                .ssl("disable")
                .type("default")
                .build());
    
        }
    }
    
    resources:
      trname:
        type: fortimanager:ObjectUserFsso
        properties:
          interfaceSelectMethod: auto
          passwords:
            - fortinet
          password2s:
            - ""
          password3s:
            - ""
          password4s:
            - ""
          password5s:
            - ""
          port: 8000
          port2: 8000
          port3: 8000
          port4: 8000
          port5: 8000
          server: terraform-server
          sourceIp: 0.0.0.0
          sourceIp6: '::'
          ssl: disable
          type: default
    

    Create ObjectUserFsso Resource

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

    Constructor syntax

    new ObjectUserFsso(name: string, args?: ObjectUserFssoArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectUserFsso(resource_name: str,
                       args: Optional[ObjectUserFssoArgs] = None,
                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectUserFsso(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       _gui_meta: Optional[str] = None,
                       adom: Optional[str] = None,
                       dynamic_mappings: Optional[Sequence[ObjectUserFssoDynamicMappingArgs]] = None,
                       dynamic_sort_subtable: Optional[str] = None,
                       group_poll_interval: Optional[float] = None,
                       interface: Optional[str] = None,
                       interface_select_method: Optional[str] = None,
                       ldap_poll: Optional[str] = None,
                       ldap_poll_filter: Optional[str] = None,
                       ldap_poll_interval: Optional[float] = None,
                       ldap_server: Optional[str] = None,
                       logon_timeout: Optional[float] = None,
                       name: Optional[str] = None,
                       object_user_fsso_id: Optional[str] = None,
                       password2s: Optional[Sequence[str]] = None,
                       password3s: Optional[Sequence[str]] = None,
                       password4s: Optional[Sequence[str]] = None,
                       password5s: Optional[Sequence[str]] = None,
                       passwords: Optional[Sequence[str]] = None,
                       port: Optional[float] = None,
                       port2: Optional[float] = None,
                       port3: Optional[float] = None,
                       port4: Optional[float] = None,
                       port5: Optional[float] = None,
                       scopetype: Optional[str] = None,
                       server: Optional[str] = None,
                       server2: Optional[str] = None,
                       server3: Optional[str] = None,
                       server4: Optional[str] = None,
                       server5: Optional[str] = None,
                       sni: Optional[str] = None,
                       source_ip: Optional[str] = None,
                       source_ip6: Optional[str] = None,
                       ssl: Optional[str] = None,
                       ssl_server_host_ip_check: Optional[str] = None,
                       ssl_trusted_cert: Optional[str] = None,
                       type: Optional[str] = None,
                       user_info_server: Optional[str] = None)
    func NewObjectUserFsso(ctx *Context, name string, args *ObjectUserFssoArgs, opts ...ResourceOption) (*ObjectUserFsso, error)
    public ObjectUserFsso(string name, ObjectUserFssoArgs? args = null, CustomResourceOptions? opts = null)
    public ObjectUserFsso(String name, ObjectUserFssoArgs args)
    public ObjectUserFsso(String name, ObjectUserFssoArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectUserFsso
    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 ObjectUserFssoArgs
    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 ObjectUserFssoArgs
    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 ObjectUserFssoArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectUserFssoArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectUserFssoArgs
    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 objectUserFssoResource = new Fortimanager.ObjectUserFsso("objectUserFssoResource", new()
    {
        _guiMeta = "string",
        Adom = "string",
        DynamicMappings = new[]
        {
            new Fortimanager.Inputs.ObjectUserFssoDynamicMappingArgs
            {
                _guiMeta = "string",
                _scopes = new[]
                {
                    new Fortimanager.Inputs.ObjectUserFssoDynamicMapping_ScopeArgs
                    {
                        Name = "string",
                        Vdom = "string",
                    },
                },
                GroupPollInterval = 0,
                Interface = "string",
                InterfaceSelectMethod = "string",
                LdapPoll = "string",
                LdapPollFilter = "string",
                LdapPollInterval = 0,
                LdapServer = "string",
                LogonTimeout = 0,
                Password2s = new[]
                {
                    "string",
                },
                Password3s = new[]
                {
                    "string",
                },
                Password4s = new[]
                {
                    "string",
                },
                Password5s = new[]
                {
                    "string",
                },
                Passwords = new[]
                {
                    "string",
                },
                Port = 0,
                Port2 = 0,
                Port3 = 0,
                Port4 = 0,
                Port5 = 0,
                Server = "string",
                Server2 = "string",
                Server3 = "string",
                Server4 = "string",
                Server5 = "string",
                Sni = "string",
                SourceIp = "string",
                SourceIp6 = "string",
                Ssl = "string",
                SslServerHostIpCheck = "string",
                SslTrustedCert = "string",
                Type = "string",
                UserInfoServer = "string",
            },
        },
        DynamicSortSubtable = "string",
        GroupPollInterval = 0,
        Interface = "string",
        InterfaceSelectMethod = "string",
        LdapPoll = "string",
        LdapPollFilter = "string",
        LdapPollInterval = 0,
        LdapServer = "string",
        LogonTimeout = 0,
        Name = "string",
        ObjectUserFssoId = "string",
        Password2s = new[]
        {
            "string",
        },
        Password3s = new[]
        {
            "string",
        },
        Password4s = new[]
        {
            "string",
        },
        Password5s = new[]
        {
            "string",
        },
        Passwords = new[]
        {
            "string",
        },
        Port = 0,
        Port2 = 0,
        Port3 = 0,
        Port4 = 0,
        Port5 = 0,
        Scopetype = "string",
        Server = "string",
        Server2 = "string",
        Server3 = "string",
        Server4 = "string",
        Server5 = "string",
        Sni = "string",
        SourceIp = "string",
        SourceIp6 = "string",
        Ssl = "string",
        SslServerHostIpCheck = "string",
        SslTrustedCert = "string",
        Type = "string",
        UserInfoServer = "string",
    });
    
    example, err := fortimanager.NewObjectUserFsso(ctx, "objectUserFssoResource", &fortimanager.ObjectUserFssoArgs{
    _guiMeta: pulumi.String("string"),
    Adom: pulumi.String("string"),
    DynamicMappings: .ObjectUserFssoDynamicMappingTypeArray{
    &.ObjectUserFssoDynamicMappingTypeArgs{
    _guiMeta: pulumi.String("string"),
    _scopes: .ObjectUserFssoDynamicMapping_ScopeArray{
    &.ObjectUserFssoDynamicMapping_ScopeArgs{
    Name: pulumi.String("string"),
    Vdom: pulumi.String("string"),
    },
    },
    GroupPollInterval: pulumi.Float64(0),
    Interface: pulumi.String("string"),
    InterfaceSelectMethod: pulumi.String("string"),
    LdapPoll: pulumi.String("string"),
    LdapPollFilter: pulumi.String("string"),
    LdapPollInterval: pulumi.Float64(0),
    LdapServer: pulumi.String("string"),
    LogonTimeout: pulumi.Float64(0),
    Password2s: pulumi.StringArray{
    pulumi.String("string"),
    },
    Password3s: pulumi.StringArray{
    pulumi.String("string"),
    },
    Password4s: pulumi.StringArray{
    pulumi.String("string"),
    },
    Password5s: pulumi.StringArray{
    pulumi.String("string"),
    },
    Passwords: pulumi.StringArray{
    pulumi.String("string"),
    },
    Port: pulumi.Float64(0),
    Port2: pulumi.Float64(0),
    Port3: pulumi.Float64(0),
    Port4: pulumi.Float64(0),
    Port5: pulumi.Float64(0),
    Server: pulumi.String("string"),
    Server2: pulumi.String("string"),
    Server3: pulumi.String("string"),
    Server4: pulumi.String("string"),
    Server5: pulumi.String("string"),
    Sni: pulumi.String("string"),
    SourceIp: pulumi.String("string"),
    SourceIp6: pulumi.String("string"),
    Ssl: pulumi.String("string"),
    SslServerHostIpCheck: pulumi.String("string"),
    SslTrustedCert: pulumi.String("string"),
    Type: pulumi.String("string"),
    UserInfoServer: pulumi.String("string"),
    },
    },
    DynamicSortSubtable: pulumi.String("string"),
    GroupPollInterval: pulumi.Float64(0),
    Interface: pulumi.String("string"),
    InterfaceSelectMethod: pulumi.String("string"),
    LdapPoll: pulumi.String("string"),
    LdapPollFilter: pulumi.String("string"),
    LdapPollInterval: pulumi.Float64(0),
    LdapServer: pulumi.String("string"),
    LogonTimeout: pulumi.Float64(0),
    Name: pulumi.String("string"),
    ObjectUserFssoId: pulumi.String("string"),
    Password2s: pulumi.StringArray{
    pulumi.String("string"),
    },
    Password3s: pulumi.StringArray{
    pulumi.String("string"),
    },
    Password4s: pulumi.StringArray{
    pulumi.String("string"),
    },
    Password5s: pulumi.StringArray{
    pulumi.String("string"),
    },
    Passwords: pulumi.StringArray{
    pulumi.String("string"),
    },
    Port: pulumi.Float64(0),
    Port2: pulumi.Float64(0),
    Port3: pulumi.Float64(0),
    Port4: pulumi.Float64(0),
    Port5: pulumi.Float64(0),
    Scopetype: pulumi.String("string"),
    Server: pulumi.String("string"),
    Server2: pulumi.String("string"),
    Server3: pulumi.String("string"),
    Server4: pulumi.String("string"),
    Server5: pulumi.String("string"),
    Sni: pulumi.String("string"),
    SourceIp: pulumi.String("string"),
    SourceIp6: pulumi.String("string"),
    Ssl: pulumi.String("string"),
    SslServerHostIpCheck: pulumi.String("string"),
    SslTrustedCert: pulumi.String("string"),
    Type: pulumi.String("string"),
    UserInfoServer: pulumi.String("string"),
    })
    
    var objectUserFssoResource = new ObjectUserFsso("objectUserFssoResource", ObjectUserFssoArgs.builder()
        ._guiMeta("string")
        .adom("string")
        .dynamicMappings(ObjectUserFssoDynamicMappingArgs.builder()
            ._guiMeta("string")
            ._scopes(ObjectUserFssoDynamicMapping_ScopeArgs.builder()
                .name("string")
                .vdom("string")
                .build())
            .groupPollInterval(0)
            .interface_("string")
            .interfaceSelectMethod("string")
            .ldapPoll("string")
            .ldapPollFilter("string")
            .ldapPollInterval(0)
            .ldapServer("string")
            .logonTimeout(0)
            .password2s("string")
            .password3s("string")
            .password4s("string")
            .password5s("string")
            .passwords("string")
            .port(0)
            .port2(0)
            .port3(0)
            .port4(0)
            .port5(0)
            .server("string")
            .server2("string")
            .server3("string")
            .server4("string")
            .server5("string")
            .sni("string")
            .sourceIp("string")
            .sourceIp6("string")
            .ssl("string")
            .sslServerHostIpCheck("string")
            .sslTrustedCert("string")
            .type("string")
            .userInfoServer("string")
            .build())
        .dynamicSortSubtable("string")
        .groupPollInterval(0)
        .interface_("string")
        .interfaceSelectMethod("string")
        .ldapPoll("string")
        .ldapPollFilter("string")
        .ldapPollInterval(0)
        .ldapServer("string")
        .logonTimeout(0)
        .name("string")
        .objectUserFssoId("string")
        .password2s("string")
        .password3s("string")
        .password4s("string")
        .password5s("string")
        .passwords("string")
        .port(0)
        .port2(0)
        .port3(0)
        .port4(0)
        .port5(0)
        .scopetype("string")
        .server("string")
        .server2("string")
        .server3("string")
        .server4("string")
        .server5("string")
        .sni("string")
        .sourceIp("string")
        .sourceIp6("string")
        .ssl("string")
        .sslServerHostIpCheck("string")
        .sslTrustedCert("string")
        .type("string")
        .userInfoServer("string")
        .build());
    
    object_user_fsso_resource = fortimanager.ObjectUserFsso("objectUserFssoResource",
        _gui_meta="string",
        adom="string",
        dynamic_mappings=[{
            "_gui_meta": "string",
            "_scopes": [{
                "name": "string",
                "vdom": "string",
            }],
            "group_poll_interval": 0,
            "interface": "string",
            "interface_select_method": "string",
            "ldap_poll": "string",
            "ldap_poll_filter": "string",
            "ldap_poll_interval": 0,
            "ldap_server": "string",
            "logon_timeout": 0,
            "password2s": ["string"],
            "password3s": ["string"],
            "password4s": ["string"],
            "password5s": ["string"],
            "passwords": ["string"],
            "port": 0,
            "port2": 0,
            "port3": 0,
            "port4": 0,
            "port5": 0,
            "server": "string",
            "server2": "string",
            "server3": "string",
            "server4": "string",
            "server5": "string",
            "sni": "string",
            "source_ip": "string",
            "source_ip6": "string",
            "ssl": "string",
            "ssl_server_host_ip_check": "string",
            "ssl_trusted_cert": "string",
            "type": "string",
            "user_info_server": "string",
        }],
        dynamic_sort_subtable="string",
        group_poll_interval=0,
        interface="string",
        interface_select_method="string",
        ldap_poll="string",
        ldap_poll_filter="string",
        ldap_poll_interval=0,
        ldap_server="string",
        logon_timeout=0,
        name="string",
        object_user_fsso_id="string",
        password2s=["string"],
        password3s=["string"],
        password4s=["string"],
        password5s=["string"],
        passwords=["string"],
        port=0,
        port2=0,
        port3=0,
        port4=0,
        port5=0,
        scopetype="string",
        server="string",
        server2="string",
        server3="string",
        server4="string",
        server5="string",
        sni="string",
        source_ip="string",
        source_ip6="string",
        ssl="string",
        ssl_server_host_ip_check="string",
        ssl_trusted_cert="string",
        type="string",
        user_info_server="string")
    
    const objectUserFssoResource = new fortimanager.ObjectUserFsso("objectUserFssoResource", {
        _guiMeta: "string",
        adom: "string",
        dynamicMappings: [{
            _guiMeta: "string",
            _scopes: [{
                name: "string",
                vdom: "string",
            }],
            groupPollInterval: 0,
            "interface": "string",
            interfaceSelectMethod: "string",
            ldapPoll: "string",
            ldapPollFilter: "string",
            ldapPollInterval: 0,
            ldapServer: "string",
            logonTimeout: 0,
            password2s: ["string"],
            password3s: ["string"],
            password4s: ["string"],
            password5s: ["string"],
            passwords: ["string"],
            port: 0,
            port2: 0,
            port3: 0,
            port4: 0,
            port5: 0,
            server: "string",
            server2: "string",
            server3: "string",
            server4: "string",
            server5: "string",
            sni: "string",
            sourceIp: "string",
            sourceIp6: "string",
            ssl: "string",
            sslServerHostIpCheck: "string",
            sslTrustedCert: "string",
            type: "string",
            userInfoServer: "string",
        }],
        dynamicSortSubtable: "string",
        groupPollInterval: 0,
        "interface": "string",
        interfaceSelectMethod: "string",
        ldapPoll: "string",
        ldapPollFilter: "string",
        ldapPollInterval: 0,
        ldapServer: "string",
        logonTimeout: 0,
        name: "string",
        objectUserFssoId: "string",
        password2s: ["string"],
        password3s: ["string"],
        password4s: ["string"],
        password5s: ["string"],
        passwords: ["string"],
        port: 0,
        port2: 0,
        port3: 0,
        port4: 0,
        port5: 0,
        scopetype: "string",
        server: "string",
        server2: "string",
        server3: "string",
        server4: "string",
        server5: "string",
        sni: "string",
        sourceIp: "string",
        sourceIp6: "string",
        ssl: "string",
        sslServerHostIpCheck: "string",
        sslTrustedCert: "string",
        type: "string",
        userInfoServer: "string",
    });
    
    type: fortimanager:ObjectUserFsso
    properties:
        _guiMeta: string
        adom: string
        dynamicMappings:
            - _guiMeta: string
              _scopes:
                - name: string
                  vdom: string
              groupPollInterval: 0
              interface: string
              interfaceSelectMethod: string
              ldapPoll: string
              ldapPollFilter: string
              ldapPollInterval: 0
              ldapServer: string
              logonTimeout: 0
              password2s:
                - string
              password3s:
                - string
              password4s:
                - string
              password5s:
                - string
              passwords:
                - string
              port: 0
              port2: 0
              port3: 0
              port4: 0
              port5: 0
              server: string
              server2: string
              server3: string
              server4: string
              server5: string
              sni: string
              sourceIp: string
              sourceIp6: string
              ssl: string
              sslServerHostIpCheck: string
              sslTrustedCert: string
              type: string
              userInfoServer: string
        dynamicSortSubtable: string
        groupPollInterval: 0
        interface: string
        interfaceSelectMethod: string
        ldapPoll: string
        ldapPollFilter: string
        ldapPollInterval: 0
        ldapServer: string
        logonTimeout: 0
        name: string
        objectUserFssoId: string
        password2s:
            - string
        password3s:
            - string
        password4s:
            - string
        password5s:
            - string
        passwords:
            - string
        port: 0
        port2: 0
        port3: 0
        port4: 0
        port5: 0
        scopetype: string
        server: string
        server2: string
        server3: string
        server4: string
        server5: string
        sni: string
        sourceIp: string
        sourceIp6: string
        ssl: string
        sslServerHostIpCheck: string
        sslTrustedCert: string
        type: string
        userInfoServer: string
    

    ObjectUserFsso 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 ObjectUserFsso 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.
    DynamicMappings List<ObjectUserFssoDynamicMapping>
    Dynamic_Mapping. The structure of dynamic_mapping block is documented below.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    GroupPollInterval double
    Interval in minutes within to fetch groups from FSSO server, or unset to disable.
    Interface string
    Specify outgoing interface to reach server.
    InterfaceSelectMethod string
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    LdapPoll string
    Enable/disable automatic fetching of groups from LDAP server. Valid values: disable, enable.
    LdapPollFilter string
    Filter used to fetch groups.
    LdapPollInterval double
    Interval in minutes within to fetch groups from LDAP server.
    LdapServer string
    LDAP server to get group information.
    LogonTimeout double
    Interval in minutes to keep logons after FSSO server down.
    Name string
    Name.
    ObjectUserFssoId string
    an identifier for the resource with format {{name}}.
    Password2s List<string>
    Password of the second FSSO collector agent.
    Password3s List<string>
    Password of the third FSSO collector agent.
    Password4s List<string>
    Password of the fourth FSSO collector agent.
    Password5s List<string>
    Password of the fifth FSSO collector agent.
    Passwords List<string>
    Password of the first FSSO collector agent.
    Port double
    Port of the first FSSO collector agent.
    Port2 double
    Port of the second FSSO collector agent.
    Port3 double
    Port of the third FSSO collector agent.
    Port4 double
    Port of the fourth FSSO collector agent.
    Port5 double
    Port of the fifth FSSO collector agent.
    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.
    Server string
    Domain name or IP address of the first FSSO collector agent.
    Server2 string
    Domain name or IP address of the second FSSO collector agent.
    Server3 string
    Domain name or IP address of the third FSSO collector agent.
    Server4 string
    Domain name or IP address of the fourth FSSO collector agent.
    Server5 string
    Domain name or IP address of the fifth FSSO collector agent.
    Sni string
    Server Name Indication.
    SourceIp string
    Source IP for communications to FSSO agent.
    SourceIp6 string
    IPv6 source for communications to FSSO agent.
    Ssl string
    Enable/disable use of SSL. Valid values: disable, enable.
    SslServerHostIpCheck string
    Enable/disable server host/IP verification. Valid values: disable, enable.
    SslTrustedCert string
    Trusted server certificate or CA certificate.
    Type string
    Server type. Valid values: default, fortiems, fortinac, fortiems-cloud.
    UserInfoServer string
    LDAP server to get user information.
    _guiMeta string
    _Gui_Meta.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    DynamicMappings []ObjectUserFssoDynamicMappingTypeArgs
    Dynamic_Mapping. The structure of dynamic_mapping block is documented below.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    GroupPollInterval float64
    Interval in minutes within to fetch groups from FSSO server, or unset to disable.
    Interface string
    Specify outgoing interface to reach server.
    InterfaceSelectMethod string
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    LdapPoll string
    Enable/disable automatic fetching of groups from LDAP server. Valid values: disable, enable.
    LdapPollFilter string
    Filter used to fetch groups.
    LdapPollInterval float64
    Interval in minutes within to fetch groups from LDAP server.
    LdapServer string
    LDAP server to get group information.
    LogonTimeout float64
    Interval in minutes to keep logons after FSSO server down.
    Name string
    Name.
    ObjectUserFssoId string
    an identifier for the resource with format {{name}}.
    Password2s []string
    Password of the second FSSO collector agent.
    Password3s []string
    Password of the third FSSO collector agent.
    Password4s []string
    Password of the fourth FSSO collector agent.
    Password5s []string
    Password of the fifth FSSO collector agent.
    Passwords []string
    Password of the first FSSO collector agent.
    Port float64
    Port of the first FSSO collector agent.
    Port2 float64
    Port of the second FSSO collector agent.
    Port3 float64
    Port of the third FSSO collector agent.
    Port4 float64
    Port of the fourth FSSO collector agent.
    Port5 float64
    Port of the fifth FSSO collector agent.
    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.
    Server string
    Domain name or IP address of the first FSSO collector agent.
    Server2 string
    Domain name or IP address of the second FSSO collector agent.
    Server3 string
    Domain name or IP address of the third FSSO collector agent.
    Server4 string
    Domain name or IP address of the fourth FSSO collector agent.
    Server5 string
    Domain name or IP address of the fifth FSSO collector agent.
    Sni string
    Server Name Indication.
    SourceIp string
    Source IP for communications to FSSO agent.
    SourceIp6 string
    IPv6 source for communications to FSSO agent.
    Ssl string
    Enable/disable use of SSL. Valid values: disable, enable.
    SslServerHostIpCheck string
    Enable/disable server host/IP verification. Valid values: disable, enable.
    SslTrustedCert string
    Trusted server certificate or CA certificate.
    Type string
    Server type. Valid values: default, fortiems, fortinac, fortiems-cloud.
    UserInfoServer string
    LDAP server to get user information.
    _guiMeta string
    _Gui_Meta.
    _guiMeta String
    _Gui_Meta.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dynamicMappings List<ObjectUserFssoDynamicMapping>
    Dynamic_Mapping. The structure of dynamic_mapping block is documented below.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    groupPollInterval Double
    Interval in minutes within to fetch groups from FSSO server, or unset to disable.
    interfaceSelectMethod String
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    interface_ String
    Specify outgoing interface to reach server.
    ldapPoll String
    Enable/disable automatic fetching of groups from LDAP server. Valid values: disable, enable.
    ldapPollFilter String
    Filter used to fetch groups.
    ldapPollInterval Double
    Interval in minutes within to fetch groups from LDAP server.
    ldapServer String
    LDAP server to get group information.
    logonTimeout Double
    Interval in minutes to keep logons after FSSO server down.
    name String
    Name.
    objectUserFssoId String
    an identifier for the resource with format {{name}}.
    password2s List<String>
    Password of the second FSSO collector agent.
    password3s List<String>
    Password of the third FSSO collector agent.
    password4s List<String>
    Password of the fourth FSSO collector agent.
    password5s List<String>
    Password of the fifth FSSO collector agent.
    passwords List<String>
    Password of the first FSSO collector agent.
    port Double
    Port of the first FSSO collector agent.
    port2 Double
    Port of the second FSSO collector agent.
    port3 Double
    Port of the third FSSO collector agent.
    port4 Double
    Port of the fourth FSSO collector agent.
    port5 Double
    Port of the fifth FSSO collector agent.
    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.
    server String
    Domain name or IP address of the first FSSO collector agent.
    server2 String
    Domain name or IP address of the second FSSO collector agent.
    server3 String
    Domain name or IP address of the third FSSO collector agent.
    server4 String
    Domain name or IP address of the fourth FSSO collector agent.
    server5 String
    Domain name or IP address of the fifth FSSO collector agent.
    sni String
    Server Name Indication.
    sourceIp String
    Source IP for communications to FSSO agent.
    sourceIp6 String
    IPv6 source for communications to FSSO agent.
    ssl String
    Enable/disable use of SSL. Valid values: disable, enable.
    sslServerHostIpCheck String
    Enable/disable server host/IP verification. Valid values: disable, enable.
    sslTrustedCert String
    Trusted server certificate or CA certificate.
    type String
    Server type. Valid values: default, fortiems, fortinac, fortiems-cloud.
    userInfoServer String
    LDAP server to get user information.
    _guiMeta string
    _Gui_Meta.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dynamicMappings ObjectUserFssoDynamicMapping[]
    Dynamic_Mapping. The structure of dynamic_mapping block is documented below.
    dynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    groupPollInterval number
    Interval in minutes within to fetch groups from FSSO server, or unset to disable.
    interface string
    Specify outgoing interface to reach server.
    interfaceSelectMethod string
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    ldapPoll string
    Enable/disable automatic fetching of groups from LDAP server. Valid values: disable, enable.
    ldapPollFilter string
    Filter used to fetch groups.
    ldapPollInterval number
    Interval in minutes within to fetch groups from LDAP server.
    ldapServer string
    LDAP server to get group information.
    logonTimeout number
    Interval in minutes to keep logons after FSSO server down.
    name string
    Name.
    objectUserFssoId string
    an identifier for the resource with format {{name}}.
    password2s string[]
    Password of the second FSSO collector agent.
    password3s string[]
    Password of the third FSSO collector agent.
    password4s string[]
    Password of the fourth FSSO collector agent.
    password5s string[]
    Password of the fifth FSSO collector agent.
    passwords string[]
    Password of the first FSSO collector agent.
    port number
    Port of the first FSSO collector agent.
    port2 number
    Port of the second FSSO collector agent.
    port3 number
    Port of the third FSSO collector agent.
    port4 number
    Port of the fourth FSSO collector agent.
    port5 number
    Port of the fifth FSSO collector agent.
    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.
    server string
    Domain name or IP address of the first FSSO collector agent.
    server2 string
    Domain name or IP address of the second FSSO collector agent.
    server3 string
    Domain name or IP address of the third FSSO collector agent.
    server4 string
    Domain name or IP address of the fourth FSSO collector agent.
    server5 string
    Domain name or IP address of the fifth FSSO collector agent.
    sni string
    Server Name Indication.
    sourceIp string
    Source IP for communications to FSSO agent.
    sourceIp6 string
    IPv6 source for communications to FSSO agent.
    ssl string
    Enable/disable use of SSL. Valid values: disable, enable.
    sslServerHostIpCheck string
    Enable/disable server host/IP verification. Valid values: disable, enable.
    sslTrustedCert string
    Trusted server certificate or CA certificate.
    type string
    Server type. Valid values: default, fortiems, fortinac, fortiems-cloud.
    userInfoServer string
    LDAP server to get user information.
    _gui_meta str
    _Gui_Meta.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dynamic_mappings Sequence[ObjectUserFssoDynamicMappingArgs]
    Dynamic_Mapping. The structure of dynamic_mapping block is documented below.
    dynamic_sort_subtable str
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    group_poll_interval float
    Interval in minutes within to fetch groups from FSSO server, or unset to disable.
    interface str
    Specify outgoing interface to reach server.
    interface_select_method str
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    ldap_poll str
    Enable/disable automatic fetching of groups from LDAP server. Valid values: disable, enable.
    ldap_poll_filter str
    Filter used to fetch groups.
    ldap_poll_interval float
    Interval in minutes within to fetch groups from LDAP server.
    ldap_server str
    LDAP server to get group information.
    logon_timeout float
    Interval in minutes to keep logons after FSSO server down.
    name str
    Name.
    object_user_fsso_id str
    an identifier for the resource with format {{name}}.
    password2s Sequence[str]
    Password of the second FSSO collector agent.
    password3s Sequence[str]
    Password of the third FSSO collector agent.
    password4s Sequence[str]
    Password of the fourth FSSO collector agent.
    password5s Sequence[str]
    Password of the fifth FSSO collector agent.
    passwords Sequence[str]
    Password of the first FSSO collector agent.
    port float
    Port of the first FSSO collector agent.
    port2 float
    Port of the second FSSO collector agent.
    port3 float
    Port of the third FSSO collector agent.
    port4 float
    Port of the fourth FSSO collector agent.
    port5 float
    Port of the fifth FSSO collector agent.
    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.
    server str
    Domain name or IP address of the first FSSO collector agent.
    server2 str
    Domain name or IP address of the second FSSO collector agent.
    server3 str
    Domain name or IP address of the third FSSO collector agent.
    server4 str
    Domain name or IP address of the fourth FSSO collector agent.
    server5 str
    Domain name or IP address of the fifth FSSO collector agent.
    sni str
    Server Name Indication.
    source_ip str
    Source IP for communications to FSSO agent.
    source_ip6 str
    IPv6 source for communications to FSSO agent.
    ssl str
    Enable/disable use of SSL. Valid values: disable, enable.
    ssl_server_host_ip_check str
    Enable/disable server host/IP verification. Valid values: disable, enable.
    ssl_trusted_cert str
    Trusted server certificate or CA certificate.
    type str
    Server type. Valid values: default, fortiems, fortinac, fortiems-cloud.
    user_info_server str
    LDAP server to get user information.
    _guiMeta String
    _Gui_Meta.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dynamicMappings List<Property Map>
    Dynamic_Mapping. The structure of dynamic_mapping block is documented below.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    groupPollInterval Number
    Interval in minutes within to fetch groups from FSSO server, or unset to disable.
    interface String
    Specify outgoing interface to reach server.
    interfaceSelectMethod String
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    ldapPoll String
    Enable/disable automatic fetching of groups from LDAP server. Valid values: disable, enable.
    ldapPollFilter String
    Filter used to fetch groups.
    ldapPollInterval Number
    Interval in minutes within to fetch groups from LDAP server.
    ldapServer String
    LDAP server to get group information.
    logonTimeout Number
    Interval in minutes to keep logons after FSSO server down.
    name String
    Name.
    objectUserFssoId String
    an identifier for the resource with format {{name}}.
    password2s List<String>
    Password of the second FSSO collector agent.
    password3s List<String>
    Password of the third FSSO collector agent.
    password4s List<String>
    Password of the fourth FSSO collector agent.
    password5s List<String>
    Password of the fifth FSSO collector agent.
    passwords List<String>
    Password of the first FSSO collector agent.
    port Number
    Port of the first FSSO collector agent.
    port2 Number
    Port of the second FSSO collector agent.
    port3 Number
    Port of the third FSSO collector agent.
    port4 Number
    Port of the fourth FSSO collector agent.
    port5 Number
    Port of the fifth FSSO collector agent.
    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.
    server String
    Domain name or IP address of the first FSSO collector agent.
    server2 String
    Domain name or IP address of the second FSSO collector agent.
    server3 String
    Domain name or IP address of the third FSSO collector agent.
    server4 String
    Domain name or IP address of the fourth FSSO collector agent.
    server5 String
    Domain name or IP address of the fifth FSSO collector agent.
    sni String
    Server Name Indication.
    sourceIp String
    Source IP for communications to FSSO agent.
    sourceIp6 String
    IPv6 source for communications to FSSO agent.
    ssl String
    Enable/disable use of SSL. Valid values: disable, enable.
    sslServerHostIpCheck String
    Enable/disable server host/IP verification. Valid values: disable, enable.
    sslTrustedCert String
    Trusted server certificate or CA certificate.
    type String
    Server type. Valid values: default, fortiems, fortinac, fortiems-cloud.
    userInfoServer String
    LDAP server to get user information.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ObjectUserFsso 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 ObjectUserFsso Resource

    Get an existing ObjectUserFsso 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?: ObjectUserFssoState, opts?: CustomResourceOptions): ObjectUserFsso
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            _gui_meta: Optional[str] = None,
            adom: Optional[str] = None,
            dynamic_mappings: Optional[Sequence[ObjectUserFssoDynamicMappingArgs]] = None,
            dynamic_sort_subtable: Optional[str] = None,
            group_poll_interval: Optional[float] = None,
            interface: Optional[str] = None,
            interface_select_method: Optional[str] = None,
            ldap_poll: Optional[str] = None,
            ldap_poll_filter: Optional[str] = None,
            ldap_poll_interval: Optional[float] = None,
            ldap_server: Optional[str] = None,
            logon_timeout: Optional[float] = None,
            name: Optional[str] = None,
            object_user_fsso_id: Optional[str] = None,
            password2s: Optional[Sequence[str]] = None,
            password3s: Optional[Sequence[str]] = None,
            password4s: Optional[Sequence[str]] = None,
            password5s: Optional[Sequence[str]] = None,
            passwords: Optional[Sequence[str]] = None,
            port: Optional[float] = None,
            port2: Optional[float] = None,
            port3: Optional[float] = None,
            port4: Optional[float] = None,
            port5: Optional[float] = None,
            scopetype: Optional[str] = None,
            server: Optional[str] = None,
            server2: Optional[str] = None,
            server3: Optional[str] = None,
            server4: Optional[str] = None,
            server5: Optional[str] = None,
            sni: Optional[str] = None,
            source_ip: Optional[str] = None,
            source_ip6: Optional[str] = None,
            ssl: Optional[str] = None,
            ssl_server_host_ip_check: Optional[str] = None,
            ssl_trusted_cert: Optional[str] = None,
            type: Optional[str] = None,
            user_info_server: Optional[str] = None) -> ObjectUserFsso
    func GetObjectUserFsso(ctx *Context, name string, id IDInput, state *ObjectUserFssoState, opts ...ResourceOption) (*ObjectUserFsso, error)
    public static ObjectUserFsso Get(string name, Input<string> id, ObjectUserFssoState? state, CustomResourceOptions? opts = null)
    public static ObjectUserFsso get(String name, Output<String> id, ObjectUserFssoState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectUserFsso    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.
    DynamicMappings List<ObjectUserFssoDynamicMapping>
    Dynamic_Mapping. The structure of dynamic_mapping block is documented below.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    GroupPollInterval double
    Interval in minutes within to fetch groups from FSSO server, or unset to disable.
    Interface string
    Specify outgoing interface to reach server.
    InterfaceSelectMethod string
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    LdapPoll string
    Enable/disable automatic fetching of groups from LDAP server. Valid values: disable, enable.
    LdapPollFilter string
    Filter used to fetch groups.
    LdapPollInterval double
    Interval in minutes within to fetch groups from LDAP server.
    LdapServer string
    LDAP server to get group information.
    LogonTimeout double
    Interval in minutes to keep logons after FSSO server down.
    Name string
    Name.
    ObjectUserFssoId string
    an identifier for the resource with format {{name}}.
    Password2s List<string>
    Password of the second FSSO collector agent.
    Password3s List<string>
    Password of the third FSSO collector agent.
    Password4s List<string>
    Password of the fourth FSSO collector agent.
    Password5s List<string>
    Password of the fifth FSSO collector agent.
    Passwords List<string>
    Password of the first FSSO collector agent.
    Port double
    Port of the first FSSO collector agent.
    Port2 double
    Port of the second FSSO collector agent.
    Port3 double
    Port of the third FSSO collector agent.
    Port4 double
    Port of the fourth FSSO collector agent.
    Port5 double
    Port of the fifth FSSO collector agent.
    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.
    Server string
    Domain name or IP address of the first FSSO collector agent.
    Server2 string
    Domain name or IP address of the second FSSO collector agent.
    Server3 string
    Domain name or IP address of the third FSSO collector agent.
    Server4 string
    Domain name or IP address of the fourth FSSO collector agent.
    Server5 string
    Domain name or IP address of the fifth FSSO collector agent.
    Sni string
    Server Name Indication.
    SourceIp string
    Source IP for communications to FSSO agent.
    SourceIp6 string
    IPv6 source for communications to FSSO agent.
    Ssl string
    Enable/disable use of SSL. Valid values: disable, enable.
    SslServerHostIpCheck string
    Enable/disable server host/IP verification. Valid values: disable, enable.
    SslTrustedCert string
    Trusted server certificate or CA certificate.
    Type string
    Server type. Valid values: default, fortiems, fortinac, fortiems-cloud.
    UserInfoServer string
    LDAP server to get user information.
    _guiMeta string
    _Gui_Meta.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    DynamicMappings []ObjectUserFssoDynamicMappingTypeArgs
    Dynamic_Mapping. The structure of dynamic_mapping block is documented below.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    GroupPollInterval float64
    Interval in minutes within to fetch groups from FSSO server, or unset to disable.
    Interface string
    Specify outgoing interface to reach server.
    InterfaceSelectMethod string
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    LdapPoll string
    Enable/disable automatic fetching of groups from LDAP server. Valid values: disable, enable.
    LdapPollFilter string
    Filter used to fetch groups.
    LdapPollInterval float64
    Interval in minutes within to fetch groups from LDAP server.
    LdapServer string
    LDAP server to get group information.
    LogonTimeout float64
    Interval in minutes to keep logons after FSSO server down.
    Name string
    Name.
    ObjectUserFssoId string
    an identifier for the resource with format {{name}}.
    Password2s []string
    Password of the second FSSO collector agent.
    Password3s []string
    Password of the third FSSO collector agent.
    Password4s []string
    Password of the fourth FSSO collector agent.
    Password5s []string
    Password of the fifth FSSO collector agent.
    Passwords []string
    Password of the first FSSO collector agent.
    Port float64
    Port of the first FSSO collector agent.
    Port2 float64
    Port of the second FSSO collector agent.
    Port3 float64
    Port of the third FSSO collector agent.
    Port4 float64
    Port of the fourth FSSO collector agent.
    Port5 float64
    Port of the fifth FSSO collector agent.
    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.
    Server string
    Domain name or IP address of the first FSSO collector agent.
    Server2 string
    Domain name or IP address of the second FSSO collector agent.
    Server3 string
    Domain name or IP address of the third FSSO collector agent.
    Server4 string
    Domain name or IP address of the fourth FSSO collector agent.
    Server5 string
    Domain name or IP address of the fifth FSSO collector agent.
    Sni string
    Server Name Indication.
    SourceIp string
    Source IP for communications to FSSO agent.
    SourceIp6 string
    IPv6 source for communications to FSSO agent.
    Ssl string
    Enable/disable use of SSL. Valid values: disable, enable.
    SslServerHostIpCheck string
    Enable/disable server host/IP verification. Valid values: disable, enable.
    SslTrustedCert string
    Trusted server certificate or CA certificate.
    Type string
    Server type. Valid values: default, fortiems, fortinac, fortiems-cloud.
    UserInfoServer string
    LDAP server to get user information.
    _guiMeta string
    _Gui_Meta.
    _guiMeta String
    _Gui_Meta.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dynamicMappings List<ObjectUserFssoDynamicMapping>
    Dynamic_Mapping. The structure of dynamic_mapping block is documented below.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    groupPollInterval Double
    Interval in minutes within to fetch groups from FSSO server, or unset to disable.
    interfaceSelectMethod String
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    interface_ String
    Specify outgoing interface to reach server.
    ldapPoll String
    Enable/disable automatic fetching of groups from LDAP server. Valid values: disable, enable.
    ldapPollFilter String
    Filter used to fetch groups.
    ldapPollInterval Double
    Interval in minutes within to fetch groups from LDAP server.
    ldapServer String
    LDAP server to get group information.
    logonTimeout Double
    Interval in minutes to keep logons after FSSO server down.
    name String
    Name.
    objectUserFssoId String
    an identifier for the resource with format {{name}}.
    password2s List<String>
    Password of the second FSSO collector agent.
    password3s List<String>
    Password of the third FSSO collector agent.
    password4s List<String>
    Password of the fourth FSSO collector agent.
    password5s List<String>
    Password of the fifth FSSO collector agent.
    passwords List<String>
    Password of the first FSSO collector agent.
    port Double
    Port of the first FSSO collector agent.
    port2 Double
    Port of the second FSSO collector agent.
    port3 Double
    Port of the third FSSO collector agent.
    port4 Double
    Port of the fourth FSSO collector agent.
    port5 Double
    Port of the fifth FSSO collector agent.
    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.
    server String
    Domain name or IP address of the first FSSO collector agent.
    server2 String
    Domain name or IP address of the second FSSO collector agent.
    server3 String
    Domain name or IP address of the third FSSO collector agent.
    server4 String
    Domain name or IP address of the fourth FSSO collector agent.
    server5 String
    Domain name or IP address of the fifth FSSO collector agent.
    sni String
    Server Name Indication.
    sourceIp String
    Source IP for communications to FSSO agent.
    sourceIp6 String
    IPv6 source for communications to FSSO agent.
    ssl String
    Enable/disable use of SSL. Valid values: disable, enable.
    sslServerHostIpCheck String
    Enable/disable server host/IP verification. Valid values: disable, enable.
    sslTrustedCert String
    Trusted server certificate or CA certificate.
    type String
    Server type. Valid values: default, fortiems, fortinac, fortiems-cloud.
    userInfoServer String
    LDAP server to get user information.
    _guiMeta string
    _Gui_Meta.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dynamicMappings ObjectUserFssoDynamicMapping[]
    Dynamic_Mapping. The structure of dynamic_mapping block is documented below.
    dynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    groupPollInterval number
    Interval in minutes within to fetch groups from FSSO server, or unset to disable.
    interface string
    Specify outgoing interface to reach server.
    interfaceSelectMethod string
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    ldapPoll string
    Enable/disable automatic fetching of groups from LDAP server. Valid values: disable, enable.
    ldapPollFilter string
    Filter used to fetch groups.
    ldapPollInterval number
    Interval in minutes within to fetch groups from LDAP server.
    ldapServer string
    LDAP server to get group information.
    logonTimeout number
    Interval in minutes to keep logons after FSSO server down.
    name string
    Name.
    objectUserFssoId string
    an identifier for the resource with format {{name}}.
    password2s string[]
    Password of the second FSSO collector agent.
    password3s string[]
    Password of the third FSSO collector agent.
    password4s string[]
    Password of the fourth FSSO collector agent.
    password5s string[]
    Password of the fifth FSSO collector agent.
    passwords string[]
    Password of the first FSSO collector agent.
    port number
    Port of the first FSSO collector agent.
    port2 number
    Port of the second FSSO collector agent.
    port3 number
    Port of the third FSSO collector agent.
    port4 number
    Port of the fourth FSSO collector agent.
    port5 number
    Port of the fifth FSSO collector agent.
    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.
    server string
    Domain name or IP address of the first FSSO collector agent.
    server2 string
    Domain name or IP address of the second FSSO collector agent.
    server3 string
    Domain name or IP address of the third FSSO collector agent.
    server4 string
    Domain name or IP address of the fourth FSSO collector agent.
    server5 string
    Domain name or IP address of the fifth FSSO collector agent.
    sni string
    Server Name Indication.
    sourceIp string
    Source IP for communications to FSSO agent.
    sourceIp6 string
    IPv6 source for communications to FSSO agent.
    ssl string
    Enable/disable use of SSL. Valid values: disable, enable.
    sslServerHostIpCheck string
    Enable/disable server host/IP verification. Valid values: disable, enable.
    sslTrustedCert string
    Trusted server certificate or CA certificate.
    type string
    Server type. Valid values: default, fortiems, fortinac, fortiems-cloud.
    userInfoServer string
    LDAP server to get user information.
    _gui_meta str
    _Gui_Meta.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dynamic_mappings Sequence[ObjectUserFssoDynamicMappingArgs]
    Dynamic_Mapping. The structure of dynamic_mapping block is documented below.
    dynamic_sort_subtable str
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    group_poll_interval float
    Interval in minutes within to fetch groups from FSSO server, or unset to disable.
    interface str
    Specify outgoing interface to reach server.
    interface_select_method str
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    ldap_poll str
    Enable/disable automatic fetching of groups from LDAP server. Valid values: disable, enable.
    ldap_poll_filter str
    Filter used to fetch groups.
    ldap_poll_interval float
    Interval in minutes within to fetch groups from LDAP server.
    ldap_server str
    LDAP server to get group information.
    logon_timeout float
    Interval in minutes to keep logons after FSSO server down.
    name str
    Name.
    object_user_fsso_id str
    an identifier for the resource with format {{name}}.
    password2s Sequence[str]
    Password of the second FSSO collector agent.
    password3s Sequence[str]
    Password of the third FSSO collector agent.
    password4s Sequence[str]
    Password of the fourth FSSO collector agent.
    password5s Sequence[str]
    Password of the fifth FSSO collector agent.
    passwords Sequence[str]
    Password of the first FSSO collector agent.
    port float
    Port of the first FSSO collector agent.
    port2 float
    Port of the second FSSO collector agent.
    port3 float
    Port of the third FSSO collector agent.
    port4 float
    Port of the fourth FSSO collector agent.
    port5 float
    Port of the fifth FSSO collector agent.
    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.
    server str
    Domain name or IP address of the first FSSO collector agent.
    server2 str
    Domain name or IP address of the second FSSO collector agent.
    server3 str
    Domain name or IP address of the third FSSO collector agent.
    server4 str
    Domain name or IP address of the fourth FSSO collector agent.
    server5 str
    Domain name or IP address of the fifth FSSO collector agent.
    sni str
    Server Name Indication.
    source_ip str
    Source IP for communications to FSSO agent.
    source_ip6 str
    IPv6 source for communications to FSSO agent.
    ssl str
    Enable/disable use of SSL. Valid values: disable, enable.
    ssl_server_host_ip_check str
    Enable/disable server host/IP verification. Valid values: disable, enable.
    ssl_trusted_cert str
    Trusted server certificate or CA certificate.
    type str
    Server type. Valid values: default, fortiems, fortinac, fortiems-cloud.
    user_info_server str
    LDAP server to get user information.
    _guiMeta String
    _Gui_Meta.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    dynamicMappings List<Property Map>
    Dynamic_Mapping. The structure of dynamic_mapping block is documented below.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    groupPollInterval Number
    Interval in minutes within to fetch groups from FSSO server, or unset to disable.
    interface String
    Specify outgoing interface to reach server.
    interfaceSelectMethod String
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    ldapPoll String
    Enable/disable automatic fetching of groups from LDAP server. Valid values: disable, enable.
    ldapPollFilter String
    Filter used to fetch groups.
    ldapPollInterval Number
    Interval in minutes within to fetch groups from LDAP server.
    ldapServer String
    LDAP server to get group information.
    logonTimeout Number
    Interval in minutes to keep logons after FSSO server down.
    name String
    Name.
    objectUserFssoId String
    an identifier for the resource with format {{name}}.
    password2s List<String>
    Password of the second FSSO collector agent.
    password3s List<String>
    Password of the third FSSO collector agent.
    password4s List<String>
    Password of the fourth FSSO collector agent.
    password5s List<String>
    Password of the fifth FSSO collector agent.
    passwords List<String>
    Password of the first FSSO collector agent.
    port Number
    Port of the first FSSO collector agent.
    port2 Number
    Port of the second FSSO collector agent.
    port3 Number
    Port of the third FSSO collector agent.
    port4 Number
    Port of the fourth FSSO collector agent.
    port5 Number
    Port of the fifth FSSO collector agent.
    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.
    server String
    Domain name or IP address of the first FSSO collector agent.
    server2 String
    Domain name or IP address of the second FSSO collector agent.
    server3 String
    Domain name or IP address of the third FSSO collector agent.
    server4 String
    Domain name or IP address of the fourth FSSO collector agent.
    server5 String
    Domain name or IP address of the fifth FSSO collector agent.
    sni String
    Server Name Indication.
    sourceIp String
    Source IP for communications to FSSO agent.
    sourceIp6 String
    IPv6 source for communications to FSSO agent.
    ssl String
    Enable/disable use of SSL. Valid values: disable, enable.
    sslServerHostIpCheck String
    Enable/disable server host/IP verification. Valid values: disable, enable.
    sslTrustedCert String
    Trusted server certificate or CA certificate.
    type String
    Server type. Valid values: default, fortiems, fortinac, fortiems-cloud.
    userInfoServer String
    LDAP server to get user information.

    Supporting Types

    ObjectUserFssoDynamicMapping, ObjectUserFssoDynamicMappingArgs

    GroupPollInterval double
    Interval in minutes within to fetch groups from FSSO server, or unset to disable.
    Interface string
    Specify outgoing interface to reach server.
    InterfaceSelectMethod string
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    LdapPoll string
    Enable/disable automatic fetching of groups from LDAP server. Valid values: disable, enable.
    LdapPollFilter string
    Filter used to fetch groups.
    LdapPollInterval double
    Interval in minutes within to fetch groups from LDAP server.
    LdapServer string
    LDAP server to get group information.
    LogonTimeout double
    Interval in minutes to keep logons after FSSO server down.
    Password2s List<string>
    Password of the second FSSO collector agent.
    Password3s List<string>
    Password of the third FSSO collector agent.
    Password4s List<string>
    Password of the fourth FSSO collector agent.
    Password5s List<string>
    Password of the fifth FSSO collector agent.
    Passwords List<string>
    Password of the first FSSO collector agent.
    Port double
    Port of the first FSSO collector agent.
    Port2 double
    Port of the second FSSO collector agent.
    Port3 double
    Port of the third FSSO collector agent.
    Port4 double
    Port of the fourth FSSO collector agent.
    Port5 double
    Port of the fifth FSSO collector agent.
    Server string
    Domain name or IP address of the first FSSO collector agent.
    Server2 string
    Domain name or IP address of the second FSSO collector agent.
    Server3 string
    Domain name or IP address of the third FSSO collector agent.
    Server4 string
    Domain name or IP address of the fourth FSSO collector agent.
    Server5 string
    Domain name or IP address of the fifth FSSO collector agent.
    Sni string
    Sni.
    SourceIp string
    Source IP for communications to FSSO agent.
    SourceIp6 string
    IPv6 source for communications to FSSO agent.
    Ssl string
    Enable/disable use of SSL. Valid values: disable, enable.
    SslServerHostIpCheck string
    Enable/disable server host/IP verification. Valid values: disable, enable.
    SslTrustedCert string
    Trusted server certificate or CA certificate.
    Type string
    Server type. Valid values: default, fortiems, fortinac, fortiems-cloud.
    UserInfoServer string
    LDAP server to get user information.
    _guiMeta string
    _Gui_Meta.
    _scopes List<ObjectUserFssoDynamicMapping_Scope>
    _Scope. The structure of _scope block is documented below.
    GroupPollInterval float64
    Interval in minutes within to fetch groups from FSSO server, or unset to disable.
    Interface string
    Specify outgoing interface to reach server.
    InterfaceSelectMethod string
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    LdapPoll string
    Enable/disable automatic fetching of groups from LDAP server. Valid values: disable, enable.
    LdapPollFilter string
    Filter used to fetch groups.
    LdapPollInterval float64
    Interval in minutes within to fetch groups from LDAP server.
    LdapServer string
    LDAP server to get group information.
    LogonTimeout float64
    Interval in minutes to keep logons after FSSO server down.
    Password2s []string
    Password of the second FSSO collector agent.
    Password3s []string
    Password of the third FSSO collector agent.
    Password4s []string
    Password of the fourth FSSO collector agent.
    Password5s []string
    Password of the fifth FSSO collector agent.
    Passwords []string
    Password of the first FSSO collector agent.
    Port float64
    Port of the first FSSO collector agent.
    Port2 float64
    Port of the second FSSO collector agent.
    Port3 float64
    Port of the third FSSO collector agent.
    Port4 float64
    Port of the fourth FSSO collector agent.
    Port5 float64
    Port of the fifth FSSO collector agent.
    Server string
    Domain name or IP address of the first FSSO collector agent.
    Server2 string
    Domain name or IP address of the second FSSO collector agent.
    Server3 string
    Domain name or IP address of the third FSSO collector agent.
    Server4 string
    Domain name or IP address of the fourth FSSO collector agent.
    Server5 string
    Domain name or IP address of the fifth FSSO collector agent.
    Sni string
    Sni.
    SourceIp string
    Source IP for communications to FSSO agent.
    SourceIp6 string
    IPv6 source for communications to FSSO agent.
    Ssl string
    Enable/disable use of SSL. Valid values: disable, enable.
    SslServerHostIpCheck string
    Enable/disable server host/IP verification. Valid values: disable, enable.
    SslTrustedCert string
    Trusted server certificate or CA certificate.
    Type string
    Server type. Valid values: default, fortiems, fortinac, fortiems-cloud.
    UserInfoServer string
    LDAP server to get user information.
    _guiMeta string
    _Gui_Meta.
    _scopes []ObjectUserFssoDynamicMapping_Scope
    _Scope. The structure of _scope block is documented below.
    _guiMeta String
    _Gui_Meta.
    _scopes List<ObjectUserFssoDynamicMapping_Scope>
    _Scope. The structure of _scope block is documented below.
    groupPollInterval Double
    Interval in minutes within to fetch groups from FSSO server, or unset to disable.
    interfaceSelectMethod String
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    interface_ String
    Specify outgoing interface to reach server.
    ldapPoll String
    Enable/disable automatic fetching of groups from LDAP server. Valid values: disable, enable.
    ldapPollFilter String
    Filter used to fetch groups.
    ldapPollInterval Double
    Interval in minutes within to fetch groups from LDAP server.
    ldapServer String
    LDAP server to get group information.
    logonTimeout Double
    Interval in minutes to keep logons after FSSO server down.
    password2s List<String>
    Password of the second FSSO collector agent.
    password3s List<String>
    Password of the third FSSO collector agent.
    password4s List<String>
    Password of the fourth FSSO collector agent.
    password5s List<String>
    Password of the fifth FSSO collector agent.
    passwords List<String>
    Password of the first FSSO collector agent.
    port Double
    Port of the first FSSO collector agent.
    port2 Double
    Port of the second FSSO collector agent.
    port3 Double
    Port of the third FSSO collector agent.
    port4 Double
    Port of the fourth FSSO collector agent.
    port5 Double
    Port of the fifth FSSO collector agent.
    server String
    Domain name or IP address of the first FSSO collector agent.
    server2 String
    Domain name or IP address of the second FSSO collector agent.
    server3 String
    Domain name or IP address of the third FSSO collector agent.
    server4 String
    Domain name or IP address of the fourth FSSO collector agent.
    server5 String
    Domain name or IP address of the fifth FSSO collector agent.
    sni String
    Sni.
    sourceIp String
    Source IP for communications to FSSO agent.
    sourceIp6 String
    IPv6 source for communications to FSSO agent.
    ssl String
    Enable/disable use of SSL. Valid values: disable, enable.
    sslServerHostIpCheck String
    Enable/disable server host/IP verification. Valid values: disable, enable.
    sslTrustedCert String
    Trusted server certificate or CA certificate.
    type String
    Server type. Valid values: default, fortiems, fortinac, fortiems-cloud.
    userInfoServer String
    LDAP server to get user information.
    _guiMeta string
    _Gui_Meta.
    _scopes ObjectUserFssoDynamicMapping_Scope[]
    _Scope. The structure of _scope block is documented below.
    groupPollInterval number
    Interval in minutes within to fetch groups from FSSO server, or unset to disable.
    interface string
    Specify outgoing interface to reach server.
    interfaceSelectMethod string
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    ldapPoll string
    Enable/disable automatic fetching of groups from LDAP server. Valid values: disable, enable.
    ldapPollFilter string
    Filter used to fetch groups.
    ldapPollInterval number
    Interval in minutes within to fetch groups from LDAP server.
    ldapServer string
    LDAP server to get group information.
    logonTimeout number
    Interval in minutes to keep logons after FSSO server down.
    password2s string[]
    Password of the second FSSO collector agent.
    password3s string[]
    Password of the third FSSO collector agent.
    password4s string[]
    Password of the fourth FSSO collector agent.
    password5s string[]
    Password of the fifth FSSO collector agent.
    passwords string[]
    Password of the first FSSO collector agent.
    port number
    Port of the first FSSO collector agent.
    port2 number
    Port of the second FSSO collector agent.
    port3 number
    Port of the third FSSO collector agent.
    port4 number
    Port of the fourth FSSO collector agent.
    port5 number
    Port of the fifth FSSO collector agent.
    server string
    Domain name or IP address of the first FSSO collector agent.
    server2 string
    Domain name or IP address of the second FSSO collector agent.
    server3 string
    Domain name or IP address of the third FSSO collector agent.
    server4 string
    Domain name or IP address of the fourth FSSO collector agent.
    server5 string
    Domain name or IP address of the fifth FSSO collector agent.
    sni string
    Sni.
    sourceIp string
    Source IP for communications to FSSO agent.
    sourceIp6 string
    IPv6 source for communications to FSSO agent.
    ssl string
    Enable/disable use of SSL. Valid values: disable, enable.
    sslServerHostIpCheck string
    Enable/disable server host/IP verification. Valid values: disable, enable.
    sslTrustedCert string
    Trusted server certificate or CA certificate.
    type string
    Server type. Valid values: default, fortiems, fortinac, fortiems-cloud.
    userInfoServer string
    LDAP server to get user information.
    _gui_meta str
    _Gui_Meta.
    _scopes Sequence[ObjectUserFssoDynamicMapping_Scope]
    _Scope. The structure of _scope block is documented below.
    group_poll_interval float
    Interval in minutes within to fetch groups from FSSO server, or unset to disable.
    interface str
    Specify outgoing interface to reach server.
    interface_select_method str
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    ldap_poll str
    Enable/disable automatic fetching of groups from LDAP server. Valid values: disable, enable.
    ldap_poll_filter str
    Filter used to fetch groups.
    ldap_poll_interval float
    Interval in minutes within to fetch groups from LDAP server.
    ldap_server str
    LDAP server to get group information.
    logon_timeout float
    Interval in minutes to keep logons after FSSO server down.
    password2s Sequence[str]
    Password of the second FSSO collector agent.
    password3s Sequence[str]
    Password of the third FSSO collector agent.
    password4s Sequence[str]
    Password of the fourth FSSO collector agent.
    password5s Sequence[str]
    Password of the fifth FSSO collector agent.
    passwords Sequence[str]
    Password of the first FSSO collector agent.
    port float
    Port of the first FSSO collector agent.
    port2 float
    Port of the second FSSO collector agent.
    port3 float
    Port of the third FSSO collector agent.
    port4 float
    Port of the fourth FSSO collector agent.
    port5 float
    Port of the fifth FSSO collector agent.
    server str
    Domain name or IP address of the first FSSO collector agent.
    server2 str
    Domain name or IP address of the second FSSO collector agent.
    server3 str
    Domain name or IP address of the third FSSO collector agent.
    server4 str
    Domain name or IP address of the fourth FSSO collector agent.
    server5 str
    Domain name or IP address of the fifth FSSO collector agent.
    sni str
    Sni.
    source_ip str
    Source IP for communications to FSSO agent.
    source_ip6 str
    IPv6 source for communications to FSSO agent.
    ssl str
    Enable/disable use of SSL. Valid values: disable, enable.
    ssl_server_host_ip_check str
    Enable/disable server host/IP verification. Valid values: disable, enable.
    ssl_trusted_cert str
    Trusted server certificate or CA certificate.
    type str
    Server type. Valid values: default, fortiems, fortinac, fortiems-cloud.
    user_info_server str
    LDAP server to get user information.
    _guiMeta String
    _Gui_Meta.
    _scopes List<Property Map>
    _Scope. The structure of _scope block is documented below.
    groupPollInterval Number
    Interval in minutes within to fetch groups from FSSO server, or unset to disable.
    interface String
    Specify outgoing interface to reach server.
    interfaceSelectMethod String
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    ldapPoll String
    Enable/disable automatic fetching of groups from LDAP server. Valid values: disable, enable.
    ldapPollFilter String
    Filter used to fetch groups.
    ldapPollInterval Number
    Interval in minutes within to fetch groups from LDAP server.
    ldapServer String
    LDAP server to get group information.
    logonTimeout Number
    Interval in minutes to keep logons after FSSO server down.
    password2s List<String>
    Password of the second FSSO collector agent.
    password3s List<String>
    Password of the third FSSO collector agent.
    password4s List<String>
    Password of the fourth FSSO collector agent.
    password5s List<String>
    Password of the fifth FSSO collector agent.
    passwords List<String>
    Password of the first FSSO collector agent.
    port Number
    Port of the first FSSO collector agent.
    port2 Number
    Port of the second FSSO collector agent.
    port3 Number
    Port of the third FSSO collector agent.
    port4 Number
    Port of the fourth FSSO collector agent.
    port5 Number
    Port of the fifth FSSO collector agent.
    server String
    Domain name or IP address of the first FSSO collector agent.
    server2 String
    Domain name or IP address of the second FSSO collector agent.
    server3 String
    Domain name or IP address of the third FSSO collector agent.
    server4 String
    Domain name or IP address of the fourth FSSO collector agent.
    server5 String
    Domain name or IP address of the fifth FSSO collector agent.
    sni String
    Sni.
    sourceIp String
    Source IP for communications to FSSO agent.
    sourceIp6 String
    IPv6 source for communications to FSSO agent.
    ssl String
    Enable/disable use of SSL. Valid values: disable, enable.
    sslServerHostIpCheck String
    Enable/disable server host/IP verification. Valid values: disable, enable.
    sslTrustedCert String
    Trusted server certificate or CA certificate.
    type String
    Server type. Valid values: default, fortiems, fortinac, fortiems-cloud.
    userInfoServer String
    LDAP server to get user information.

    ObjectUserFssoDynamicMapping_Scope, ObjectUserFssoDynamicMapping_ScopeArgs

    Name string
    Name.
    Vdom string
    Vdom.
    Name string
    Name.
    Vdom string
    Vdom.
    name String
    Name.
    vdom String
    Vdom.
    name string
    Name.
    vdom string
    Vdom.
    name str
    Name.
    vdom str
    Vdom.
    name String
    Name.
    vdom String
    Vdom.

    Import

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

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectUserFsso:ObjectUserFsso 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