1. Packages
  2. Fortios
  3. API Docs
  4. user
  5. Fsso
Fortios v0.0.5 published on Tuesday, Apr 9, 2024 by pulumiverse

fortios.user.Fsso

Explore with Pulumi AI

fortios logo
Fortios v0.0.5 published on Tuesday, Apr 9, 2024 by pulumiverse

    Configure Fortinet Single Sign On (FSSO) agents.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortios from "@pulumiverse/fortios";
    
    const trname = new fortios.user.Fsso("trname", {
        port: 32381,
        port2: 8000,
        port3: 8000,
        port4: 8000,
        port5: 8000,
        server: "1.1.1.1",
        sourceIp: "0.0.0.0",
        sourceIp6: "::",
    });
    
    import pulumi
    import pulumiverse_fortios as fortios
    
    trname = fortios.user.Fsso("trname",
        port=32381,
        port2=8000,
        port3=8000,
        port4=8000,
        port5=8000,
        server="1.1.1.1",
        source_ip="0.0.0.0",
        source_ip6="::")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumiverse/pulumi-fortios/sdk/go/fortios/user"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := user.NewFsso(ctx, "trname", &user.FssoArgs{
    			Port:      pulumi.Int(32381),
    			Port2:     pulumi.Int(8000),
    			Port3:     pulumi.Int(8000),
    			Port4:     pulumi.Int(8000),
    			Port5:     pulumi.Int(8000),
    			Server:    pulumi.String("1.1.1.1"),
    			SourceIp:  pulumi.String("0.0.0.0"),
    			SourceIp6: pulumi.String("::"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Fortios = Pulumiverse.Fortios;
    
    return await Deployment.RunAsync(() => 
    {
        var trname = new Fortios.User.Fsso("trname", new()
        {
            Port = 32381,
            Port2 = 8000,
            Port3 = 8000,
            Port4 = 8000,
            Port5 = 8000,
            Server = "1.1.1.1",
            SourceIp = "0.0.0.0",
            SourceIp6 = "::",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortios.user.Fsso;
    import com.pulumi.fortios.user.FssoArgs;
    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 Fsso("trname", FssoArgs.builder()        
                .port(32381)
                .port2(8000)
                .port3(8000)
                .port4(8000)
                .port5(8000)
                .server("1.1.1.1")
                .sourceIp("0.0.0.0")
                .sourceIp6("::")
                .build());
    
        }
    }
    
    resources:
      trname:
        type: fortios:user:Fsso
        properties:
          port: 32381
          port2: 8000
          port3: 8000
          port4: 8000
          port5: 8000
          server: 1.1.1.1
          sourceIp: 0.0.0.0
          sourceIp6: '::'
    

    Create Fsso Resource

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

    Constructor syntax

    new Fsso(name: string, args: FssoArgs, opts?: CustomResourceOptions);
    @overload
    def Fsso(resource_name: str,
             args: FssoArgs,
             opts: Optional[ResourceOptions] = None)
    
    @overload
    def Fsso(resource_name: str,
             opts: Optional[ResourceOptions] = None,
             server: Optional[str] = None,
             port3: Optional[int] = None,
             type: Optional[str] = None,
             ldap_poll: Optional[str] = None,
             ldap_poll_filter: Optional[str] = None,
             ldap_poll_interval: Optional[int] = None,
             ldap_server: Optional[str] = None,
             port4: Optional[int] = None,
             name: Optional[str] = None,
             password: Optional[str] = None,
             password2: Optional[str] = None,
             password3: Optional[str] = None,
             password4: Optional[str] = None,
             password5: Optional[str] = None,
             port: Optional[int] = None,
             vdomparam: Optional[str] = None,
             interface_select_method: Optional[str] = None,
             logon_timeout: Optional[int] = None,
             port5: Optional[int] = None,
             interface: 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,
             group_poll_interval: Optional[int] = None,
             user_info_server: Optional[str] = None,
             port2: Optional[int] = None)
    func NewFsso(ctx *Context, name string, args FssoArgs, opts ...ResourceOption) (*Fsso, error)
    public Fsso(string name, FssoArgs args, CustomResourceOptions? opts = null)
    public Fsso(String name, FssoArgs args)
    public Fsso(String name, FssoArgs args, CustomResourceOptions options)
    
    type: fortios:user:Fsso
    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 FssoArgs
    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 FssoArgs
    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 FssoArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args FssoArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args FssoArgs
    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 fssoResource = new Fortios.User.Fsso("fssoResource", new()
    {
        Server = "string",
        Port3 = 0,
        Type = "string",
        LdapPoll = "string",
        LdapPollFilter = "string",
        LdapPollInterval = 0,
        LdapServer = "string",
        Port4 = 0,
        Name = "string",
        Password = "string",
        Password2 = "string",
        Password3 = "string",
        Password4 = "string",
        Password5 = "string",
        Port = 0,
        Vdomparam = "string",
        InterfaceSelectMethod = "string",
        LogonTimeout = 0,
        Port5 = 0,
        Interface = "string",
        Server2 = "string",
        Server3 = "string",
        Server4 = "string",
        Server5 = "string",
        Sni = "string",
        SourceIp = "string",
        SourceIp6 = "string",
        Ssl = "string",
        SslServerHostIpCheck = "string",
        SslTrustedCert = "string",
        GroupPollInterval = 0,
        UserInfoServer = "string",
        Port2 = 0,
    });
    
    example, err := user.NewFsso(ctx, "fssoResource", &user.FssoArgs{
    	Server:                pulumi.String("string"),
    	Port3:                 pulumi.Int(0),
    	Type:                  pulumi.String("string"),
    	LdapPoll:              pulumi.String("string"),
    	LdapPollFilter:        pulumi.String("string"),
    	LdapPollInterval:      pulumi.Int(0),
    	LdapServer:            pulumi.String("string"),
    	Port4:                 pulumi.Int(0),
    	Name:                  pulumi.String("string"),
    	Password:              pulumi.String("string"),
    	Password2:             pulumi.String("string"),
    	Password3:             pulumi.String("string"),
    	Password4:             pulumi.String("string"),
    	Password5:             pulumi.String("string"),
    	Port:                  pulumi.Int(0),
    	Vdomparam:             pulumi.String("string"),
    	InterfaceSelectMethod: pulumi.String("string"),
    	LogonTimeout:          pulumi.Int(0),
    	Port5:                 pulumi.Int(0),
    	Interface:             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"),
    	GroupPollInterval:     pulumi.Int(0),
    	UserInfoServer:        pulumi.String("string"),
    	Port2:                 pulumi.Int(0),
    })
    
    var fssoResource = new Fsso("fssoResource", FssoArgs.builder()
        .server("string")
        .port3(0)
        .type("string")
        .ldapPoll("string")
        .ldapPollFilter("string")
        .ldapPollInterval(0)
        .ldapServer("string")
        .port4(0)
        .name("string")
        .password("string")
        .password2("string")
        .password3("string")
        .password4("string")
        .password5("string")
        .port(0)
        .vdomparam("string")
        .interfaceSelectMethod("string")
        .logonTimeout(0)
        .port5(0)
        .interface_("string")
        .server2("string")
        .server3("string")
        .server4("string")
        .server5("string")
        .sni("string")
        .sourceIp("string")
        .sourceIp6("string")
        .ssl("string")
        .sslServerHostIpCheck("string")
        .sslTrustedCert("string")
        .groupPollInterval(0)
        .userInfoServer("string")
        .port2(0)
        .build());
    
    fsso_resource = fortios.user.Fsso("fssoResource",
        server="string",
        port3=0,
        type="string",
        ldap_poll="string",
        ldap_poll_filter="string",
        ldap_poll_interval=0,
        ldap_server="string",
        port4=0,
        name="string",
        password="string",
        password2="string",
        password3="string",
        password4="string",
        password5="string",
        port=0,
        vdomparam="string",
        interface_select_method="string",
        logon_timeout=0,
        port5=0,
        interface="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",
        group_poll_interval=0,
        user_info_server="string",
        port2=0)
    
    const fssoResource = new fortios.user.Fsso("fssoResource", {
        server: "string",
        port3: 0,
        type: "string",
        ldapPoll: "string",
        ldapPollFilter: "string",
        ldapPollInterval: 0,
        ldapServer: "string",
        port4: 0,
        name: "string",
        password: "string",
        password2: "string",
        password3: "string",
        password4: "string",
        password5: "string",
        port: 0,
        vdomparam: "string",
        interfaceSelectMethod: "string",
        logonTimeout: 0,
        port5: 0,
        "interface": "string",
        server2: "string",
        server3: "string",
        server4: "string",
        server5: "string",
        sni: "string",
        sourceIp: "string",
        sourceIp6: "string",
        ssl: "string",
        sslServerHostIpCheck: "string",
        sslTrustedCert: "string",
        groupPollInterval: 0,
        userInfoServer: "string",
        port2: 0,
    });
    
    type: fortios:user:Fsso
    properties:
        groupPollInterval: 0
        interface: string
        interfaceSelectMethod: string
        ldapPoll: string
        ldapPollFilter: string
        ldapPollInterval: 0
        ldapServer: string
        logonTimeout: 0
        name: string
        password: string
        password2: string
        password3: string
        password4: string
        password5: 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
        vdomparam: string
    

    Fsso Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The Fsso resource accepts the following input properties:

    Server string
    Domain name or IP address of the first FSSO collector agent.
    GroupPollInterval int
    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: enable, disable.
    LdapPollFilter string
    Filter used to fetch groups.
    LdapPollInterval int
    Interval in minutes within to fetch groups from LDAP server.
    LdapServer string
    LDAP server to get group information.
    LogonTimeout int
    Interval in minutes to keep logons after FSSO server down.
    Name string
    Name.
    Password string
    Password of the first FSSO collector agent.
    Password2 string
    Password of the second FSSO collector agent.
    Password3 string
    Password of the third FSSO collector agent.
    Password4 string
    Password of the fourth FSSO collector agent.
    Password5 string
    Password of the fifth FSSO collector agent.
    Port int
    Port of the first FSSO collector agent.
    Port2 int
    Port of the second FSSO collector agent.
    Port3 int
    Port of the third FSSO collector agent.
    Port4 int
    Port of the fourth FSSO collector agent.
    Port5 int
    Port of the fifth 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: enable, disable.
    SslServerHostIpCheck string
    Enable/disable server host/IP verification. Valid values: enable, disable.
    SslTrustedCert string
    Trusted server certificate or CA certificate.
    Type string
    Server type.
    UserInfoServer string
    LDAP server to get user information.
    Vdomparam string
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    Server string
    Domain name or IP address of the first FSSO collector agent.
    GroupPollInterval int
    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: enable, disable.
    LdapPollFilter string
    Filter used to fetch groups.
    LdapPollInterval int
    Interval in minutes within to fetch groups from LDAP server.
    LdapServer string
    LDAP server to get group information.
    LogonTimeout int
    Interval in minutes to keep logons after FSSO server down.
    Name string
    Name.
    Password string
    Password of the first FSSO collector agent.
    Password2 string
    Password of the second FSSO collector agent.
    Password3 string
    Password of the third FSSO collector agent.
    Password4 string
    Password of the fourth FSSO collector agent.
    Password5 string
    Password of the fifth FSSO collector agent.
    Port int
    Port of the first FSSO collector agent.
    Port2 int
    Port of the second FSSO collector agent.
    Port3 int
    Port of the third FSSO collector agent.
    Port4 int
    Port of the fourth FSSO collector agent.
    Port5 int
    Port of the fifth 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: enable, disable.
    SslServerHostIpCheck string
    Enable/disable server host/IP verification. Valid values: enable, disable.
    SslTrustedCert string
    Trusted server certificate or CA certificate.
    Type string
    Server type.
    UserInfoServer string
    LDAP server to get user information.
    Vdomparam string
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    server String
    Domain name or IP address of the first FSSO collector agent.
    groupPollInterval Integer
    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: enable, disable.
    ldapPollFilter String
    Filter used to fetch groups.
    ldapPollInterval Integer
    Interval in minutes within to fetch groups from LDAP server.
    ldapServer String
    LDAP server to get group information.
    logonTimeout Integer
    Interval in minutes to keep logons after FSSO server down.
    name String
    Name.
    password String
    Password of the first FSSO collector agent.
    password2 String
    Password of the second FSSO collector agent.
    password3 String
    Password of the third FSSO collector agent.
    password4 String
    Password of the fourth FSSO collector agent.
    password5 String
    Password of the fifth FSSO collector agent.
    port Integer
    Port of the first FSSO collector agent.
    port2 Integer
    Port of the second FSSO collector agent.
    port3 Integer
    Port of the third FSSO collector agent.
    port4 Integer
    Port of the fourth FSSO collector agent.
    port5 Integer
    Port of the fifth 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: enable, disable.
    sslServerHostIpCheck String
    Enable/disable server host/IP verification. Valid values: enable, disable.
    sslTrustedCert String
    Trusted server certificate or CA certificate.
    type String
    Server type.
    userInfoServer String
    LDAP server to get user information.
    vdomparam String
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    server string
    Domain name or IP address of the first FSSO collector agent.
    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: enable, disable.
    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.
    password string
    Password of the first FSSO collector agent.
    password2 string
    Password of the second FSSO collector agent.
    password3 string
    Password of the third FSSO collector agent.
    password4 string
    Password of the fourth FSSO collector agent.
    password5 string
    Password of the fifth 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.
    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: enable, disable.
    sslServerHostIpCheck string
    Enable/disable server host/IP verification. Valid values: enable, disable.
    sslTrustedCert string
    Trusted server certificate or CA certificate.
    type string
    Server type.
    userInfoServer string
    LDAP server to get user information.
    vdomparam string
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    server str
    Domain name or IP address of the first FSSO collector agent.
    group_poll_interval int
    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: enable, disable.
    ldap_poll_filter str
    Filter used to fetch groups.
    ldap_poll_interval int
    Interval in minutes within to fetch groups from LDAP server.
    ldap_server str
    LDAP server to get group information.
    logon_timeout int
    Interval in minutes to keep logons after FSSO server down.
    name str
    Name.
    password str
    Password of the first FSSO collector agent.
    password2 str
    Password of the second FSSO collector agent.
    password3 str
    Password of the third FSSO collector agent.
    password4 str
    Password of the fourth FSSO collector agent.
    password5 str
    Password of the fifth FSSO collector agent.
    port int
    Port of the first FSSO collector agent.
    port2 int
    Port of the second FSSO collector agent.
    port3 int
    Port of the third FSSO collector agent.
    port4 int
    Port of the fourth FSSO collector agent.
    port5 int
    Port of the fifth 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: enable, disable.
    ssl_server_host_ip_check str
    Enable/disable server host/IP verification. Valid values: enable, disable.
    ssl_trusted_cert str
    Trusted server certificate or CA certificate.
    type str
    Server type.
    user_info_server str
    LDAP server to get user information.
    vdomparam str
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    server String
    Domain name or IP address of the first FSSO collector agent.
    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: enable, disable.
    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.
    password String
    Password of the first FSSO collector agent.
    password2 String
    Password of the second FSSO collector agent.
    password3 String
    Password of the third FSSO collector agent.
    password4 String
    Password of the fourth FSSO collector agent.
    password5 String
    Password of the fifth 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.
    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: enable, disable.
    sslServerHostIpCheck String
    Enable/disable server host/IP verification. Valid values: enable, disable.
    sslTrustedCert String
    Trusted server certificate or CA certificate.
    type String
    Server type.
    userInfoServer String
    LDAP server to get user information.
    vdomparam String
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.

    Outputs

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

    Get an existing Fsso 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?: FssoState, opts?: CustomResourceOptions): Fsso
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            group_poll_interval: Optional[int] = 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[int] = None,
            ldap_server: Optional[str] = None,
            logon_timeout: Optional[int] = None,
            name: Optional[str] = None,
            password: Optional[str] = None,
            password2: Optional[str] = None,
            password3: Optional[str] = None,
            password4: Optional[str] = None,
            password5: Optional[str] = None,
            port: Optional[int] = None,
            port2: Optional[int] = None,
            port3: Optional[int] = None,
            port4: Optional[int] = None,
            port5: Optional[int] = 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,
            vdomparam: Optional[str] = None) -> Fsso
    func GetFsso(ctx *Context, name string, id IDInput, state *FssoState, opts ...ResourceOption) (*Fsso, error)
    public static Fsso Get(string name, Input<string> id, FssoState? state, CustomResourceOptions? opts = null)
    public static Fsso get(String name, Output<String> id, FssoState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    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:
    GroupPollInterval int
    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: enable, disable.
    LdapPollFilter string
    Filter used to fetch groups.
    LdapPollInterval int
    Interval in minutes within to fetch groups from LDAP server.
    LdapServer string
    LDAP server to get group information.
    LogonTimeout int
    Interval in minutes to keep logons after FSSO server down.
    Name string
    Name.
    Password string
    Password of the first FSSO collector agent.
    Password2 string
    Password of the second FSSO collector agent.
    Password3 string
    Password of the third FSSO collector agent.
    Password4 string
    Password of the fourth FSSO collector agent.
    Password5 string
    Password of the fifth FSSO collector agent.
    Port int
    Port of the first FSSO collector agent.
    Port2 int
    Port of the second FSSO collector agent.
    Port3 int
    Port of the third FSSO collector agent.
    Port4 int
    Port of the fourth FSSO collector agent.
    Port5 int
    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
    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: enable, disable.
    SslServerHostIpCheck string
    Enable/disable server host/IP verification. Valid values: enable, disable.
    SslTrustedCert string
    Trusted server certificate or CA certificate.
    Type string
    Server type.
    UserInfoServer string
    LDAP server to get user information.
    Vdomparam string
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    GroupPollInterval int
    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: enable, disable.
    LdapPollFilter string
    Filter used to fetch groups.
    LdapPollInterval int
    Interval in minutes within to fetch groups from LDAP server.
    LdapServer string
    LDAP server to get group information.
    LogonTimeout int
    Interval in minutes to keep logons after FSSO server down.
    Name string
    Name.
    Password string
    Password of the first FSSO collector agent.
    Password2 string
    Password of the second FSSO collector agent.
    Password3 string
    Password of the third FSSO collector agent.
    Password4 string
    Password of the fourth FSSO collector agent.
    Password5 string
    Password of the fifth FSSO collector agent.
    Port int
    Port of the first FSSO collector agent.
    Port2 int
    Port of the second FSSO collector agent.
    Port3 int
    Port of the third FSSO collector agent.
    Port4 int
    Port of the fourth FSSO collector agent.
    Port5 int
    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
    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: enable, disable.
    SslServerHostIpCheck string
    Enable/disable server host/IP verification. Valid values: enable, disable.
    SslTrustedCert string
    Trusted server certificate or CA certificate.
    Type string
    Server type.
    UserInfoServer string
    LDAP server to get user information.
    Vdomparam string
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    groupPollInterval Integer
    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: enable, disable.
    ldapPollFilter String
    Filter used to fetch groups.
    ldapPollInterval Integer
    Interval in minutes within to fetch groups from LDAP server.
    ldapServer String
    LDAP server to get group information.
    logonTimeout Integer
    Interval in minutes to keep logons after FSSO server down.
    name String
    Name.
    password String
    Password of the first FSSO collector agent.
    password2 String
    Password of the second FSSO collector agent.
    password3 String
    Password of the third FSSO collector agent.
    password4 String
    Password of the fourth FSSO collector agent.
    password5 String
    Password of the fifth FSSO collector agent.
    port Integer
    Port of the first FSSO collector agent.
    port2 Integer
    Port of the second FSSO collector agent.
    port3 Integer
    Port of the third FSSO collector agent.
    port4 Integer
    Port of the fourth FSSO collector agent.
    port5 Integer
    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
    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: enable, disable.
    sslServerHostIpCheck String
    Enable/disable server host/IP verification. Valid values: enable, disable.
    sslTrustedCert String
    Trusted server certificate or CA certificate.
    type String
    Server type.
    userInfoServer String
    LDAP server to get user information.
    vdomparam String
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    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: enable, disable.
    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.
    password string
    Password of the first FSSO collector agent.
    password2 string
    Password of the second FSSO collector agent.
    password3 string
    Password of the third FSSO collector agent.
    password4 string
    Password of the fourth FSSO collector agent.
    password5 string
    Password of the fifth 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
    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: enable, disable.
    sslServerHostIpCheck string
    Enable/disable server host/IP verification. Valid values: enable, disable.
    sslTrustedCert string
    Trusted server certificate or CA certificate.
    type string
    Server type.
    userInfoServer string
    LDAP server to get user information.
    vdomparam string
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    group_poll_interval int
    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: enable, disable.
    ldap_poll_filter str
    Filter used to fetch groups.
    ldap_poll_interval int
    Interval in minutes within to fetch groups from LDAP server.
    ldap_server str
    LDAP server to get group information.
    logon_timeout int
    Interval in minutes to keep logons after FSSO server down.
    name str
    Name.
    password str
    Password of the first FSSO collector agent.
    password2 str
    Password of the second FSSO collector agent.
    password3 str
    Password of the third FSSO collector agent.
    password4 str
    Password of the fourth FSSO collector agent.
    password5 str
    Password of the fifth FSSO collector agent.
    port int
    Port of the first FSSO collector agent.
    port2 int
    Port of the second FSSO collector agent.
    port3 int
    Port of the third FSSO collector agent.
    port4 int
    Port of the fourth FSSO collector agent.
    port5 int
    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
    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: enable, disable.
    ssl_server_host_ip_check str
    Enable/disable server host/IP verification. Valid values: enable, disable.
    ssl_trusted_cert str
    Trusted server certificate or CA certificate.
    type str
    Server type.
    user_info_server str
    LDAP server to get user information.
    vdomparam str
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    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: enable, disable.
    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.
    password String
    Password of the first FSSO collector agent.
    password2 String
    Password of the second FSSO collector agent.
    password3 String
    Password of the third FSSO collector agent.
    password4 String
    Password of the fourth FSSO collector agent.
    password5 String
    Password of the fifth 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
    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: enable, disable.
    sslServerHostIpCheck String
    Enable/disable server host/IP verification. Valid values: enable, disable.
    sslTrustedCert String
    Trusted server certificate or CA certificate.
    type String
    Server type.
    userInfoServer String
    LDAP server to get user information.
    vdomparam String
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.

    Import

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

    $ pulumi import fortios:user/fsso:Fsso labelname {{name}}
    

    If you do not want to import arguments of block:

    $ export “FORTIOS_IMPORT_TABLE”=“false”

    $ pulumi import fortios:user/fsso:Fsso labelname {{name}}
    

    $ unset “FORTIOS_IMPORT_TABLE”

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

    Package Details

    Repository
    fortios pulumiverse/pulumi-fortios
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the fortios Terraform Provider.
    fortios logo
    Fortios v0.0.5 published on Tuesday, Apr 9, 2024 by pulumiverse