1. Packages
  2. Fortios
  3. API Docs
  4. log
  5. Eventfilter
Fortios v0.0.6 published on Tuesday, Jul 9, 2024 by pulumiverse

fortios.log.Eventfilter

Explore with Pulumi AI

fortios logo
Fortios v0.0.6 published on Tuesday, Jul 9, 2024 by pulumiverse

    Configure log event filters.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortios from "@pulumiverse/fortios";
    
    const trname = new fortios.log.Eventfilter("trname", {
        complianceCheck: "enable",
        endpoint: "enable",
        event: "enable",
        ha: "enable",
        router: "enable",
        securityRating: "enable",
        system: "enable",
        user: "enable",
        vpn: "enable",
        wanOpt: "enable",
        wirelessActivity: "enable",
    });
    
    import pulumi
    import pulumiverse_fortios as fortios
    
    trname = fortios.log.Eventfilter("trname",
        compliance_check="enable",
        endpoint="enable",
        event="enable",
        ha="enable",
        router="enable",
        security_rating="enable",
        system="enable",
        user="enable",
        vpn="enable",
        wan_opt="enable",
        wireless_activity="enable")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumiverse/pulumi-fortios/sdk/go/fortios/log"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := log.NewEventfilter(ctx, "trname", &log.EventfilterArgs{
    			ComplianceCheck:  pulumi.String("enable"),
    			Endpoint:         pulumi.String("enable"),
    			Event:            pulumi.String("enable"),
    			Ha:               pulumi.String("enable"),
    			Router:           pulumi.String("enable"),
    			SecurityRating:   pulumi.String("enable"),
    			System:           pulumi.String("enable"),
    			User:             pulumi.String("enable"),
    			Vpn:              pulumi.String("enable"),
    			WanOpt:           pulumi.String("enable"),
    			WirelessActivity: pulumi.String("enable"),
    		})
    		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.Log.Eventfilter("trname", new()
        {
            ComplianceCheck = "enable",
            Endpoint = "enable",
            Event = "enable",
            Ha = "enable",
            Router = "enable",
            SecurityRating = "enable",
            System = "enable",
            User = "enable",
            Vpn = "enable",
            WanOpt = "enable",
            WirelessActivity = "enable",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortios.log.Eventfilter;
    import com.pulumi.fortios.log.EventfilterArgs;
    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 Eventfilter("trname", EventfilterArgs.builder()
                .complianceCheck("enable")
                .endpoint("enable")
                .event("enable")
                .ha("enable")
                .router("enable")
                .securityRating("enable")
                .system("enable")
                .user("enable")
                .vpn("enable")
                .wanOpt("enable")
                .wirelessActivity("enable")
                .build());
    
        }
    }
    
    resources:
      trname:
        type: fortios:log:Eventfilter
        properties:
          complianceCheck: enable
          endpoint: enable
          event: enable
          ha: enable
          router: enable
          securityRating: enable
          system: enable
          user: enable
          vpn: enable
          wanOpt: enable
          wirelessActivity: enable
    

    Create Eventfilter Resource

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

    Constructor syntax

    new Eventfilter(name: string, args?: EventfilterArgs, opts?: CustomResourceOptions);
    @overload
    def Eventfilter(resource_name: str,
                    args: Optional[EventfilterArgs] = None,
                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def Eventfilter(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    cifs: Optional[str] = None,
                    compliance_check: Optional[str] = None,
                    connector: Optional[str] = None,
                    endpoint: Optional[str] = None,
                    event: Optional[str] = None,
                    fortiextender: Optional[str] = None,
                    ha: Optional[str] = None,
                    rest_api: Optional[str] = None,
                    router: Optional[str] = None,
                    sdwan: Optional[str] = None,
                    security_rating: Optional[str] = None,
                    switch_controller: Optional[str] = None,
                    system: Optional[str] = None,
                    user: Optional[str] = None,
                    vdomparam: Optional[str] = None,
                    vpn: Optional[str] = None,
                    wan_opt: Optional[str] = None,
                    webproxy: Optional[str] = None,
                    wireless_activity: Optional[str] = None)
    func NewEventfilter(ctx *Context, name string, args *EventfilterArgs, opts ...ResourceOption) (*Eventfilter, error)
    public Eventfilter(string name, EventfilterArgs? args = null, CustomResourceOptions? opts = null)
    public Eventfilter(String name, EventfilterArgs args)
    public Eventfilter(String name, EventfilterArgs args, CustomResourceOptions options)
    
    type: fortios:log:Eventfilter
    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 EventfilterArgs
    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 EventfilterArgs
    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 EventfilterArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args EventfilterArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args EventfilterArgs
    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 eventfilterResource = new Fortios.Log.Eventfilter("eventfilterResource", new()
    {
        Cifs = "string",
        ComplianceCheck = "string",
        Connector = "string",
        Endpoint = "string",
        Event = "string",
        Fortiextender = "string",
        Ha = "string",
        RestApi = "string",
        Router = "string",
        Sdwan = "string",
        SecurityRating = "string",
        SwitchController = "string",
        System = "string",
        User = "string",
        Vdomparam = "string",
        Vpn = "string",
        WanOpt = "string",
        Webproxy = "string",
        WirelessActivity = "string",
    });
    
    example, err := log.NewEventfilter(ctx, "eventfilterResource", &log.EventfilterArgs{
    	Cifs:             pulumi.String("string"),
    	ComplianceCheck:  pulumi.String("string"),
    	Connector:        pulumi.String("string"),
    	Endpoint:         pulumi.String("string"),
    	Event:            pulumi.String("string"),
    	Fortiextender:    pulumi.String("string"),
    	Ha:               pulumi.String("string"),
    	RestApi:          pulumi.String("string"),
    	Router:           pulumi.String("string"),
    	Sdwan:            pulumi.String("string"),
    	SecurityRating:   pulumi.String("string"),
    	SwitchController: pulumi.String("string"),
    	System:           pulumi.String("string"),
    	User:             pulumi.String("string"),
    	Vdomparam:        pulumi.String("string"),
    	Vpn:              pulumi.String("string"),
    	WanOpt:           pulumi.String("string"),
    	Webproxy:         pulumi.String("string"),
    	WirelessActivity: pulumi.String("string"),
    })
    
    var eventfilterResource = new Eventfilter("eventfilterResource", EventfilterArgs.builder()
        .cifs("string")
        .complianceCheck("string")
        .connector("string")
        .endpoint("string")
        .event("string")
        .fortiextender("string")
        .ha("string")
        .restApi("string")
        .router("string")
        .sdwan("string")
        .securityRating("string")
        .switchController("string")
        .system("string")
        .user("string")
        .vdomparam("string")
        .vpn("string")
        .wanOpt("string")
        .webproxy("string")
        .wirelessActivity("string")
        .build());
    
    eventfilter_resource = fortios.log.Eventfilter("eventfilterResource",
        cifs="string",
        compliance_check="string",
        connector="string",
        endpoint="string",
        event="string",
        fortiextender="string",
        ha="string",
        rest_api="string",
        router="string",
        sdwan="string",
        security_rating="string",
        switch_controller="string",
        system="string",
        user="string",
        vdomparam="string",
        vpn="string",
        wan_opt="string",
        webproxy="string",
        wireless_activity="string")
    
    const eventfilterResource = new fortios.log.Eventfilter("eventfilterResource", {
        cifs: "string",
        complianceCheck: "string",
        connector: "string",
        endpoint: "string",
        event: "string",
        fortiextender: "string",
        ha: "string",
        restApi: "string",
        router: "string",
        sdwan: "string",
        securityRating: "string",
        switchController: "string",
        system: "string",
        user: "string",
        vdomparam: "string",
        vpn: "string",
        wanOpt: "string",
        webproxy: "string",
        wirelessActivity: "string",
    });
    
    type: fortios:log:Eventfilter
    properties:
        cifs: string
        complianceCheck: string
        connector: string
        endpoint: string
        event: string
        fortiextender: string
        ha: string
        restApi: string
        router: string
        sdwan: string
        securityRating: string
        switchController: string
        system: string
        user: string
        vdomparam: string
        vpn: string
        wanOpt: string
        webproxy: string
        wirelessActivity: string
    

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

    Cifs string
    Enable/disable CIFS logging. Valid values: enable, disable.
    ComplianceCheck string
    Enable/disable PCI DSS compliance check logging. Valid values: enable, disable.
    Connector string
    Enable/disable SDN connector logging. Valid values: enable, disable.
    Endpoint string
    Enable/disable endpoint event logging. Valid values: enable, disable.
    Event string
    Enable/disable event logging. Valid values: enable, disable.
    Fortiextender string
    Enable/disable FortiExtender logging. Valid values: enable, disable.
    Ha string
    Enable/disable ha event logging. Valid values: enable, disable.
    RestApi string
    Enable/disable REST API logging. Valid values: enable, disable.
    Router string
    Enable/disable router event logging. Valid values: enable, disable.
    Sdwan string
    Enable/disable SD-WAN logging. Valid values: enable, disable.
    SecurityRating string
    Enable/disable Security Rating result logging. Valid values: enable, disable.
    SwitchController string
    Enable/disable Switch-Controller logging. Valid values: enable, disable.
    System string
    Enable/disable system event logging. Valid values: enable, disable.
    User string
    Enable/disable user authentication event logging. Valid values: enable, disable.
    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.
    Vpn string
    Enable/disable VPN event logging. Valid values: enable, disable.
    WanOpt string
    Enable/disable WAN optimization event logging. Valid values: enable, disable.
    Webproxy string
    Enable/disable web proxy event logging. Valid values: enable, disable.
    WirelessActivity string
    Enable/disable wireless event logging. Valid values: enable, disable.
    Cifs string
    Enable/disable CIFS logging. Valid values: enable, disable.
    ComplianceCheck string
    Enable/disable PCI DSS compliance check logging. Valid values: enable, disable.
    Connector string
    Enable/disable SDN connector logging. Valid values: enable, disable.
    Endpoint string
    Enable/disable endpoint event logging. Valid values: enable, disable.
    Event string
    Enable/disable event logging. Valid values: enable, disable.
    Fortiextender string
    Enable/disable FortiExtender logging. Valid values: enable, disable.
    Ha string
    Enable/disable ha event logging. Valid values: enable, disable.
    RestApi string
    Enable/disable REST API logging. Valid values: enable, disable.
    Router string
    Enable/disable router event logging. Valid values: enable, disable.
    Sdwan string
    Enable/disable SD-WAN logging. Valid values: enable, disable.
    SecurityRating string
    Enable/disable Security Rating result logging. Valid values: enable, disable.
    SwitchController string
    Enable/disable Switch-Controller logging. Valid values: enable, disable.
    System string
    Enable/disable system event logging. Valid values: enable, disable.
    User string
    Enable/disable user authentication event logging. Valid values: enable, disable.
    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.
    Vpn string
    Enable/disable VPN event logging. Valid values: enable, disable.
    WanOpt string
    Enable/disable WAN optimization event logging. Valid values: enable, disable.
    Webproxy string
    Enable/disable web proxy event logging. Valid values: enable, disable.
    WirelessActivity string
    Enable/disable wireless event logging. Valid values: enable, disable.
    cifs String
    Enable/disable CIFS logging. Valid values: enable, disable.
    complianceCheck String
    Enable/disable PCI DSS compliance check logging. Valid values: enable, disable.
    connector String
    Enable/disable SDN connector logging. Valid values: enable, disable.
    endpoint String
    Enable/disable endpoint event logging. Valid values: enable, disable.
    event String
    Enable/disable event logging. Valid values: enable, disable.
    fortiextender String
    Enable/disable FortiExtender logging. Valid values: enable, disable.
    ha String
    Enable/disable ha event logging. Valid values: enable, disable.
    restApi String
    Enable/disable REST API logging. Valid values: enable, disable.
    router String
    Enable/disable router event logging. Valid values: enable, disable.
    sdwan String
    Enable/disable SD-WAN logging. Valid values: enable, disable.
    securityRating String
    Enable/disable Security Rating result logging. Valid values: enable, disable.
    switchController String
    Enable/disable Switch-Controller logging. Valid values: enable, disable.
    system String
    Enable/disable system event logging. Valid values: enable, disable.
    user String
    Enable/disable user authentication event logging. Valid values: enable, disable.
    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.
    vpn String
    Enable/disable VPN event logging. Valid values: enable, disable.
    wanOpt String
    Enable/disable WAN optimization event logging. Valid values: enable, disable.
    webproxy String
    Enable/disable web proxy event logging. Valid values: enable, disable.
    wirelessActivity String
    Enable/disable wireless event logging. Valid values: enable, disable.
    cifs string
    Enable/disable CIFS logging. Valid values: enable, disable.
    complianceCheck string
    Enable/disable PCI DSS compliance check logging. Valid values: enable, disable.
    connector string
    Enable/disable SDN connector logging. Valid values: enable, disable.
    endpoint string
    Enable/disable endpoint event logging. Valid values: enable, disable.
    event string
    Enable/disable event logging. Valid values: enable, disable.
    fortiextender string
    Enable/disable FortiExtender logging. Valid values: enable, disable.
    ha string
    Enable/disable ha event logging. Valid values: enable, disable.
    restApi string
    Enable/disable REST API logging. Valid values: enable, disable.
    router string
    Enable/disable router event logging. Valid values: enable, disable.
    sdwan string
    Enable/disable SD-WAN logging. Valid values: enable, disable.
    securityRating string
    Enable/disable Security Rating result logging. Valid values: enable, disable.
    switchController string
    Enable/disable Switch-Controller logging. Valid values: enable, disable.
    system string
    Enable/disable system event logging. Valid values: enable, disable.
    user string
    Enable/disable user authentication event logging. Valid values: enable, disable.
    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.
    vpn string
    Enable/disable VPN event logging. Valid values: enable, disable.
    wanOpt string
    Enable/disable WAN optimization event logging. Valid values: enable, disable.
    webproxy string
    Enable/disable web proxy event logging. Valid values: enable, disable.
    wirelessActivity string
    Enable/disable wireless event logging. Valid values: enable, disable.
    cifs str
    Enable/disable CIFS logging. Valid values: enable, disable.
    compliance_check str
    Enable/disable PCI DSS compliance check logging. Valid values: enable, disable.
    connector str
    Enable/disable SDN connector logging. Valid values: enable, disable.
    endpoint str
    Enable/disable endpoint event logging. Valid values: enable, disable.
    event str
    Enable/disable event logging. Valid values: enable, disable.
    fortiextender str
    Enable/disable FortiExtender logging. Valid values: enable, disable.
    ha str
    Enable/disable ha event logging. Valid values: enable, disable.
    rest_api str
    Enable/disable REST API logging. Valid values: enable, disable.
    router str
    Enable/disable router event logging. Valid values: enable, disable.
    sdwan str
    Enable/disable SD-WAN logging. Valid values: enable, disable.
    security_rating str
    Enable/disable Security Rating result logging. Valid values: enable, disable.
    switch_controller str
    Enable/disable Switch-Controller logging. Valid values: enable, disable.
    system str
    Enable/disable system event logging. Valid values: enable, disable.
    user str
    Enable/disable user authentication event logging. Valid values: enable, disable.
    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.
    vpn str
    Enable/disable VPN event logging. Valid values: enable, disable.
    wan_opt str
    Enable/disable WAN optimization event logging. Valid values: enable, disable.
    webproxy str
    Enable/disable web proxy event logging. Valid values: enable, disable.
    wireless_activity str
    Enable/disable wireless event logging. Valid values: enable, disable.
    cifs String
    Enable/disable CIFS logging. Valid values: enable, disable.
    complianceCheck String
    Enable/disable PCI DSS compliance check logging. Valid values: enable, disable.
    connector String
    Enable/disable SDN connector logging. Valid values: enable, disable.
    endpoint String
    Enable/disable endpoint event logging. Valid values: enable, disable.
    event String
    Enable/disable event logging. Valid values: enable, disable.
    fortiextender String
    Enable/disable FortiExtender logging. Valid values: enable, disable.
    ha String
    Enable/disable ha event logging. Valid values: enable, disable.
    restApi String
    Enable/disable REST API logging. Valid values: enable, disable.
    router String
    Enable/disable router event logging. Valid values: enable, disable.
    sdwan String
    Enable/disable SD-WAN logging. Valid values: enable, disable.
    securityRating String
    Enable/disable Security Rating result logging. Valid values: enable, disable.
    switchController String
    Enable/disable Switch-Controller logging. Valid values: enable, disable.
    system String
    Enable/disable system event logging. Valid values: enable, disable.
    user String
    Enable/disable user authentication event logging. Valid values: enable, disable.
    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.
    vpn String
    Enable/disable VPN event logging. Valid values: enable, disable.
    wanOpt String
    Enable/disable WAN optimization event logging. Valid values: enable, disable.
    webproxy String
    Enable/disable web proxy event logging. Valid values: enable, disable.
    wirelessActivity String
    Enable/disable wireless event logging. Valid values: enable, disable.

    Outputs

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

    Get an existing Eventfilter 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?: EventfilterState, opts?: CustomResourceOptions): Eventfilter
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            cifs: Optional[str] = None,
            compliance_check: Optional[str] = None,
            connector: Optional[str] = None,
            endpoint: Optional[str] = None,
            event: Optional[str] = None,
            fortiextender: Optional[str] = None,
            ha: Optional[str] = None,
            rest_api: Optional[str] = None,
            router: Optional[str] = None,
            sdwan: Optional[str] = None,
            security_rating: Optional[str] = None,
            switch_controller: Optional[str] = None,
            system: Optional[str] = None,
            user: Optional[str] = None,
            vdomparam: Optional[str] = None,
            vpn: Optional[str] = None,
            wan_opt: Optional[str] = None,
            webproxy: Optional[str] = None,
            wireless_activity: Optional[str] = None) -> Eventfilter
    func GetEventfilter(ctx *Context, name string, id IDInput, state *EventfilterState, opts ...ResourceOption) (*Eventfilter, error)
    public static Eventfilter Get(string name, Input<string> id, EventfilterState? state, CustomResourceOptions? opts = null)
    public static Eventfilter get(String name, Output<String> id, EventfilterState 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:
    Cifs string
    Enable/disable CIFS logging. Valid values: enable, disable.
    ComplianceCheck string
    Enable/disable PCI DSS compliance check logging. Valid values: enable, disable.
    Connector string
    Enable/disable SDN connector logging. Valid values: enable, disable.
    Endpoint string
    Enable/disable endpoint event logging. Valid values: enable, disable.
    Event string
    Enable/disable event logging. Valid values: enable, disable.
    Fortiextender string
    Enable/disable FortiExtender logging. Valid values: enable, disable.
    Ha string
    Enable/disable ha event logging. Valid values: enable, disable.
    RestApi string
    Enable/disable REST API logging. Valid values: enable, disable.
    Router string
    Enable/disable router event logging. Valid values: enable, disable.
    Sdwan string
    Enable/disable SD-WAN logging. Valid values: enable, disable.
    SecurityRating string
    Enable/disable Security Rating result logging. Valid values: enable, disable.
    SwitchController string
    Enable/disable Switch-Controller logging. Valid values: enable, disable.
    System string
    Enable/disable system event logging. Valid values: enable, disable.
    User string
    Enable/disable user authentication event logging. Valid values: enable, disable.
    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.
    Vpn string
    Enable/disable VPN event logging. Valid values: enable, disable.
    WanOpt string
    Enable/disable WAN optimization event logging. Valid values: enable, disable.
    Webproxy string
    Enable/disable web proxy event logging. Valid values: enable, disable.
    WirelessActivity string
    Enable/disable wireless event logging. Valid values: enable, disable.
    Cifs string
    Enable/disable CIFS logging. Valid values: enable, disable.
    ComplianceCheck string
    Enable/disable PCI DSS compliance check logging. Valid values: enable, disable.
    Connector string
    Enable/disable SDN connector logging. Valid values: enable, disable.
    Endpoint string
    Enable/disable endpoint event logging. Valid values: enable, disable.
    Event string
    Enable/disable event logging. Valid values: enable, disable.
    Fortiextender string
    Enable/disable FortiExtender logging. Valid values: enable, disable.
    Ha string
    Enable/disable ha event logging. Valid values: enable, disable.
    RestApi string
    Enable/disable REST API logging. Valid values: enable, disable.
    Router string
    Enable/disable router event logging. Valid values: enable, disable.
    Sdwan string
    Enable/disable SD-WAN logging. Valid values: enable, disable.
    SecurityRating string
    Enable/disable Security Rating result logging. Valid values: enable, disable.
    SwitchController string
    Enable/disable Switch-Controller logging. Valid values: enable, disable.
    System string
    Enable/disable system event logging. Valid values: enable, disable.
    User string
    Enable/disable user authentication event logging. Valid values: enable, disable.
    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.
    Vpn string
    Enable/disable VPN event logging. Valid values: enable, disable.
    WanOpt string
    Enable/disable WAN optimization event logging. Valid values: enable, disable.
    Webproxy string
    Enable/disable web proxy event logging. Valid values: enable, disable.
    WirelessActivity string
    Enable/disable wireless event logging. Valid values: enable, disable.
    cifs String
    Enable/disable CIFS logging. Valid values: enable, disable.
    complianceCheck String
    Enable/disable PCI DSS compliance check logging. Valid values: enable, disable.
    connector String
    Enable/disable SDN connector logging. Valid values: enable, disable.
    endpoint String
    Enable/disable endpoint event logging. Valid values: enable, disable.
    event String
    Enable/disable event logging. Valid values: enable, disable.
    fortiextender String
    Enable/disable FortiExtender logging. Valid values: enable, disable.
    ha String
    Enable/disable ha event logging. Valid values: enable, disable.
    restApi String
    Enable/disable REST API logging. Valid values: enable, disable.
    router String
    Enable/disable router event logging. Valid values: enable, disable.
    sdwan String
    Enable/disable SD-WAN logging. Valid values: enable, disable.
    securityRating String
    Enable/disable Security Rating result logging. Valid values: enable, disable.
    switchController String
    Enable/disable Switch-Controller logging. Valid values: enable, disable.
    system String
    Enable/disable system event logging. Valid values: enable, disable.
    user String
    Enable/disable user authentication event logging. Valid values: enable, disable.
    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.
    vpn String
    Enable/disable VPN event logging. Valid values: enable, disable.
    wanOpt String
    Enable/disable WAN optimization event logging. Valid values: enable, disable.
    webproxy String
    Enable/disable web proxy event logging. Valid values: enable, disable.
    wirelessActivity String
    Enable/disable wireless event logging. Valid values: enable, disable.
    cifs string
    Enable/disable CIFS logging. Valid values: enable, disable.
    complianceCheck string
    Enable/disable PCI DSS compliance check logging. Valid values: enable, disable.
    connector string
    Enable/disable SDN connector logging. Valid values: enable, disable.
    endpoint string
    Enable/disable endpoint event logging. Valid values: enable, disable.
    event string
    Enable/disable event logging. Valid values: enable, disable.
    fortiextender string
    Enable/disable FortiExtender logging. Valid values: enable, disable.
    ha string
    Enable/disable ha event logging. Valid values: enable, disable.
    restApi string
    Enable/disable REST API logging. Valid values: enable, disable.
    router string
    Enable/disable router event logging. Valid values: enable, disable.
    sdwan string
    Enable/disable SD-WAN logging. Valid values: enable, disable.
    securityRating string
    Enable/disable Security Rating result logging. Valid values: enable, disable.
    switchController string
    Enable/disable Switch-Controller logging. Valid values: enable, disable.
    system string
    Enable/disable system event logging. Valid values: enable, disable.
    user string
    Enable/disable user authentication event logging. Valid values: enable, disable.
    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.
    vpn string
    Enable/disable VPN event logging. Valid values: enable, disable.
    wanOpt string
    Enable/disable WAN optimization event logging. Valid values: enable, disable.
    webproxy string
    Enable/disable web proxy event logging. Valid values: enable, disable.
    wirelessActivity string
    Enable/disable wireless event logging. Valid values: enable, disable.
    cifs str
    Enable/disable CIFS logging. Valid values: enable, disable.
    compliance_check str
    Enable/disable PCI DSS compliance check logging. Valid values: enable, disable.
    connector str
    Enable/disable SDN connector logging. Valid values: enable, disable.
    endpoint str
    Enable/disable endpoint event logging. Valid values: enable, disable.
    event str
    Enable/disable event logging. Valid values: enable, disable.
    fortiextender str
    Enable/disable FortiExtender logging. Valid values: enable, disable.
    ha str
    Enable/disable ha event logging. Valid values: enable, disable.
    rest_api str
    Enable/disable REST API logging. Valid values: enable, disable.
    router str
    Enable/disable router event logging. Valid values: enable, disable.
    sdwan str
    Enable/disable SD-WAN logging. Valid values: enable, disable.
    security_rating str
    Enable/disable Security Rating result logging. Valid values: enable, disable.
    switch_controller str
    Enable/disable Switch-Controller logging. Valid values: enable, disable.
    system str
    Enable/disable system event logging. Valid values: enable, disable.
    user str
    Enable/disable user authentication event logging. Valid values: enable, disable.
    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.
    vpn str
    Enable/disable VPN event logging. Valid values: enable, disable.
    wan_opt str
    Enable/disable WAN optimization event logging. Valid values: enable, disable.
    webproxy str
    Enable/disable web proxy event logging. Valid values: enable, disable.
    wireless_activity str
    Enable/disable wireless event logging. Valid values: enable, disable.
    cifs String
    Enable/disable CIFS logging. Valid values: enable, disable.
    complianceCheck String
    Enable/disable PCI DSS compliance check logging. Valid values: enable, disable.
    connector String
    Enable/disable SDN connector logging. Valid values: enable, disable.
    endpoint String
    Enable/disable endpoint event logging. Valid values: enable, disable.
    event String
    Enable/disable event logging. Valid values: enable, disable.
    fortiextender String
    Enable/disable FortiExtender logging. Valid values: enable, disable.
    ha String
    Enable/disable ha event logging. Valid values: enable, disable.
    restApi String
    Enable/disable REST API logging. Valid values: enable, disable.
    router String
    Enable/disable router event logging. Valid values: enable, disable.
    sdwan String
    Enable/disable SD-WAN logging. Valid values: enable, disable.
    securityRating String
    Enable/disable Security Rating result logging. Valid values: enable, disable.
    switchController String
    Enable/disable Switch-Controller logging. Valid values: enable, disable.
    system String
    Enable/disable system event logging. Valid values: enable, disable.
    user String
    Enable/disable user authentication event logging. Valid values: enable, disable.
    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.
    vpn String
    Enable/disable VPN event logging. Valid values: enable, disable.
    wanOpt String
    Enable/disable WAN optimization event logging. Valid values: enable, disable.
    webproxy String
    Enable/disable web proxy event logging. Valid values: enable, disable.
    wirelessActivity String
    Enable/disable wireless event logging. Valid values: enable, disable.

    Import

    Log Eventfilter can be imported using any of these accepted formats:

    $ pulumi import fortios:log/eventfilter:Eventfilter labelname LogEventfilter
    

    If you do not want to import arguments of block:

    $ export “FORTIOS_IMPORT_TABLE”=“false”

    $ pulumi import fortios:log/eventfilter:Eventfilter labelname LogEventfilter
    

    $ 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.6 published on Tuesday, Jul 9, 2024 by pulumiverse