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

fortimanager.ObjectFirewallAccessproxyRealservers

Explore with Pulumi AI

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

    Select the SSL real servers that this Access Proxy will distribute traffic to.

    This resource is a sub resource for variable realservers of resource fortimanager.ObjectFirewallAccessproxy. Conflict and overwrite may occur if use both of them.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trnameObjectFirewallAccessproxy = new fortimanager.ObjectFirewallAccessproxy("trnameObjectFirewallAccessproxy", {});
    const trnameObjectFirewallAccessproxyRealservers = new fortimanager.ObjectFirewallAccessproxyRealservers("trnameObjectFirewallAccessproxyRealservers", {
        accessProxy: trnameObjectFirewallAccessproxy.name,
        fosid: 1,
        ip: "12.3.4.5",
        port: 65,
        weight: 23,
    }, {
        dependsOn: [trnameObjectFirewallAccessproxy],
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname_object_firewall_accessproxy = fortimanager.ObjectFirewallAccessproxy("trnameObjectFirewallAccessproxy")
    trname_object_firewall_accessproxy_realservers = fortimanager.ObjectFirewallAccessproxyRealservers("trnameObjectFirewallAccessproxyRealservers",
        access_proxy=trname_object_firewall_accessproxy.name,
        fosid=1,
        ip="12.3.4.5",
        port=65,
        weight=23,
        opts = pulumi.ResourceOptions(depends_on=[trname_object_firewall_accessproxy]))
    
    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 {
    		trnameObjectFirewallAccessproxy, err := fortimanager.NewObjectFirewallAccessproxy(ctx, "trnameObjectFirewallAccessproxy", nil)
    		if err != nil {
    			return err
    		}
    		_, err = fortimanager.NewObjectFirewallAccessproxyRealservers(ctx, "trnameObjectFirewallAccessproxyRealservers", &fortimanager.ObjectFirewallAccessproxyRealserversArgs{
    			AccessProxy: trnameObjectFirewallAccessproxy.Name,
    			Fosid:       pulumi.Float64(1),
    			Ip:          pulumi.String("12.3.4.5"),
    			Port:        pulumi.Float64(65),
    			Weight:      pulumi.Float64(23),
    		}, pulumi.DependsOn([]pulumi.Resource{
    			trnameObjectFirewallAccessproxy,
    		}))
    		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 trnameObjectFirewallAccessproxy = new Fortimanager.ObjectFirewallAccessproxy("trnameObjectFirewallAccessproxy");
    
        var trnameObjectFirewallAccessproxyRealservers = new Fortimanager.ObjectFirewallAccessproxyRealservers("trnameObjectFirewallAccessproxyRealservers", new()
        {
            AccessProxy = trnameObjectFirewallAccessproxy.Name,
            Fosid = 1,
            Ip = "12.3.4.5",
            Port = 65,
            Weight = 23,
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                trnameObjectFirewallAccessproxy,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.ObjectFirewallAccessproxy;
    import com.pulumi.fortimanager.ObjectFirewallAccessproxyRealservers;
    import com.pulumi.fortimanager.ObjectFirewallAccessproxyRealserversArgs;
    import com.pulumi.resources.CustomResourceOptions;
    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 trnameObjectFirewallAccessproxy = new ObjectFirewallAccessproxy("trnameObjectFirewallAccessproxy");
    
            var trnameObjectFirewallAccessproxyRealservers = new ObjectFirewallAccessproxyRealservers("trnameObjectFirewallAccessproxyRealservers", ObjectFirewallAccessproxyRealserversArgs.builder()
                .accessProxy(trnameObjectFirewallAccessproxy.name())
                .fosid(1)
                .ip("12.3.4.5")
                .port(65)
                .weight(23)
                .build(), CustomResourceOptions.builder()
                    .dependsOn(trnameObjectFirewallAccessproxy)
                    .build());
    
        }
    }
    
    resources:
      trnameObjectFirewallAccessproxyRealservers:
        type: fortimanager:ObjectFirewallAccessproxyRealservers
        properties:
          accessProxy: ${trnameObjectFirewallAccessproxy.name}
          fosid: 1
          ip: 12.3.4.5
          port: 65
          weight: 23
        options:
          dependsOn:
            - ${trnameObjectFirewallAccessproxy}
      trnameObjectFirewallAccessproxy:
        type: fortimanager:ObjectFirewallAccessproxy
    

    Create ObjectFirewallAccessproxyRealservers Resource

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

    Constructor syntax

    new ObjectFirewallAccessproxyRealservers(name: string, args: ObjectFirewallAccessproxyRealserversArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectFirewallAccessproxyRealservers(resource_name: str,
                                             args: ObjectFirewallAccessproxyRealserversArgs,
                                             opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectFirewallAccessproxyRealservers(resource_name: str,
                                             opts: Optional[ResourceOptions] = None,
                                             access_proxy: Optional[str] = None,
                                             adom: Optional[str] = None,
                                             fosid: Optional[float] = None,
                                             ip: Optional[str] = None,
                                             object_firewall_accessproxy_realservers_id: Optional[str] = None,
                                             port: Optional[float] = None,
                                             scopetype: Optional[str] = None,
                                             status: Optional[str] = None,
                                             weight: Optional[float] = None)
    func NewObjectFirewallAccessproxyRealservers(ctx *Context, name string, args ObjectFirewallAccessproxyRealserversArgs, opts ...ResourceOption) (*ObjectFirewallAccessproxyRealservers, error)
    public ObjectFirewallAccessproxyRealservers(string name, ObjectFirewallAccessproxyRealserversArgs args, CustomResourceOptions? opts = null)
    public ObjectFirewallAccessproxyRealservers(String name, ObjectFirewallAccessproxyRealserversArgs args)
    public ObjectFirewallAccessproxyRealservers(String name, ObjectFirewallAccessproxyRealserversArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectFirewallAccessproxyRealservers
    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 ObjectFirewallAccessproxyRealserversArgs
    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 ObjectFirewallAccessproxyRealserversArgs
    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 ObjectFirewallAccessproxyRealserversArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectFirewallAccessproxyRealserversArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectFirewallAccessproxyRealserversArgs
    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 objectFirewallAccessproxyRealserversResource = new Fortimanager.ObjectFirewallAccessproxyRealservers("objectFirewallAccessproxyRealserversResource", new()
    {
        AccessProxy = "string",
        Adom = "string",
        Fosid = 0,
        Ip = "string",
        ObjectFirewallAccessproxyRealserversId = "string",
        Port = 0,
        Scopetype = "string",
        Status = "string",
        Weight = 0,
    });
    
    example, err := fortimanager.NewObjectFirewallAccessproxyRealservers(ctx, "objectFirewallAccessproxyRealserversResource", &fortimanager.ObjectFirewallAccessproxyRealserversArgs{
    AccessProxy: pulumi.String("string"),
    Adom: pulumi.String("string"),
    Fosid: pulumi.Float64(0),
    Ip: pulumi.String("string"),
    ObjectFirewallAccessproxyRealserversId: pulumi.String("string"),
    Port: pulumi.Float64(0),
    Scopetype: pulumi.String("string"),
    Status: pulumi.String("string"),
    Weight: pulumi.Float64(0),
    })
    
    var objectFirewallAccessproxyRealserversResource = new ObjectFirewallAccessproxyRealservers("objectFirewallAccessproxyRealserversResource", ObjectFirewallAccessproxyRealserversArgs.builder()
        .accessProxy("string")
        .adom("string")
        .fosid(0)
        .ip("string")
        .objectFirewallAccessproxyRealserversId("string")
        .port(0)
        .scopetype("string")
        .status("string")
        .weight(0)
        .build());
    
    object_firewall_accessproxy_realservers_resource = fortimanager.ObjectFirewallAccessproxyRealservers("objectFirewallAccessproxyRealserversResource",
        access_proxy="string",
        adom="string",
        fosid=0,
        ip="string",
        object_firewall_accessproxy_realservers_id="string",
        port=0,
        scopetype="string",
        status="string",
        weight=0)
    
    const objectFirewallAccessproxyRealserversResource = new fortimanager.ObjectFirewallAccessproxyRealservers("objectFirewallAccessproxyRealserversResource", {
        accessProxy: "string",
        adom: "string",
        fosid: 0,
        ip: "string",
        objectFirewallAccessproxyRealserversId: "string",
        port: 0,
        scopetype: "string",
        status: "string",
        weight: 0,
    });
    
    type: fortimanager:ObjectFirewallAccessproxyRealservers
    properties:
        accessProxy: string
        adom: string
        fosid: 0
        ip: string
        objectFirewallAccessproxyRealserversId: string
        port: 0
        scopetype: string
        status: string
        weight: 0
    

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

    AccessProxy string
    Access Proxy.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Fosid double
    Real server ID.
    Ip string
    IP address of the real server.
    ObjectFirewallAccessproxyRealserversId string
    an identifier for the resource with format {{fosid}}.
    Port double
    Port for communicating with the real server.
    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.
    Status string
    Set the status of the real server to active so that it can accept traffic, or on standby or disabled so no traffic is sent. Valid values: active, standby, disable.
    Weight double
    Weight of the real server. If weighted load balancing is enabled, the server with the highest weight gets more connections.
    AccessProxy string
    Access Proxy.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Fosid float64
    Real server ID.
    Ip string
    IP address of the real server.
    ObjectFirewallAccessproxyRealserversId string
    an identifier for the resource with format {{fosid}}.
    Port float64
    Port for communicating with the real server.
    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.
    Status string
    Set the status of the real server to active so that it can accept traffic, or on standby or disabled so no traffic is sent. Valid values: active, standby, disable.
    Weight float64
    Weight of the real server. If weighted load balancing is enabled, the server with the highest weight gets more connections.
    accessProxy String
    Access Proxy.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    fosid Double
    Real server ID.
    ip String
    IP address of the real server.
    objectFirewallAccessproxyRealserversId String
    an identifier for the resource with format {{fosid}}.
    port Double
    Port for communicating with the real server.
    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.
    status String
    Set the status of the real server to active so that it can accept traffic, or on standby or disabled so no traffic is sent. Valid values: active, standby, disable.
    weight Double
    Weight of the real server. If weighted load balancing is enabled, the server with the highest weight gets more connections.
    accessProxy string
    Access Proxy.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    fosid number
    Real server ID.
    ip string
    IP address of the real server.
    objectFirewallAccessproxyRealserversId string
    an identifier for the resource with format {{fosid}}.
    port number
    Port for communicating with the real server.
    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.
    status string
    Set the status of the real server to active so that it can accept traffic, or on standby or disabled so no traffic is sent. Valid values: active, standby, disable.
    weight number
    Weight of the real server. If weighted load balancing is enabled, the server with the highest weight gets more connections.
    access_proxy str
    Access Proxy.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    fosid float
    Real server ID.
    ip str
    IP address of the real server.
    object_firewall_accessproxy_realservers_id str
    an identifier for the resource with format {{fosid}}.
    port float
    Port for communicating with the real server.
    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.
    status str
    Set the status of the real server to active so that it can accept traffic, or on standby or disabled so no traffic is sent. Valid values: active, standby, disable.
    weight float
    Weight of the real server. If weighted load balancing is enabled, the server with the highest weight gets more connections.
    accessProxy String
    Access Proxy.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    fosid Number
    Real server ID.
    ip String
    IP address of the real server.
    objectFirewallAccessproxyRealserversId String
    an identifier for the resource with format {{fosid}}.
    port Number
    Port for communicating with the real server.
    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.
    status String
    Set the status of the real server to active so that it can accept traffic, or on standby or disabled so no traffic is sent. Valid values: active, standby, disable.
    weight Number
    Weight of the real server. If weighted load balancing is enabled, the server with the highest weight gets more connections.

    Outputs

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

    Get an existing ObjectFirewallAccessproxyRealservers 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?: ObjectFirewallAccessproxyRealserversState, opts?: CustomResourceOptions): ObjectFirewallAccessproxyRealservers
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            access_proxy: Optional[str] = None,
            adom: Optional[str] = None,
            fosid: Optional[float] = None,
            ip: Optional[str] = None,
            object_firewall_accessproxy_realservers_id: Optional[str] = None,
            port: Optional[float] = None,
            scopetype: Optional[str] = None,
            status: Optional[str] = None,
            weight: Optional[float] = None) -> ObjectFirewallAccessproxyRealservers
    func GetObjectFirewallAccessproxyRealservers(ctx *Context, name string, id IDInput, state *ObjectFirewallAccessproxyRealserversState, opts ...ResourceOption) (*ObjectFirewallAccessproxyRealservers, error)
    public static ObjectFirewallAccessproxyRealservers Get(string name, Input<string> id, ObjectFirewallAccessproxyRealserversState? state, CustomResourceOptions? opts = null)
    public static ObjectFirewallAccessproxyRealservers get(String name, Output<String> id, ObjectFirewallAccessproxyRealserversState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectFirewallAccessproxyRealservers    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:
    AccessProxy string
    Access Proxy.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Fosid double
    Real server ID.
    Ip string
    IP address of the real server.
    ObjectFirewallAccessproxyRealserversId string
    an identifier for the resource with format {{fosid}}.
    Port double
    Port for communicating with the real server.
    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.
    Status string
    Set the status of the real server to active so that it can accept traffic, or on standby or disabled so no traffic is sent. Valid values: active, standby, disable.
    Weight double
    Weight of the real server. If weighted load balancing is enabled, the server with the highest weight gets more connections.
    AccessProxy string
    Access Proxy.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Fosid float64
    Real server ID.
    Ip string
    IP address of the real server.
    ObjectFirewallAccessproxyRealserversId string
    an identifier for the resource with format {{fosid}}.
    Port float64
    Port for communicating with the real server.
    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.
    Status string
    Set the status of the real server to active so that it can accept traffic, or on standby or disabled so no traffic is sent. Valid values: active, standby, disable.
    Weight float64
    Weight of the real server. If weighted load balancing is enabled, the server with the highest weight gets more connections.
    accessProxy String
    Access Proxy.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    fosid Double
    Real server ID.
    ip String
    IP address of the real server.
    objectFirewallAccessproxyRealserversId String
    an identifier for the resource with format {{fosid}}.
    port Double
    Port for communicating with the real server.
    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.
    status String
    Set the status of the real server to active so that it can accept traffic, or on standby or disabled so no traffic is sent. Valid values: active, standby, disable.
    weight Double
    Weight of the real server. If weighted load balancing is enabled, the server with the highest weight gets more connections.
    accessProxy string
    Access Proxy.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    fosid number
    Real server ID.
    ip string
    IP address of the real server.
    objectFirewallAccessproxyRealserversId string
    an identifier for the resource with format {{fosid}}.
    port number
    Port for communicating with the real server.
    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.
    status string
    Set the status of the real server to active so that it can accept traffic, or on standby or disabled so no traffic is sent. Valid values: active, standby, disable.
    weight number
    Weight of the real server. If weighted load balancing is enabled, the server with the highest weight gets more connections.
    access_proxy str
    Access Proxy.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    fosid float
    Real server ID.
    ip str
    IP address of the real server.
    object_firewall_accessproxy_realservers_id str
    an identifier for the resource with format {{fosid}}.
    port float
    Port for communicating with the real server.
    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.
    status str
    Set the status of the real server to active so that it can accept traffic, or on standby or disabled so no traffic is sent. Valid values: active, standby, disable.
    weight float
    Weight of the real server. If weighted load balancing is enabled, the server with the highest weight gets more connections.
    accessProxy String
    Access Proxy.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    fosid Number
    Real server ID.
    ip String
    IP address of the real server.
    objectFirewallAccessproxyRealserversId String
    an identifier for the resource with format {{fosid}}.
    port Number
    Port for communicating with the real server.
    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.
    status String
    Set the status of the real server to active so that it can accept traffic, or on standby or disabled so no traffic is sent. Valid values: active, standby, disable.
    weight Number
    Weight of the real server. If weighted load balancing is enabled, the server with the highest weight gets more connections.

    Import

    ObjectFirewall AccessProxyRealservers can be imported using any of these accepted formats:

    Set import_options = [“access_proxy=YOUR_VALUE”] in the provider section.

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectFirewallAccessproxyRealservers:ObjectFirewallAccessproxyRealservers labelname {{fosid}}
    

    $ 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