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

fortimanager.ObjectVpnSslWebRealm

Explore with Pulumi AI

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

    Realm.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trname = new fortimanager.ObjectVpnSslWebRealm("trname", {
        maxConcurrentUser: 5,
        nasIp: "192.168.1.1",
        urlPath: "terr-vpn-ssl-web-realm",
        virtualHostOnly: "disable",
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname = fortimanager.ObjectVpnSslWebRealm("trname",
        max_concurrent_user=5,
        nas_ip="192.168.1.1",
        url_path="terr-vpn-ssl-web-realm",
        virtual_host_only="disable")
    
    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.NewObjectVpnSslWebRealm(ctx, "trname", &fortimanager.ObjectVpnSslWebRealmArgs{
    			MaxConcurrentUser: pulumi.Float64(5),
    			NasIp:             pulumi.String("192.168.1.1"),
    			UrlPath:           pulumi.String("terr-vpn-ssl-web-realm"),
    			VirtualHostOnly:   pulumi.String("disable"),
    		})
    		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.ObjectVpnSslWebRealm("trname", new()
        {
            MaxConcurrentUser = 5,
            NasIp = "192.168.1.1",
            UrlPath = "terr-vpn-ssl-web-realm",
            VirtualHostOnly = "disable",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.ObjectVpnSslWebRealm;
    import com.pulumi.fortimanager.ObjectVpnSslWebRealmArgs;
    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 ObjectVpnSslWebRealm("trname", ObjectVpnSslWebRealmArgs.builder()
                .maxConcurrentUser(5)
                .nasIp("192.168.1.1")
                .urlPath("terr-vpn-ssl-web-realm")
                .virtualHostOnly("disable")
                .build());
    
        }
    }
    
    resources:
      trname:
        type: fortimanager:ObjectVpnSslWebRealm
        properties:
          maxConcurrentUser: 5
          nasIp: 192.168.1.1
          urlPath: terr-vpn-ssl-web-realm
          virtualHostOnly: disable
    

    Create ObjectVpnSslWebRealm Resource

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

    Constructor syntax

    new ObjectVpnSslWebRealm(name: string, args?: ObjectVpnSslWebRealmArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectVpnSslWebRealm(resource_name: str,
                             args: Optional[ObjectVpnSslWebRealmArgs] = None,
                             opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectVpnSslWebRealm(resource_name: str,
                             opts: Optional[ResourceOptions] = None,
                             adom: Optional[str] = None,
                             login_page: Optional[str] = None,
                             max_concurrent_user: Optional[float] = None,
                             nas_ip: Optional[str] = None,
                             object_vpn_ssl_web_realm_id: Optional[str] = None,
                             radius_port: Optional[float] = None,
                             radius_server: Optional[str] = None,
                             scopetype: Optional[str] = None,
                             url_path: Optional[str] = None,
                             virtual_host: Optional[str] = None,
                             virtual_host_only: Optional[str] = None,
                             virtual_host_server_cert: Optional[str] = None)
    func NewObjectVpnSslWebRealm(ctx *Context, name string, args *ObjectVpnSslWebRealmArgs, opts ...ResourceOption) (*ObjectVpnSslWebRealm, error)
    public ObjectVpnSslWebRealm(string name, ObjectVpnSslWebRealmArgs? args = null, CustomResourceOptions? opts = null)
    public ObjectVpnSslWebRealm(String name, ObjectVpnSslWebRealmArgs args)
    public ObjectVpnSslWebRealm(String name, ObjectVpnSslWebRealmArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectVpnSslWebRealm
    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 ObjectVpnSslWebRealmArgs
    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 ObjectVpnSslWebRealmArgs
    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 ObjectVpnSslWebRealmArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectVpnSslWebRealmArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectVpnSslWebRealmArgs
    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 objectVpnSslWebRealmResource = new Fortimanager.ObjectVpnSslWebRealm("objectVpnSslWebRealmResource", new()
    {
        Adom = "string",
        LoginPage = "string",
        MaxConcurrentUser = 0,
        NasIp = "string",
        ObjectVpnSslWebRealmId = "string",
        RadiusPort = 0,
        RadiusServer = "string",
        Scopetype = "string",
        UrlPath = "string",
        VirtualHost = "string",
        VirtualHostOnly = "string",
        VirtualHostServerCert = "string",
    });
    
    example, err := fortimanager.NewObjectVpnSslWebRealm(ctx, "objectVpnSslWebRealmResource", &fortimanager.ObjectVpnSslWebRealmArgs{
    Adom: pulumi.String("string"),
    LoginPage: pulumi.String("string"),
    MaxConcurrentUser: pulumi.Float64(0),
    NasIp: pulumi.String("string"),
    ObjectVpnSslWebRealmId: pulumi.String("string"),
    RadiusPort: pulumi.Float64(0),
    RadiusServer: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    UrlPath: pulumi.String("string"),
    VirtualHost: pulumi.String("string"),
    VirtualHostOnly: pulumi.String("string"),
    VirtualHostServerCert: pulumi.String("string"),
    })
    
    var objectVpnSslWebRealmResource = new ObjectVpnSslWebRealm("objectVpnSslWebRealmResource", ObjectVpnSslWebRealmArgs.builder()
        .adom("string")
        .loginPage("string")
        .maxConcurrentUser(0)
        .nasIp("string")
        .objectVpnSslWebRealmId("string")
        .radiusPort(0)
        .radiusServer("string")
        .scopetype("string")
        .urlPath("string")
        .virtualHost("string")
        .virtualHostOnly("string")
        .virtualHostServerCert("string")
        .build());
    
    object_vpn_ssl_web_realm_resource = fortimanager.ObjectVpnSslWebRealm("objectVpnSslWebRealmResource",
        adom="string",
        login_page="string",
        max_concurrent_user=0,
        nas_ip="string",
        object_vpn_ssl_web_realm_id="string",
        radius_port=0,
        radius_server="string",
        scopetype="string",
        url_path="string",
        virtual_host="string",
        virtual_host_only="string",
        virtual_host_server_cert="string")
    
    const objectVpnSslWebRealmResource = new fortimanager.ObjectVpnSslWebRealm("objectVpnSslWebRealmResource", {
        adom: "string",
        loginPage: "string",
        maxConcurrentUser: 0,
        nasIp: "string",
        objectVpnSslWebRealmId: "string",
        radiusPort: 0,
        radiusServer: "string",
        scopetype: "string",
        urlPath: "string",
        virtualHost: "string",
        virtualHostOnly: "string",
        virtualHostServerCert: "string",
    });
    
    type: fortimanager:ObjectVpnSslWebRealm
    properties:
        adom: string
        loginPage: string
        maxConcurrentUser: 0
        nasIp: string
        objectVpnSslWebRealmId: string
        radiusPort: 0
        radiusServer: string
        scopetype: string
        urlPath: string
        virtualHost: string
        virtualHostOnly: string
        virtualHostServerCert: string
    

    ObjectVpnSslWebRealm 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 ObjectVpnSslWebRealm 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.
    LoginPage string
    Replacement HTML for SSL-VPN login page.
    MaxConcurrentUser double
    Maximum concurrent users (0 - 65535, 0 means unlimited).
    NasIp string
    IP address used as a NAS-IP to communicate with the RADIUS server.
    ObjectVpnSslWebRealmId string
    an identifier for the resource with format {{url_path}}.
    RadiusPort double
    RADIUS service port number (0 - 65535, 0 means user.radius.radius-port).
    RadiusServer string
    RADIUS server associated with realm.
    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.
    UrlPath string
    URL path to access SSL-VPN login page.
    VirtualHost string
    Virtual host name for realm.
    VirtualHostOnly string
    Enable/disable enforcement of virtual host method for SSL-VPN client access. Valid values: disable, enable.
    VirtualHostServerCert string
    Name of the server certificate to used for this realm.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    LoginPage string
    Replacement HTML for SSL-VPN login page.
    MaxConcurrentUser float64
    Maximum concurrent users (0 - 65535, 0 means unlimited).
    NasIp string
    IP address used as a NAS-IP to communicate with the RADIUS server.
    ObjectVpnSslWebRealmId string
    an identifier for the resource with format {{url_path}}.
    RadiusPort float64
    RADIUS service port number (0 - 65535, 0 means user.radius.radius-port).
    RadiusServer string
    RADIUS server associated with realm.
    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.
    UrlPath string
    URL path to access SSL-VPN login page.
    VirtualHost string
    Virtual host name for realm.
    VirtualHostOnly string
    Enable/disable enforcement of virtual host method for SSL-VPN client access. Valid values: disable, enable.
    VirtualHostServerCert string
    Name of the server certificate to used for this realm.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    loginPage String
    Replacement HTML for SSL-VPN login page.
    maxConcurrentUser Double
    Maximum concurrent users (0 - 65535, 0 means unlimited).
    nasIp String
    IP address used as a NAS-IP to communicate with the RADIUS server.
    objectVpnSslWebRealmId String
    an identifier for the resource with format {{url_path}}.
    radiusPort Double
    RADIUS service port number (0 - 65535, 0 means user.radius.radius-port).
    radiusServer String
    RADIUS server associated with realm.
    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.
    urlPath String
    URL path to access SSL-VPN login page.
    virtualHost String
    Virtual host name for realm.
    virtualHostOnly String
    Enable/disable enforcement of virtual host method for SSL-VPN client access. Valid values: disable, enable.
    virtualHostServerCert String
    Name of the server certificate to used for this realm.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    loginPage string
    Replacement HTML for SSL-VPN login page.
    maxConcurrentUser number
    Maximum concurrent users (0 - 65535, 0 means unlimited).
    nasIp string
    IP address used as a NAS-IP to communicate with the RADIUS server.
    objectVpnSslWebRealmId string
    an identifier for the resource with format {{url_path}}.
    radiusPort number
    RADIUS service port number (0 - 65535, 0 means user.radius.radius-port).
    radiusServer string
    RADIUS server associated with realm.
    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.
    urlPath string
    URL path to access SSL-VPN login page.
    virtualHost string
    Virtual host name for realm.
    virtualHostOnly string
    Enable/disable enforcement of virtual host method for SSL-VPN client access. Valid values: disable, enable.
    virtualHostServerCert string
    Name of the server certificate to used for this realm.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    login_page str
    Replacement HTML for SSL-VPN login page.
    max_concurrent_user float
    Maximum concurrent users (0 - 65535, 0 means unlimited).
    nas_ip str
    IP address used as a NAS-IP to communicate with the RADIUS server.
    object_vpn_ssl_web_realm_id str
    an identifier for the resource with format {{url_path}}.
    radius_port float
    RADIUS service port number (0 - 65535, 0 means user.radius.radius-port).
    radius_server str
    RADIUS server associated with realm.
    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.
    url_path str
    URL path to access SSL-VPN login page.
    virtual_host str
    Virtual host name for realm.
    virtual_host_only str
    Enable/disable enforcement of virtual host method for SSL-VPN client access. Valid values: disable, enable.
    virtual_host_server_cert str
    Name of the server certificate to used for this realm.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    loginPage String
    Replacement HTML for SSL-VPN login page.
    maxConcurrentUser Number
    Maximum concurrent users (0 - 65535, 0 means unlimited).
    nasIp String
    IP address used as a NAS-IP to communicate with the RADIUS server.
    objectVpnSslWebRealmId String
    an identifier for the resource with format {{url_path}}.
    radiusPort Number
    RADIUS service port number (0 - 65535, 0 means user.radius.radius-port).
    radiusServer String
    RADIUS server associated with realm.
    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.
    urlPath String
    URL path to access SSL-VPN login page.
    virtualHost String
    Virtual host name for realm.
    virtualHostOnly String
    Enable/disable enforcement of virtual host method for SSL-VPN client access. Valid values: disable, enable.
    virtualHostServerCert String
    Name of the server certificate to used for this realm.

    Outputs

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

    Get an existing ObjectVpnSslWebRealm 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?: ObjectVpnSslWebRealmState, opts?: CustomResourceOptions): ObjectVpnSslWebRealm
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            adom: Optional[str] = None,
            login_page: Optional[str] = None,
            max_concurrent_user: Optional[float] = None,
            nas_ip: Optional[str] = None,
            object_vpn_ssl_web_realm_id: Optional[str] = None,
            radius_port: Optional[float] = None,
            radius_server: Optional[str] = None,
            scopetype: Optional[str] = None,
            url_path: Optional[str] = None,
            virtual_host: Optional[str] = None,
            virtual_host_only: Optional[str] = None,
            virtual_host_server_cert: Optional[str] = None) -> ObjectVpnSslWebRealm
    func GetObjectVpnSslWebRealm(ctx *Context, name string, id IDInput, state *ObjectVpnSslWebRealmState, opts ...ResourceOption) (*ObjectVpnSslWebRealm, error)
    public static ObjectVpnSslWebRealm Get(string name, Input<string> id, ObjectVpnSslWebRealmState? state, CustomResourceOptions? opts = null)
    public static ObjectVpnSslWebRealm get(String name, Output<String> id, ObjectVpnSslWebRealmState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectVpnSslWebRealm    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.
    LoginPage string
    Replacement HTML for SSL-VPN login page.
    MaxConcurrentUser double
    Maximum concurrent users (0 - 65535, 0 means unlimited).
    NasIp string
    IP address used as a NAS-IP to communicate with the RADIUS server.
    ObjectVpnSslWebRealmId string
    an identifier for the resource with format {{url_path}}.
    RadiusPort double
    RADIUS service port number (0 - 65535, 0 means user.radius.radius-port).
    RadiusServer string
    RADIUS server associated with realm.
    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.
    UrlPath string
    URL path to access SSL-VPN login page.
    VirtualHost string
    Virtual host name for realm.
    VirtualHostOnly string
    Enable/disable enforcement of virtual host method for SSL-VPN client access. Valid values: disable, enable.
    VirtualHostServerCert string
    Name of the server certificate to used for this realm.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    LoginPage string
    Replacement HTML for SSL-VPN login page.
    MaxConcurrentUser float64
    Maximum concurrent users (0 - 65535, 0 means unlimited).
    NasIp string
    IP address used as a NAS-IP to communicate with the RADIUS server.
    ObjectVpnSslWebRealmId string
    an identifier for the resource with format {{url_path}}.
    RadiusPort float64
    RADIUS service port number (0 - 65535, 0 means user.radius.radius-port).
    RadiusServer string
    RADIUS server associated with realm.
    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.
    UrlPath string
    URL path to access SSL-VPN login page.
    VirtualHost string
    Virtual host name for realm.
    VirtualHostOnly string
    Enable/disable enforcement of virtual host method for SSL-VPN client access. Valid values: disable, enable.
    VirtualHostServerCert string
    Name of the server certificate to used for this realm.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    loginPage String
    Replacement HTML for SSL-VPN login page.
    maxConcurrentUser Double
    Maximum concurrent users (0 - 65535, 0 means unlimited).
    nasIp String
    IP address used as a NAS-IP to communicate with the RADIUS server.
    objectVpnSslWebRealmId String
    an identifier for the resource with format {{url_path}}.
    radiusPort Double
    RADIUS service port number (0 - 65535, 0 means user.radius.radius-port).
    radiusServer String
    RADIUS server associated with realm.
    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.
    urlPath String
    URL path to access SSL-VPN login page.
    virtualHost String
    Virtual host name for realm.
    virtualHostOnly String
    Enable/disable enforcement of virtual host method for SSL-VPN client access. Valid values: disable, enable.
    virtualHostServerCert String
    Name of the server certificate to used for this realm.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    loginPage string
    Replacement HTML for SSL-VPN login page.
    maxConcurrentUser number
    Maximum concurrent users (0 - 65535, 0 means unlimited).
    nasIp string
    IP address used as a NAS-IP to communicate with the RADIUS server.
    objectVpnSslWebRealmId string
    an identifier for the resource with format {{url_path}}.
    radiusPort number
    RADIUS service port number (0 - 65535, 0 means user.radius.radius-port).
    radiusServer string
    RADIUS server associated with realm.
    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.
    urlPath string
    URL path to access SSL-VPN login page.
    virtualHost string
    Virtual host name for realm.
    virtualHostOnly string
    Enable/disable enforcement of virtual host method for SSL-VPN client access. Valid values: disable, enable.
    virtualHostServerCert string
    Name of the server certificate to used for this realm.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    login_page str
    Replacement HTML for SSL-VPN login page.
    max_concurrent_user float
    Maximum concurrent users (0 - 65535, 0 means unlimited).
    nas_ip str
    IP address used as a NAS-IP to communicate with the RADIUS server.
    object_vpn_ssl_web_realm_id str
    an identifier for the resource with format {{url_path}}.
    radius_port float
    RADIUS service port number (0 - 65535, 0 means user.radius.radius-port).
    radius_server str
    RADIUS server associated with realm.
    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.
    url_path str
    URL path to access SSL-VPN login page.
    virtual_host str
    Virtual host name for realm.
    virtual_host_only str
    Enable/disable enforcement of virtual host method for SSL-VPN client access. Valid values: disable, enable.
    virtual_host_server_cert str
    Name of the server certificate to used for this realm.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    loginPage String
    Replacement HTML for SSL-VPN login page.
    maxConcurrentUser Number
    Maximum concurrent users (0 - 65535, 0 means unlimited).
    nasIp String
    IP address used as a NAS-IP to communicate with the RADIUS server.
    objectVpnSslWebRealmId String
    an identifier for the resource with format {{url_path}}.
    radiusPort Number
    RADIUS service port number (0 - 65535, 0 means user.radius.radius-port).
    radiusServer String
    RADIUS server associated with realm.
    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.
    urlPath String
    URL path to access SSL-VPN login page.
    virtualHost String
    Virtual host name for realm.
    virtualHostOnly String
    Enable/disable enforcement of virtual host method for SSL-VPN client access. Valid values: disable, enable.
    virtualHostServerCert String
    Name of the server certificate to used for this realm.

    Import

    ObjectVpn SslWebRealm can be imported using any of these accepted formats:

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectVpnSslWebRealm:ObjectVpnSslWebRealm labelname {{url_path}}
    

    $ 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