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

fortimanager.SystemSqlCustomskipidx

Explore with Pulumi AI

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

    List of aditional SQL skip index fields.

    This resource is a sub resource for variable custom_skipidx of resource fortimanager.SystemSql. 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 trname = new fortimanager.SystemSqlCustomskipidx("trname", {
        deviceType: "FortiGate",
        fosid: 2,
        indexField: "srcip",
        logType: "content",
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname = fortimanager.SystemSqlCustomskipidx("trname",
        device_type="FortiGate",
        fosid=2,
        index_field="srcip",
        log_type="content")
    
    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.NewSystemSqlCustomskipidx(ctx, "trname", &fortimanager.SystemSqlCustomskipidxArgs{
    			DeviceType: pulumi.String("FortiGate"),
    			Fosid:      pulumi.Float64(2),
    			IndexField: pulumi.String("srcip"),
    			LogType:    pulumi.String("content"),
    		})
    		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.SystemSqlCustomskipidx("trname", new()
        {
            DeviceType = "FortiGate",
            Fosid = 2,
            IndexField = "srcip",
            LogType = "content",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.SystemSqlCustomskipidx;
    import com.pulumi.fortimanager.SystemSqlCustomskipidxArgs;
    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 SystemSqlCustomskipidx("trname", SystemSqlCustomskipidxArgs.builder()
                .deviceType("FortiGate")
                .fosid("2")
                .indexField("srcip")
                .logType("content")
                .build());
    
        }
    }
    
    resources:
      trname:
        type: fortimanager:SystemSqlCustomskipidx
        properties:
          deviceType: FortiGate
          fosid: '2'
          indexField: srcip
          logType: content
    

    Create SystemSqlCustomskipidx Resource

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

    Constructor syntax

    new SystemSqlCustomskipidx(name: string, args?: SystemSqlCustomskipidxArgs, opts?: CustomResourceOptions);
    @overload
    def SystemSqlCustomskipidx(resource_name: str,
                               args: Optional[SystemSqlCustomskipidxArgs] = None,
                               opts: Optional[ResourceOptions] = None)
    
    @overload
    def SystemSqlCustomskipidx(resource_name: str,
                               opts: Optional[ResourceOptions] = None,
                               device_type: Optional[str] = None,
                               fosid: Optional[float] = None,
                               index_field: Optional[str] = None,
                               log_type: Optional[str] = None,
                               system_sql_customskipidx_id: Optional[str] = None)
    func NewSystemSqlCustomskipidx(ctx *Context, name string, args *SystemSqlCustomskipidxArgs, opts ...ResourceOption) (*SystemSqlCustomskipidx, error)
    public SystemSqlCustomskipidx(string name, SystemSqlCustomskipidxArgs? args = null, CustomResourceOptions? opts = null)
    public SystemSqlCustomskipidx(String name, SystemSqlCustomskipidxArgs args)
    public SystemSqlCustomskipidx(String name, SystemSqlCustomskipidxArgs args, CustomResourceOptions options)
    
    type: fortimanager:SystemSqlCustomskipidx
    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 SystemSqlCustomskipidxArgs
    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 SystemSqlCustomskipidxArgs
    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 SystemSqlCustomskipidxArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SystemSqlCustomskipidxArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SystemSqlCustomskipidxArgs
    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 systemSqlCustomskipidxResource = new Fortimanager.SystemSqlCustomskipidx("systemSqlCustomskipidxResource", new()
    {
        DeviceType = "string",
        Fosid = 0,
        IndexField = "string",
        LogType = "string",
        SystemSqlCustomskipidxId = "string",
    });
    
    example, err := fortimanager.NewSystemSqlCustomskipidx(ctx, "systemSqlCustomskipidxResource", &fortimanager.SystemSqlCustomskipidxArgs{
    DeviceType: pulumi.String("string"),
    Fosid: pulumi.Float64(0),
    IndexField: pulumi.String("string"),
    LogType: pulumi.String("string"),
    SystemSqlCustomskipidxId: pulumi.String("string"),
    })
    
    var systemSqlCustomskipidxResource = new SystemSqlCustomskipidx("systemSqlCustomskipidxResource", SystemSqlCustomskipidxArgs.builder()
        .deviceType("string")
        .fosid(0)
        .indexField("string")
        .logType("string")
        .systemSqlCustomskipidxId("string")
        .build());
    
    system_sql_customskipidx_resource = fortimanager.SystemSqlCustomskipidx("systemSqlCustomskipidxResource",
        device_type="string",
        fosid=0,
        index_field="string",
        log_type="string",
        system_sql_customskipidx_id="string")
    
    const systemSqlCustomskipidxResource = new fortimanager.SystemSqlCustomskipidx("systemSqlCustomskipidxResource", {
        deviceType: "string",
        fosid: 0,
        indexField: "string",
        logType: "string",
        systemSqlCustomskipidxId: "string",
    });
    
    type: fortimanager:SystemSqlCustomskipidx
    properties:
        deviceType: string
        fosid: 0
        indexField: string
        logType: string
        systemSqlCustomskipidxId: string
    

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

    DeviceType string
    Device type. FortiGate - Set device type to FortiGate. FortiManager - Set device type to FortiManager FortiClient - Set device type to FortiClient. FortiMail - Set device type to FortiMail. FortiWeb - Set device type to FortiWeb. FortiSandbox - Set device type to FortiSandbox FortiProxy - Set device type to FortiProxy Valid values: FortiGate, FortiManager, FortiClient, FortiMail, FortiWeb, FortiSandbox, FortiProxy.
    Fosid double
    Add or Edit log index fields.
    IndexField string
    Field to be added to skip index.
    LogType string
    Log type. app-ctrl - attack - content - dlp - emailfilter - event - generic - history - traffic - virus - voip - webfilter - netscan - fct-event - fct-traffic - fct-netscan - waf - gtp - dns - ssh - ssl - file-filter - asset - protocol - siem - Valid values: app-ctrl, attack, content, dlp, emailfilter, event, generic, history, traffic, virus, voip, webfilter, netscan, fct-event, fct-traffic, fct-netscan, waf, gtp, dns, ssh, ssl, file-filter, asset, protocol, siem.
    SystemSqlCustomskipidxId string
    an identifier for the resource with format {{fosid}}.
    DeviceType string
    Device type. FortiGate - Set device type to FortiGate. FortiManager - Set device type to FortiManager FortiClient - Set device type to FortiClient. FortiMail - Set device type to FortiMail. FortiWeb - Set device type to FortiWeb. FortiSandbox - Set device type to FortiSandbox FortiProxy - Set device type to FortiProxy Valid values: FortiGate, FortiManager, FortiClient, FortiMail, FortiWeb, FortiSandbox, FortiProxy.
    Fosid float64
    Add or Edit log index fields.
    IndexField string
    Field to be added to skip index.
    LogType string
    Log type. app-ctrl - attack - content - dlp - emailfilter - event - generic - history - traffic - virus - voip - webfilter - netscan - fct-event - fct-traffic - fct-netscan - waf - gtp - dns - ssh - ssl - file-filter - asset - protocol - siem - Valid values: app-ctrl, attack, content, dlp, emailfilter, event, generic, history, traffic, virus, voip, webfilter, netscan, fct-event, fct-traffic, fct-netscan, waf, gtp, dns, ssh, ssl, file-filter, asset, protocol, siem.
    SystemSqlCustomskipidxId string
    an identifier for the resource with format {{fosid}}.
    deviceType String
    Device type. FortiGate - Set device type to FortiGate. FortiManager - Set device type to FortiManager FortiClient - Set device type to FortiClient. FortiMail - Set device type to FortiMail. FortiWeb - Set device type to FortiWeb. FortiSandbox - Set device type to FortiSandbox FortiProxy - Set device type to FortiProxy Valid values: FortiGate, FortiManager, FortiClient, FortiMail, FortiWeb, FortiSandbox, FortiProxy.
    fosid Double
    Add or Edit log index fields.
    indexField String
    Field to be added to skip index.
    logType String
    Log type. app-ctrl - attack - content - dlp - emailfilter - event - generic - history - traffic - virus - voip - webfilter - netscan - fct-event - fct-traffic - fct-netscan - waf - gtp - dns - ssh - ssl - file-filter - asset - protocol - siem - Valid values: app-ctrl, attack, content, dlp, emailfilter, event, generic, history, traffic, virus, voip, webfilter, netscan, fct-event, fct-traffic, fct-netscan, waf, gtp, dns, ssh, ssl, file-filter, asset, protocol, siem.
    systemSqlCustomskipidxId String
    an identifier for the resource with format {{fosid}}.
    deviceType string
    Device type. FortiGate - Set device type to FortiGate. FortiManager - Set device type to FortiManager FortiClient - Set device type to FortiClient. FortiMail - Set device type to FortiMail. FortiWeb - Set device type to FortiWeb. FortiSandbox - Set device type to FortiSandbox FortiProxy - Set device type to FortiProxy Valid values: FortiGate, FortiManager, FortiClient, FortiMail, FortiWeb, FortiSandbox, FortiProxy.
    fosid number
    Add or Edit log index fields.
    indexField string
    Field to be added to skip index.
    logType string
    Log type. app-ctrl - attack - content - dlp - emailfilter - event - generic - history - traffic - virus - voip - webfilter - netscan - fct-event - fct-traffic - fct-netscan - waf - gtp - dns - ssh - ssl - file-filter - asset - protocol - siem - Valid values: app-ctrl, attack, content, dlp, emailfilter, event, generic, history, traffic, virus, voip, webfilter, netscan, fct-event, fct-traffic, fct-netscan, waf, gtp, dns, ssh, ssl, file-filter, asset, protocol, siem.
    systemSqlCustomskipidxId string
    an identifier for the resource with format {{fosid}}.
    device_type str
    Device type. FortiGate - Set device type to FortiGate. FortiManager - Set device type to FortiManager FortiClient - Set device type to FortiClient. FortiMail - Set device type to FortiMail. FortiWeb - Set device type to FortiWeb. FortiSandbox - Set device type to FortiSandbox FortiProxy - Set device type to FortiProxy Valid values: FortiGate, FortiManager, FortiClient, FortiMail, FortiWeb, FortiSandbox, FortiProxy.
    fosid float
    Add or Edit log index fields.
    index_field str
    Field to be added to skip index.
    log_type str
    Log type. app-ctrl - attack - content - dlp - emailfilter - event - generic - history - traffic - virus - voip - webfilter - netscan - fct-event - fct-traffic - fct-netscan - waf - gtp - dns - ssh - ssl - file-filter - asset - protocol - siem - Valid values: app-ctrl, attack, content, dlp, emailfilter, event, generic, history, traffic, virus, voip, webfilter, netscan, fct-event, fct-traffic, fct-netscan, waf, gtp, dns, ssh, ssl, file-filter, asset, protocol, siem.
    system_sql_customskipidx_id str
    an identifier for the resource with format {{fosid}}.
    deviceType String
    Device type. FortiGate - Set device type to FortiGate. FortiManager - Set device type to FortiManager FortiClient - Set device type to FortiClient. FortiMail - Set device type to FortiMail. FortiWeb - Set device type to FortiWeb. FortiSandbox - Set device type to FortiSandbox FortiProxy - Set device type to FortiProxy Valid values: FortiGate, FortiManager, FortiClient, FortiMail, FortiWeb, FortiSandbox, FortiProxy.
    fosid Number
    Add or Edit log index fields.
    indexField String
    Field to be added to skip index.
    logType String
    Log type. app-ctrl - attack - content - dlp - emailfilter - event - generic - history - traffic - virus - voip - webfilter - netscan - fct-event - fct-traffic - fct-netscan - waf - gtp - dns - ssh - ssl - file-filter - asset - protocol - siem - Valid values: app-ctrl, attack, content, dlp, emailfilter, event, generic, history, traffic, virus, voip, webfilter, netscan, fct-event, fct-traffic, fct-netscan, waf, gtp, dns, ssh, ssl, file-filter, asset, protocol, siem.
    systemSqlCustomskipidxId String
    an identifier for the resource with format {{fosid}}.

    Outputs

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

    Get an existing SystemSqlCustomskipidx 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?: SystemSqlCustomskipidxState, opts?: CustomResourceOptions): SystemSqlCustomskipidx
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            device_type: Optional[str] = None,
            fosid: Optional[float] = None,
            index_field: Optional[str] = None,
            log_type: Optional[str] = None,
            system_sql_customskipidx_id: Optional[str] = None) -> SystemSqlCustomskipidx
    func GetSystemSqlCustomskipidx(ctx *Context, name string, id IDInput, state *SystemSqlCustomskipidxState, opts ...ResourceOption) (*SystemSqlCustomskipidx, error)
    public static SystemSqlCustomskipidx Get(string name, Input<string> id, SystemSqlCustomskipidxState? state, CustomResourceOptions? opts = null)
    public static SystemSqlCustomskipidx get(String name, Output<String> id, SystemSqlCustomskipidxState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:SystemSqlCustomskipidx    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:
    DeviceType string
    Device type. FortiGate - Set device type to FortiGate. FortiManager - Set device type to FortiManager FortiClient - Set device type to FortiClient. FortiMail - Set device type to FortiMail. FortiWeb - Set device type to FortiWeb. FortiSandbox - Set device type to FortiSandbox FortiProxy - Set device type to FortiProxy Valid values: FortiGate, FortiManager, FortiClient, FortiMail, FortiWeb, FortiSandbox, FortiProxy.
    Fosid double
    Add or Edit log index fields.
    IndexField string
    Field to be added to skip index.
    LogType string
    Log type. app-ctrl - attack - content - dlp - emailfilter - event - generic - history - traffic - virus - voip - webfilter - netscan - fct-event - fct-traffic - fct-netscan - waf - gtp - dns - ssh - ssl - file-filter - asset - protocol - siem - Valid values: app-ctrl, attack, content, dlp, emailfilter, event, generic, history, traffic, virus, voip, webfilter, netscan, fct-event, fct-traffic, fct-netscan, waf, gtp, dns, ssh, ssl, file-filter, asset, protocol, siem.
    SystemSqlCustomskipidxId string
    an identifier for the resource with format {{fosid}}.
    DeviceType string
    Device type. FortiGate - Set device type to FortiGate. FortiManager - Set device type to FortiManager FortiClient - Set device type to FortiClient. FortiMail - Set device type to FortiMail. FortiWeb - Set device type to FortiWeb. FortiSandbox - Set device type to FortiSandbox FortiProxy - Set device type to FortiProxy Valid values: FortiGate, FortiManager, FortiClient, FortiMail, FortiWeb, FortiSandbox, FortiProxy.
    Fosid float64
    Add or Edit log index fields.
    IndexField string
    Field to be added to skip index.
    LogType string
    Log type. app-ctrl - attack - content - dlp - emailfilter - event - generic - history - traffic - virus - voip - webfilter - netscan - fct-event - fct-traffic - fct-netscan - waf - gtp - dns - ssh - ssl - file-filter - asset - protocol - siem - Valid values: app-ctrl, attack, content, dlp, emailfilter, event, generic, history, traffic, virus, voip, webfilter, netscan, fct-event, fct-traffic, fct-netscan, waf, gtp, dns, ssh, ssl, file-filter, asset, protocol, siem.
    SystemSqlCustomskipidxId string
    an identifier for the resource with format {{fosid}}.
    deviceType String
    Device type. FortiGate - Set device type to FortiGate. FortiManager - Set device type to FortiManager FortiClient - Set device type to FortiClient. FortiMail - Set device type to FortiMail. FortiWeb - Set device type to FortiWeb. FortiSandbox - Set device type to FortiSandbox FortiProxy - Set device type to FortiProxy Valid values: FortiGate, FortiManager, FortiClient, FortiMail, FortiWeb, FortiSandbox, FortiProxy.
    fosid Double
    Add or Edit log index fields.
    indexField String
    Field to be added to skip index.
    logType String
    Log type. app-ctrl - attack - content - dlp - emailfilter - event - generic - history - traffic - virus - voip - webfilter - netscan - fct-event - fct-traffic - fct-netscan - waf - gtp - dns - ssh - ssl - file-filter - asset - protocol - siem - Valid values: app-ctrl, attack, content, dlp, emailfilter, event, generic, history, traffic, virus, voip, webfilter, netscan, fct-event, fct-traffic, fct-netscan, waf, gtp, dns, ssh, ssl, file-filter, asset, protocol, siem.
    systemSqlCustomskipidxId String
    an identifier for the resource with format {{fosid}}.
    deviceType string
    Device type. FortiGate - Set device type to FortiGate. FortiManager - Set device type to FortiManager FortiClient - Set device type to FortiClient. FortiMail - Set device type to FortiMail. FortiWeb - Set device type to FortiWeb. FortiSandbox - Set device type to FortiSandbox FortiProxy - Set device type to FortiProxy Valid values: FortiGate, FortiManager, FortiClient, FortiMail, FortiWeb, FortiSandbox, FortiProxy.
    fosid number
    Add or Edit log index fields.
    indexField string
    Field to be added to skip index.
    logType string
    Log type. app-ctrl - attack - content - dlp - emailfilter - event - generic - history - traffic - virus - voip - webfilter - netscan - fct-event - fct-traffic - fct-netscan - waf - gtp - dns - ssh - ssl - file-filter - asset - protocol - siem - Valid values: app-ctrl, attack, content, dlp, emailfilter, event, generic, history, traffic, virus, voip, webfilter, netscan, fct-event, fct-traffic, fct-netscan, waf, gtp, dns, ssh, ssl, file-filter, asset, protocol, siem.
    systemSqlCustomskipidxId string
    an identifier for the resource with format {{fosid}}.
    device_type str
    Device type. FortiGate - Set device type to FortiGate. FortiManager - Set device type to FortiManager FortiClient - Set device type to FortiClient. FortiMail - Set device type to FortiMail. FortiWeb - Set device type to FortiWeb. FortiSandbox - Set device type to FortiSandbox FortiProxy - Set device type to FortiProxy Valid values: FortiGate, FortiManager, FortiClient, FortiMail, FortiWeb, FortiSandbox, FortiProxy.
    fosid float
    Add or Edit log index fields.
    index_field str
    Field to be added to skip index.
    log_type str
    Log type. app-ctrl - attack - content - dlp - emailfilter - event - generic - history - traffic - virus - voip - webfilter - netscan - fct-event - fct-traffic - fct-netscan - waf - gtp - dns - ssh - ssl - file-filter - asset - protocol - siem - Valid values: app-ctrl, attack, content, dlp, emailfilter, event, generic, history, traffic, virus, voip, webfilter, netscan, fct-event, fct-traffic, fct-netscan, waf, gtp, dns, ssh, ssl, file-filter, asset, protocol, siem.
    system_sql_customskipidx_id str
    an identifier for the resource with format {{fosid}}.
    deviceType String
    Device type. FortiGate - Set device type to FortiGate. FortiManager - Set device type to FortiManager FortiClient - Set device type to FortiClient. FortiMail - Set device type to FortiMail. FortiWeb - Set device type to FortiWeb. FortiSandbox - Set device type to FortiSandbox FortiProxy - Set device type to FortiProxy Valid values: FortiGate, FortiManager, FortiClient, FortiMail, FortiWeb, FortiSandbox, FortiProxy.
    fosid Number
    Add or Edit log index fields.
    indexField String
    Field to be added to skip index.
    logType String
    Log type. app-ctrl - attack - content - dlp - emailfilter - event - generic - history - traffic - virus - voip - webfilter - netscan - fct-event - fct-traffic - fct-netscan - waf - gtp - dns - ssh - ssl - file-filter - asset - protocol - siem - Valid values: app-ctrl, attack, content, dlp, emailfilter, event, generic, history, traffic, virus, voip, webfilter, netscan, fct-event, fct-traffic, fct-netscan, waf, gtp, dns, ssh, ssl, file-filter, asset, protocol, siem.
    systemSqlCustomskipidxId String
    an identifier for the resource with format {{fosid}}.

    Import

    System SqlCustomSkipidx can be imported using any of these accepted formats:

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/systemSqlCustomskipidx:SystemSqlCustomskipidx labelname {{fosid}}
    

    $ unset “FORTIMANAGER_IMPORT_TABLE”

    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