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

fortimanager.PackagesFirewallInterfacepolicy

Explore with Pulumi AI

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

    Configure IPv4 interface policies.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const labelname = new fortimanager.PackagesFirewallInterfacepolicy("labelname", {
        addressType: "ipv4",
        applicationListStatus: "disable",
        avProfileStatus: "disable",
        dlpSensorStatus: "disable",
        dsri: "disable",
        dstaddrs: ["all"],
        emailfilterProfileStatus: "disable",
        interfaces: ["1-A14"],
        ipsSensorStatus: "disable",
        logtraffic: "utm",
        pkg: "default",
        policyid: 1,
        services: ["ALL"],
        srcaddrs: ["all"],
        status: "enable",
        webfilterProfileStatus: "disable",
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    labelname = fortimanager.PackagesFirewallInterfacepolicy("labelname",
        address_type="ipv4",
        application_list_status="disable",
        av_profile_status="disable",
        dlp_sensor_status="disable",
        dsri="disable",
        dstaddrs=["all"],
        emailfilter_profile_status="disable",
        interfaces=["1-A14"],
        ips_sensor_status="disable",
        logtraffic="utm",
        pkg="default",
        policyid=1,
        services=["ALL"],
        srcaddrs=["all"],
        status="enable",
        webfilter_profile_status="disable")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/fortimanager/fortimanager"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := fortimanager.NewPackagesFirewallInterfacepolicy(ctx, "labelname", &fortimanager.PackagesFirewallInterfacepolicyArgs{
    			AddressType:           pulumi.String("ipv4"),
    			ApplicationListStatus: pulumi.String("disable"),
    			AvProfileStatus:       pulumi.String("disable"),
    			DlpSensorStatus:       pulumi.String("disable"),
    			Dsri:                  pulumi.String("disable"),
    			Dstaddrs: pulumi.StringArray{
    				pulumi.String("all"),
    			},
    			EmailfilterProfileStatus: pulumi.String("disable"),
    			Interfaces: pulumi.StringArray{
    				pulumi.String("1-A14"),
    			},
    			IpsSensorStatus: pulumi.String("disable"),
    			Logtraffic:      pulumi.String("utm"),
    			Pkg:             pulumi.String("default"),
    			Policyid:        pulumi.Float64(1),
    			Services: pulumi.StringArray{
    				pulumi.String("ALL"),
    			},
    			Srcaddrs: pulumi.StringArray{
    				pulumi.String("all"),
    			},
    			Status:                 pulumi.String("enable"),
    			WebfilterProfileStatus: pulumi.String("disable"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Fortimanager = Pulumi.Fortimanager;
    
    return await Deployment.RunAsync(() => 
    {
        var labelname = new Fortimanager.PackagesFirewallInterfacepolicy("labelname", new()
        {
            AddressType = "ipv4",
            ApplicationListStatus = "disable",
            AvProfileStatus = "disable",
            DlpSensorStatus = "disable",
            Dsri = "disable",
            Dstaddrs = new[]
            {
                "all",
            },
            EmailfilterProfileStatus = "disable",
            Interfaces = new[]
            {
                "1-A14",
            },
            IpsSensorStatus = "disable",
            Logtraffic = "utm",
            Pkg = "default",
            Policyid = 1,
            Services = new[]
            {
                "ALL",
            },
            Srcaddrs = new[]
            {
                "all",
            },
            Status = "enable",
            WebfilterProfileStatus = "disable",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.PackagesFirewallInterfacepolicy;
    import com.pulumi.fortimanager.PackagesFirewallInterfacepolicyArgs;
    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 labelname = new PackagesFirewallInterfacepolicy("labelname", PackagesFirewallInterfacepolicyArgs.builder()
                .addressType("ipv4")
                .applicationListStatus("disable")
                .avProfileStatus("disable")
                .dlpSensorStatus("disable")
                .dsri("disable")
                .dstaddrs("all")
                .emailfilterProfileStatus("disable")
                .interfaces("1-A14")
                .ipsSensorStatus("disable")
                .logtraffic("utm")
                .pkg("default")
                .policyid(1)
                .services("ALL")
                .srcaddrs("all")
                .status("enable")
                .webfilterProfileStatus("disable")
                .build());
    
        }
    }
    
    resources:
      labelname:
        type: fortimanager:PackagesFirewallInterfacepolicy
        properties:
          addressType: ipv4
          applicationListStatus: disable
          avProfileStatus: disable
          dlpSensorStatus: disable
          dsri: disable
          dstaddrs:
            - all
          emailfilterProfileStatus: disable
          interfaces:
            - 1-A14
          ipsSensorStatus: disable
          logtraffic: utm
          pkg: default
          policyid: 1
          services:
            - ALL
          srcaddrs:
            - all
          status: enable
          webfilterProfileStatus: disable
    

    Create PackagesFirewallInterfacepolicy Resource

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

    Constructor syntax

    new PackagesFirewallInterfacepolicy(name: string, args: PackagesFirewallInterfacepolicyArgs, opts?: CustomResourceOptions);
    @overload
    def PackagesFirewallInterfacepolicy(resource_name: str,
                                        args: PackagesFirewallInterfacepolicyArgs,
                                        opts: Optional[ResourceOptions] = None)
    
    @overload
    def PackagesFirewallInterfacepolicy(resource_name: str,
                                        opts: Optional[ResourceOptions] = None,
                                        pkg: Optional[str] = None,
                                        ips_sensor: Optional[str] = None,
                                        av_profile: Optional[str] = None,
                                        application_list_status: Optional[str] = None,
                                        address_type: Optional[str] = None,
                                        av_profile_status: Optional[str] = None,
                                        ips_sensor_status: Optional[str] = None,
                                        casb_profiles: Optional[Sequence[str]] = None,
                                        comments: Optional[str] = None,
                                        dlp_profile: Optional[str] = None,
                                        dlp_profile_status: Optional[str] = None,
                                        dlp_sensor: Optional[str] = None,
                                        dlp_sensor_status: Optional[str] = None,
                                        dsri: Optional[str] = None,
                                        dstaddrs: Optional[Sequence[str]] = None,
                                        emailfilter_profile_status: Optional[str] = None,
                                        emailfilter_profiles: Optional[Sequence[str]] = None,
                                        webfilter_profile: Optional[str] = None,
                                        application_list: Optional[str] = None,
                                        casb_profile_status: Optional[str] = None,
                                        label: Optional[str] = None,
                                        logtraffic: Optional[str] = None,
                                        packages_firewall_interfacepolicy_id: Optional[str] = None,
                                        adom: Optional[str] = None,
                                        pkg_folder_path: Optional[str] = None,
                                        policyid: Optional[float] = None,
                                        scan_botnet_connections: Optional[str] = None,
                                        scopetype: Optional[str] = None,
                                        services: Optional[Sequence[str]] = None,
                                        spamfilter_profile: Optional[str] = None,
                                        spamfilter_profile_status: Optional[str] = None,
                                        srcaddrs: Optional[Sequence[str]] = None,
                                        status: Optional[str] = None,
                                        uuid: Optional[str] = None,
                                        interfaces: Optional[Sequence[str]] = None,
                                        webfilter_profile_status: Optional[str] = None)
    func NewPackagesFirewallInterfacepolicy(ctx *Context, name string, args PackagesFirewallInterfacepolicyArgs, opts ...ResourceOption) (*PackagesFirewallInterfacepolicy, error)
    public PackagesFirewallInterfacepolicy(string name, PackagesFirewallInterfacepolicyArgs args, CustomResourceOptions? opts = null)
    public PackagesFirewallInterfacepolicy(String name, PackagesFirewallInterfacepolicyArgs args)
    public PackagesFirewallInterfacepolicy(String name, PackagesFirewallInterfacepolicyArgs args, CustomResourceOptions options)
    
    type: fortimanager:PackagesFirewallInterfacepolicy
    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 PackagesFirewallInterfacepolicyArgs
    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 PackagesFirewallInterfacepolicyArgs
    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 PackagesFirewallInterfacepolicyArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args PackagesFirewallInterfacepolicyArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args PackagesFirewallInterfacepolicyArgs
    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 packagesFirewallInterfacepolicyResource = new Fortimanager.PackagesFirewallInterfacepolicy("packagesFirewallInterfacepolicyResource", new()
    {
        Pkg = "string",
        IpsSensor = "string",
        AvProfile = "string",
        ApplicationListStatus = "string",
        AddressType = "string",
        AvProfileStatus = "string",
        IpsSensorStatus = "string",
        CasbProfiles = new[]
        {
            "string",
        },
        Comments = "string",
        DlpProfile = "string",
        DlpProfileStatus = "string",
        DlpSensor = "string",
        DlpSensorStatus = "string",
        Dsri = "string",
        Dstaddrs = new[]
        {
            "string",
        },
        EmailfilterProfileStatus = "string",
        EmailfilterProfiles = new[]
        {
            "string",
        },
        WebfilterProfile = "string",
        ApplicationList = "string",
        CasbProfileStatus = "string",
        Label = "string",
        Logtraffic = "string",
        PackagesFirewallInterfacepolicyId = "string",
        Adom = "string",
        PkgFolderPath = "string",
        Policyid = 0,
        ScanBotnetConnections = "string",
        Scopetype = "string",
        Services = new[]
        {
            "string",
        },
        SpamfilterProfile = "string",
        SpamfilterProfileStatus = "string",
        Srcaddrs = new[]
        {
            "string",
        },
        Status = "string",
        Uuid = "string",
        Interfaces = new[]
        {
            "string",
        },
        WebfilterProfileStatus = "string",
    });
    
    example, err := fortimanager.NewPackagesFirewallInterfacepolicy(ctx, "packagesFirewallInterfacepolicyResource", &fortimanager.PackagesFirewallInterfacepolicyArgs{
    Pkg: pulumi.String("string"),
    IpsSensor: pulumi.String("string"),
    AvProfile: pulumi.String("string"),
    ApplicationListStatus: pulumi.String("string"),
    AddressType: pulumi.String("string"),
    AvProfileStatus: pulumi.String("string"),
    IpsSensorStatus: pulumi.String("string"),
    CasbProfiles: pulumi.StringArray{
    pulumi.String("string"),
    },
    Comments: pulumi.String("string"),
    DlpProfile: pulumi.String("string"),
    DlpProfileStatus: pulumi.String("string"),
    DlpSensor: pulumi.String("string"),
    DlpSensorStatus: pulumi.String("string"),
    Dsri: pulumi.String("string"),
    Dstaddrs: pulumi.StringArray{
    pulumi.String("string"),
    },
    EmailfilterProfileStatus: pulumi.String("string"),
    EmailfilterProfiles: pulumi.StringArray{
    pulumi.String("string"),
    },
    WebfilterProfile: pulumi.String("string"),
    ApplicationList: pulumi.String("string"),
    CasbProfileStatus: pulumi.String("string"),
    Label: pulumi.String("string"),
    Logtraffic: pulumi.String("string"),
    PackagesFirewallInterfacepolicyId: pulumi.String("string"),
    Adom: pulumi.String("string"),
    PkgFolderPath: pulumi.String("string"),
    Policyid: pulumi.Float64(0),
    ScanBotnetConnections: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    Services: pulumi.StringArray{
    pulumi.String("string"),
    },
    SpamfilterProfile: pulumi.String("string"),
    SpamfilterProfileStatus: pulumi.String("string"),
    Srcaddrs: pulumi.StringArray{
    pulumi.String("string"),
    },
    Status: pulumi.String("string"),
    Uuid: pulumi.String("string"),
    Interfaces: pulumi.StringArray{
    pulumi.String("string"),
    },
    WebfilterProfileStatus: pulumi.String("string"),
    })
    
    var packagesFirewallInterfacepolicyResource = new PackagesFirewallInterfacepolicy("packagesFirewallInterfacepolicyResource", PackagesFirewallInterfacepolicyArgs.builder()
        .pkg("string")
        .ipsSensor("string")
        .avProfile("string")
        .applicationListStatus("string")
        .addressType("string")
        .avProfileStatus("string")
        .ipsSensorStatus("string")
        .casbProfiles("string")
        .comments("string")
        .dlpProfile("string")
        .dlpProfileStatus("string")
        .dlpSensor("string")
        .dlpSensorStatus("string")
        .dsri("string")
        .dstaddrs("string")
        .emailfilterProfileStatus("string")
        .emailfilterProfiles("string")
        .webfilterProfile("string")
        .applicationList("string")
        .casbProfileStatus("string")
        .label("string")
        .logtraffic("string")
        .packagesFirewallInterfacepolicyId("string")
        .adom("string")
        .pkgFolderPath("string")
        .policyid(0)
        .scanBotnetConnections("string")
        .scopetype("string")
        .services("string")
        .spamfilterProfile("string")
        .spamfilterProfileStatus("string")
        .srcaddrs("string")
        .status("string")
        .uuid("string")
        .interfaces("string")
        .webfilterProfileStatus("string")
        .build());
    
    packages_firewall_interfacepolicy_resource = fortimanager.PackagesFirewallInterfacepolicy("packagesFirewallInterfacepolicyResource",
        pkg="string",
        ips_sensor="string",
        av_profile="string",
        application_list_status="string",
        address_type="string",
        av_profile_status="string",
        ips_sensor_status="string",
        casb_profiles=["string"],
        comments="string",
        dlp_profile="string",
        dlp_profile_status="string",
        dlp_sensor="string",
        dlp_sensor_status="string",
        dsri="string",
        dstaddrs=["string"],
        emailfilter_profile_status="string",
        emailfilter_profiles=["string"],
        webfilter_profile="string",
        application_list="string",
        casb_profile_status="string",
        label="string",
        logtraffic="string",
        packages_firewall_interfacepolicy_id="string",
        adom="string",
        pkg_folder_path="string",
        policyid=0,
        scan_botnet_connections="string",
        scopetype="string",
        services=["string"],
        spamfilter_profile="string",
        spamfilter_profile_status="string",
        srcaddrs=["string"],
        status="string",
        uuid="string",
        interfaces=["string"],
        webfilter_profile_status="string")
    
    const packagesFirewallInterfacepolicyResource = new fortimanager.PackagesFirewallInterfacepolicy("packagesFirewallInterfacepolicyResource", {
        pkg: "string",
        ipsSensor: "string",
        avProfile: "string",
        applicationListStatus: "string",
        addressType: "string",
        avProfileStatus: "string",
        ipsSensorStatus: "string",
        casbProfiles: ["string"],
        comments: "string",
        dlpProfile: "string",
        dlpProfileStatus: "string",
        dlpSensor: "string",
        dlpSensorStatus: "string",
        dsri: "string",
        dstaddrs: ["string"],
        emailfilterProfileStatus: "string",
        emailfilterProfiles: ["string"],
        webfilterProfile: "string",
        applicationList: "string",
        casbProfileStatus: "string",
        label: "string",
        logtraffic: "string",
        packagesFirewallInterfacepolicyId: "string",
        adom: "string",
        pkgFolderPath: "string",
        policyid: 0,
        scanBotnetConnections: "string",
        scopetype: "string",
        services: ["string"],
        spamfilterProfile: "string",
        spamfilterProfileStatus: "string",
        srcaddrs: ["string"],
        status: "string",
        uuid: "string",
        interfaces: ["string"],
        webfilterProfileStatus: "string",
    });
    
    type: fortimanager:PackagesFirewallInterfacepolicy
    properties:
        addressType: string
        adom: string
        applicationList: string
        applicationListStatus: string
        avProfile: string
        avProfileStatus: string
        casbProfileStatus: string
        casbProfiles:
            - string
        comments: string
        dlpProfile: string
        dlpProfileStatus: string
        dlpSensor: string
        dlpSensorStatus: string
        dsri: string
        dstaddrs:
            - string
        emailfilterProfileStatus: string
        emailfilterProfiles:
            - string
        interfaces:
            - string
        ipsSensor: string
        ipsSensorStatus: string
        label: string
        logtraffic: string
        packagesFirewallInterfacepolicyId: string
        pkg: string
        pkgFolderPath: string
        policyid: 0
        scanBotnetConnections: string
        scopetype: string
        services:
            - string
        spamfilterProfile: string
        spamfilterProfileStatus: string
        srcaddrs:
            - string
        status: string
        uuid: string
        webfilterProfile: string
        webfilterProfileStatus: string
    

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

    Pkg string
    Package.
    AddressType string
    Address-Type. Valid values: ipv4, ipv6.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    ApplicationList string
    Application list name.
    ApplicationListStatus string
    Enable/disable application control. Valid values: disable, enable.
    AvProfile string
    Antivirus profile.
    AvProfileStatus string
    Enable/disable antivirus. Valid values: disable, enable.
    CasbProfileStatus string
    Enable/disable CASB. Valid values: disable, enable.
    CasbProfiles List<string>
    CASB profile.
    Comments string
    Comments.
    DlpProfile string
    DLP profile name.
    DlpProfileStatus string
    Enable/disable DLP. Valid values: disable, enable.
    DlpSensor string
    DLP sensor name.
    DlpSensorStatus string
    Enable/disable DLP. Valid values: disable, enable.
    Dsri string
    Enable/disable DSRI. Valid values: disable, enable.
    Dstaddrs List<string>
    Address object to limit traffic monitoring to network traffic sent to the specified address or range.
    EmailfilterProfileStatus string
    Enable/disable email filter. Valid values: disable, enable.
    EmailfilterProfiles List<string>
    Email filter profile.
    Interfaces List<string>
    Monitored interface name from available interfaces.
    IpsSensor string
    IPS sensor name.
    IpsSensorStatus string
    Enable/disable IPS. Valid values: disable, enable.
    Label string
    Label.
    Logtraffic string
    Logging type to be used in this policy (Options: all | utm | disable, Default: utm). Valid values: disable, all, utm.
    PackagesFirewallInterfacepolicyId string
    an identifier for the resource with format {{policyid}}.
    PkgFolderPath string
    Pkg Folder Path.
    Policyid double
    Policy ID (0 - 4294967295).
    ScanBotnetConnections string
    Enable/disable scanning for connections to Botnet servers. Valid values: disable, block, monitor.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Services List<string>
    Service object from available options.
    SpamfilterProfile string
    Antispam profile.
    SpamfilterProfileStatus string
    Enable/disable antispam. Valid values: disable, enable.
    Srcaddrs List<string>
    Address object to limit traffic monitoring to network traffic sent from the specified address or range.
    Status string
    Enable/disable this policy. Valid values: disable, enable.
    Uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    WebfilterProfile string
    Web filter profile.
    WebfilterProfileStatus string
    Enable/disable web filtering. Valid values: disable, enable.
    Pkg string
    Package.
    AddressType string
    Address-Type. Valid values: ipv4, ipv6.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    ApplicationList string
    Application list name.
    ApplicationListStatus string
    Enable/disable application control. Valid values: disable, enable.
    AvProfile string
    Antivirus profile.
    AvProfileStatus string
    Enable/disable antivirus. Valid values: disable, enable.
    CasbProfileStatus string
    Enable/disable CASB. Valid values: disable, enable.
    CasbProfiles []string
    CASB profile.
    Comments string
    Comments.
    DlpProfile string
    DLP profile name.
    DlpProfileStatus string
    Enable/disable DLP. Valid values: disable, enable.
    DlpSensor string
    DLP sensor name.
    DlpSensorStatus string
    Enable/disable DLP. Valid values: disable, enable.
    Dsri string
    Enable/disable DSRI. Valid values: disable, enable.
    Dstaddrs []string
    Address object to limit traffic monitoring to network traffic sent to the specified address or range.
    EmailfilterProfileStatus string
    Enable/disable email filter. Valid values: disable, enable.
    EmailfilterProfiles []string
    Email filter profile.
    Interfaces []string
    Monitored interface name from available interfaces.
    IpsSensor string
    IPS sensor name.
    IpsSensorStatus string
    Enable/disable IPS. Valid values: disable, enable.
    Label string
    Label.
    Logtraffic string
    Logging type to be used in this policy (Options: all | utm | disable, Default: utm). Valid values: disable, all, utm.
    PackagesFirewallInterfacepolicyId string
    an identifier for the resource with format {{policyid}}.
    PkgFolderPath string
    Pkg Folder Path.
    Policyid float64
    Policy ID (0 - 4294967295).
    ScanBotnetConnections string
    Enable/disable scanning for connections to Botnet servers. Valid values: disable, block, monitor.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Services []string
    Service object from available options.
    SpamfilterProfile string
    Antispam profile.
    SpamfilterProfileStatus string
    Enable/disable antispam. Valid values: disable, enable.
    Srcaddrs []string
    Address object to limit traffic monitoring to network traffic sent from the specified address or range.
    Status string
    Enable/disable this policy. Valid values: disable, enable.
    Uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    WebfilterProfile string
    Web filter profile.
    WebfilterProfileStatus string
    Enable/disable web filtering. Valid values: disable, enable.
    pkg String
    Package.
    addressType String
    Address-Type. Valid values: ipv4, ipv6.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    applicationList String
    Application list name.
    applicationListStatus String
    Enable/disable application control. Valid values: disable, enable.
    avProfile String
    Antivirus profile.
    avProfileStatus String
    Enable/disable antivirus. Valid values: disable, enable.
    casbProfileStatus String
    Enable/disable CASB. Valid values: disable, enable.
    casbProfiles List<String>
    CASB profile.
    comments String
    Comments.
    dlpProfile String
    DLP profile name.
    dlpProfileStatus String
    Enable/disable DLP. Valid values: disable, enable.
    dlpSensor String
    DLP sensor name.
    dlpSensorStatus String
    Enable/disable DLP. Valid values: disable, enable.
    dsri String
    Enable/disable DSRI. Valid values: disable, enable.
    dstaddrs List<String>
    Address object to limit traffic monitoring to network traffic sent to the specified address or range.
    emailfilterProfileStatus String
    Enable/disable email filter. Valid values: disable, enable.
    emailfilterProfiles List<String>
    Email filter profile.
    interfaces List<String>
    Monitored interface name from available interfaces.
    ipsSensor String
    IPS sensor name.
    ipsSensorStatus String
    Enable/disable IPS. Valid values: disable, enable.
    label String
    Label.
    logtraffic String
    Logging type to be used in this policy (Options: all | utm | disable, Default: utm). Valid values: disable, all, utm.
    packagesFirewallInterfacepolicyId String
    an identifier for the resource with format {{policyid}}.
    pkgFolderPath String
    Pkg Folder Path.
    policyid Double
    Policy ID (0 - 4294967295).
    scanBotnetConnections String
    Enable/disable scanning for connections to Botnet servers. Valid values: disable, block, monitor.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    services List<String>
    Service object from available options.
    spamfilterProfile String
    Antispam profile.
    spamfilterProfileStatus String
    Enable/disable antispam. Valid values: disable, enable.
    srcaddrs List<String>
    Address object to limit traffic monitoring to network traffic sent from the specified address or range.
    status String
    Enable/disable this policy. Valid values: disable, enable.
    uuid String
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    webfilterProfile String
    Web filter profile.
    webfilterProfileStatus String
    Enable/disable web filtering. Valid values: disable, enable.
    pkg string
    Package.
    addressType string
    Address-Type. Valid values: ipv4, ipv6.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    applicationList string
    Application list name.
    applicationListStatus string
    Enable/disable application control. Valid values: disable, enable.
    avProfile string
    Antivirus profile.
    avProfileStatus string
    Enable/disable antivirus. Valid values: disable, enable.
    casbProfileStatus string
    Enable/disable CASB. Valid values: disable, enable.
    casbProfiles string[]
    CASB profile.
    comments string
    Comments.
    dlpProfile string
    DLP profile name.
    dlpProfileStatus string
    Enable/disable DLP. Valid values: disable, enable.
    dlpSensor string
    DLP sensor name.
    dlpSensorStatus string
    Enable/disable DLP. Valid values: disable, enable.
    dsri string
    Enable/disable DSRI. Valid values: disable, enable.
    dstaddrs string[]
    Address object to limit traffic monitoring to network traffic sent to the specified address or range.
    emailfilterProfileStatus string
    Enable/disable email filter. Valid values: disable, enable.
    emailfilterProfiles string[]
    Email filter profile.
    interfaces string[]
    Monitored interface name from available interfaces.
    ipsSensor string
    IPS sensor name.
    ipsSensorStatus string
    Enable/disable IPS. Valid values: disable, enable.
    label string
    Label.
    logtraffic string
    Logging type to be used in this policy (Options: all | utm | disable, Default: utm). Valid values: disable, all, utm.
    packagesFirewallInterfacepolicyId string
    an identifier for the resource with format {{policyid}}.
    pkgFolderPath string
    Pkg Folder Path.
    policyid number
    Policy ID (0 - 4294967295).
    scanBotnetConnections string
    Enable/disable scanning for connections to Botnet servers. Valid values: disable, block, monitor.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    services string[]
    Service object from available options.
    spamfilterProfile string
    Antispam profile.
    spamfilterProfileStatus string
    Enable/disable antispam. Valid values: disable, enable.
    srcaddrs string[]
    Address object to limit traffic monitoring to network traffic sent from the specified address or range.
    status string
    Enable/disable this policy. Valid values: disable, enable.
    uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    webfilterProfile string
    Web filter profile.
    webfilterProfileStatus string
    Enable/disable web filtering. Valid values: disable, enable.
    pkg str
    Package.
    address_type str
    Address-Type. Valid values: ipv4, ipv6.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    application_list str
    Application list name.
    application_list_status str
    Enable/disable application control. Valid values: disable, enable.
    av_profile str
    Antivirus profile.
    av_profile_status str
    Enable/disable antivirus. Valid values: disable, enable.
    casb_profile_status str
    Enable/disable CASB. Valid values: disable, enable.
    casb_profiles Sequence[str]
    CASB profile.
    comments str
    Comments.
    dlp_profile str
    DLP profile name.
    dlp_profile_status str
    Enable/disable DLP. Valid values: disable, enable.
    dlp_sensor str
    DLP sensor name.
    dlp_sensor_status str
    Enable/disable DLP. Valid values: disable, enable.
    dsri str
    Enable/disable DSRI. Valid values: disable, enable.
    dstaddrs Sequence[str]
    Address object to limit traffic monitoring to network traffic sent to the specified address or range.
    emailfilter_profile_status str
    Enable/disable email filter. Valid values: disable, enable.
    emailfilter_profiles Sequence[str]
    Email filter profile.
    interfaces Sequence[str]
    Monitored interface name from available interfaces.
    ips_sensor str
    IPS sensor name.
    ips_sensor_status str
    Enable/disable IPS. Valid values: disable, enable.
    label str
    Label.
    logtraffic str
    Logging type to be used in this policy (Options: all | utm | disable, Default: utm). Valid values: disable, all, utm.
    packages_firewall_interfacepolicy_id str
    an identifier for the resource with format {{policyid}}.
    pkg_folder_path str
    Pkg Folder Path.
    policyid float
    Policy ID (0 - 4294967295).
    scan_botnet_connections str
    Enable/disable scanning for connections to Botnet servers. Valid values: disable, block, monitor.
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    services Sequence[str]
    Service object from available options.
    spamfilter_profile str
    Antispam profile.
    spamfilter_profile_status str
    Enable/disable antispam. Valid values: disable, enable.
    srcaddrs Sequence[str]
    Address object to limit traffic monitoring to network traffic sent from the specified address or range.
    status str
    Enable/disable this policy. Valid values: disable, enable.
    uuid str
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    webfilter_profile str
    Web filter profile.
    webfilter_profile_status str
    Enable/disable web filtering. Valid values: disable, enable.
    pkg String
    Package.
    addressType String
    Address-Type. Valid values: ipv4, ipv6.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    applicationList String
    Application list name.
    applicationListStatus String
    Enable/disable application control. Valid values: disable, enable.
    avProfile String
    Antivirus profile.
    avProfileStatus String
    Enable/disable antivirus. Valid values: disable, enable.
    casbProfileStatus String
    Enable/disable CASB. Valid values: disable, enable.
    casbProfiles List<String>
    CASB profile.
    comments String
    Comments.
    dlpProfile String
    DLP profile name.
    dlpProfileStatus String
    Enable/disable DLP. Valid values: disable, enable.
    dlpSensor String
    DLP sensor name.
    dlpSensorStatus String
    Enable/disable DLP. Valid values: disable, enable.
    dsri String
    Enable/disable DSRI. Valid values: disable, enable.
    dstaddrs List<String>
    Address object to limit traffic monitoring to network traffic sent to the specified address or range.
    emailfilterProfileStatus String
    Enable/disable email filter. Valid values: disable, enable.
    emailfilterProfiles List<String>
    Email filter profile.
    interfaces List<String>
    Monitored interface name from available interfaces.
    ipsSensor String
    IPS sensor name.
    ipsSensorStatus String
    Enable/disable IPS. Valid values: disable, enable.
    label String
    Label.
    logtraffic String
    Logging type to be used in this policy (Options: all | utm | disable, Default: utm). Valid values: disable, all, utm.
    packagesFirewallInterfacepolicyId String
    an identifier for the resource with format {{policyid}}.
    pkgFolderPath String
    Pkg Folder Path.
    policyid Number
    Policy ID (0 - 4294967295).
    scanBotnetConnections String
    Enable/disable scanning for connections to Botnet servers. Valid values: disable, block, monitor.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    services List<String>
    Service object from available options.
    spamfilterProfile String
    Antispam profile.
    spamfilterProfileStatus String
    Enable/disable antispam. Valid values: disable, enable.
    srcaddrs List<String>
    Address object to limit traffic monitoring to network traffic sent from the specified address or range.
    status String
    Enable/disable this policy. Valid values: disable, enable.
    uuid String
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    webfilterProfile String
    Web filter profile.
    webfilterProfileStatus String
    Enable/disable web filtering. Valid values: disable, enable.

    Outputs

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

    Get an existing PackagesFirewallInterfacepolicy 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?: PackagesFirewallInterfacepolicyState, opts?: CustomResourceOptions): PackagesFirewallInterfacepolicy
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            address_type: Optional[str] = None,
            adom: Optional[str] = None,
            application_list: Optional[str] = None,
            application_list_status: Optional[str] = None,
            av_profile: Optional[str] = None,
            av_profile_status: Optional[str] = None,
            casb_profile_status: Optional[str] = None,
            casb_profiles: Optional[Sequence[str]] = None,
            comments: Optional[str] = None,
            dlp_profile: Optional[str] = None,
            dlp_profile_status: Optional[str] = None,
            dlp_sensor: Optional[str] = None,
            dlp_sensor_status: Optional[str] = None,
            dsri: Optional[str] = None,
            dstaddrs: Optional[Sequence[str]] = None,
            emailfilter_profile_status: Optional[str] = None,
            emailfilter_profiles: Optional[Sequence[str]] = None,
            interfaces: Optional[Sequence[str]] = None,
            ips_sensor: Optional[str] = None,
            ips_sensor_status: Optional[str] = None,
            label: Optional[str] = None,
            logtraffic: Optional[str] = None,
            packages_firewall_interfacepolicy_id: Optional[str] = None,
            pkg: Optional[str] = None,
            pkg_folder_path: Optional[str] = None,
            policyid: Optional[float] = None,
            scan_botnet_connections: Optional[str] = None,
            scopetype: Optional[str] = None,
            services: Optional[Sequence[str]] = None,
            spamfilter_profile: Optional[str] = None,
            spamfilter_profile_status: Optional[str] = None,
            srcaddrs: Optional[Sequence[str]] = None,
            status: Optional[str] = None,
            uuid: Optional[str] = None,
            webfilter_profile: Optional[str] = None,
            webfilter_profile_status: Optional[str] = None) -> PackagesFirewallInterfacepolicy
    func GetPackagesFirewallInterfacepolicy(ctx *Context, name string, id IDInput, state *PackagesFirewallInterfacepolicyState, opts ...ResourceOption) (*PackagesFirewallInterfacepolicy, error)
    public static PackagesFirewallInterfacepolicy Get(string name, Input<string> id, PackagesFirewallInterfacepolicyState? state, CustomResourceOptions? opts = null)
    public static PackagesFirewallInterfacepolicy get(String name, Output<String> id, PackagesFirewallInterfacepolicyState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:PackagesFirewallInterfacepolicy    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:
    AddressType string
    Address-Type. Valid values: ipv4, ipv6.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    ApplicationList string
    Application list name.
    ApplicationListStatus string
    Enable/disable application control. Valid values: disable, enable.
    AvProfile string
    Antivirus profile.
    AvProfileStatus string
    Enable/disable antivirus. Valid values: disable, enable.
    CasbProfileStatus string
    Enable/disable CASB. Valid values: disable, enable.
    CasbProfiles List<string>
    CASB profile.
    Comments string
    Comments.
    DlpProfile string
    DLP profile name.
    DlpProfileStatus string
    Enable/disable DLP. Valid values: disable, enable.
    DlpSensor string
    DLP sensor name.
    DlpSensorStatus string
    Enable/disable DLP. Valid values: disable, enable.
    Dsri string
    Enable/disable DSRI. Valid values: disable, enable.
    Dstaddrs List<string>
    Address object to limit traffic monitoring to network traffic sent to the specified address or range.
    EmailfilterProfileStatus string
    Enable/disable email filter. Valid values: disable, enable.
    EmailfilterProfiles List<string>
    Email filter profile.
    Interfaces List<string>
    Monitored interface name from available interfaces.
    IpsSensor string
    IPS sensor name.
    IpsSensorStatus string
    Enable/disable IPS. Valid values: disable, enable.
    Label string
    Label.
    Logtraffic string
    Logging type to be used in this policy (Options: all | utm | disable, Default: utm). Valid values: disable, all, utm.
    PackagesFirewallInterfacepolicyId string
    an identifier for the resource with format {{policyid}}.
    Pkg string
    Package.
    PkgFolderPath string
    Pkg Folder Path.
    Policyid double
    Policy ID (0 - 4294967295).
    ScanBotnetConnections string
    Enable/disable scanning for connections to Botnet servers. Valid values: disable, block, monitor.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Services List<string>
    Service object from available options.
    SpamfilterProfile string
    Antispam profile.
    SpamfilterProfileStatus string
    Enable/disable antispam. Valid values: disable, enable.
    Srcaddrs List<string>
    Address object to limit traffic monitoring to network traffic sent from the specified address or range.
    Status string
    Enable/disable this policy. Valid values: disable, enable.
    Uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    WebfilterProfile string
    Web filter profile.
    WebfilterProfileStatus string
    Enable/disable web filtering. Valid values: disable, enable.
    AddressType string
    Address-Type. Valid values: ipv4, ipv6.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    ApplicationList string
    Application list name.
    ApplicationListStatus string
    Enable/disable application control. Valid values: disable, enable.
    AvProfile string
    Antivirus profile.
    AvProfileStatus string
    Enable/disable antivirus. Valid values: disable, enable.
    CasbProfileStatus string
    Enable/disable CASB. Valid values: disable, enable.
    CasbProfiles []string
    CASB profile.
    Comments string
    Comments.
    DlpProfile string
    DLP profile name.
    DlpProfileStatus string
    Enable/disable DLP. Valid values: disable, enable.
    DlpSensor string
    DLP sensor name.
    DlpSensorStatus string
    Enable/disable DLP. Valid values: disable, enable.
    Dsri string
    Enable/disable DSRI. Valid values: disable, enable.
    Dstaddrs []string
    Address object to limit traffic monitoring to network traffic sent to the specified address or range.
    EmailfilterProfileStatus string
    Enable/disable email filter. Valid values: disable, enable.
    EmailfilterProfiles []string
    Email filter profile.
    Interfaces []string
    Monitored interface name from available interfaces.
    IpsSensor string
    IPS sensor name.
    IpsSensorStatus string
    Enable/disable IPS. Valid values: disable, enable.
    Label string
    Label.
    Logtraffic string
    Logging type to be used in this policy (Options: all | utm | disable, Default: utm). Valid values: disable, all, utm.
    PackagesFirewallInterfacepolicyId string
    an identifier for the resource with format {{policyid}}.
    Pkg string
    Package.
    PkgFolderPath string
    Pkg Folder Path.
    Policyid float64
    Policy ID (0 - 4294967295).
    ScanBotnetConnections string
    Enable/disable scanning for connections to Botnet servers. Valid values: disable, block, monitor.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Services []string
    Service object from available options.
    SpamfilterProfile string
    Antispam profile.
    SpamfilterProfileStatus string
    Enable/disable antispam. Valid values: disable, enable.
    Srcaddrs []string
    Address object to limit traffic monitoring to network traffic sent from the specified address or range.
    Status string
    Enable/disable this policy. Valid values: disable, enable.
    Uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    WebfilterProfile string
    Web filter profile.
    WebfilterProfileStatus string
    Enable/disable web filtering. Valid values: disable, enable.
    addressType String
    Address-Type. Valid values: ipv4, ipv6.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    applicationList String
    Application list name.
    applicationListStatus String
    Enable/disable application control. Valid values: disable, enable.
    avProfile String
    Antivirus profile.
    avProfileStatus String
    Enable/disable antivirus. Valid values: disable, enable.
    casbProfileStatus String
    Enable/disable CASB. Valid values: disable, enable.
    casbProfiles List<String>
    CASB profile.
    comments String
    Comments.
    dlpProfile String
    DLP profile name.
    dlpProfileStatus String
    Enable/disable DLP. Valid values: disable, enable.
    dlpSensor String
    DLP sensor name.
    dlpSensorStatus String
    Enable/disable DLP. Valid values: disable, enable.
    dsri String
    Enable/disable DSRI. Valid values: disable, enable.
    dstaddrs List<String>
    Address object to limit traffic monitoring to network traffic sent to the specified address or range.
    emailfilterProfileStatus String
    Enable/disable email filter. Valid values: disable, enable.
    emailfilterProfiles List<String>
    Email filter profile.
    interfaces List<String>
    Monitored interface name from available interfaces.
    ipsSensor String
    IPS sensor name.
    ipsSensorStatus String
    Enable/disable IPS. Valid values: disable, enable.
    label String
    Label.
    logtraffic String
    Logging type to be used in this policy (Options: all | utm | disable, Default: utm). Valid values: disable, all, utm.
    packagesFirewallInterfacepolicyId String
    an identifier for the resource with format {{policyid}}.
    pkg String
    Package.
    pkgFolderPath String
    Pkg Folder Path.
    policyid Double
    Policy ID (0 - 4294967295).
    scanBotnetConnections String
    Enable/disable scanning for connections to Botnet servers. Valid values: disable, block, monitor.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    services List<String>
    Service object from available options.
    spamfilterProfile String
    Antispam profile.
    spamfilterProfileStatus String
    Enable/disable antispam. Valid values: disable, enable.
    srcaddrs List<String>
    Address object to limit traffic monitoring to network traffic sent from the specified address or range.
    status String
    Enable/disable this policy. Valid values: disable, enable.
    uuid String
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    webfilterProfile String
    Web filter profile.
    webfilterProfileStatus String
    Enable/disable web filtering. Valid values: disable, enable.
    addressType string
    Address-Type. Valid values: ipv4, ipv6.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    applicationList string
    Application list name.
    applicationListStatus string
    Enable/disable application control. Valid values: disable, enable.
    avProfile string
    Antivirus profile.
    avProfileStatus string
    Enable/disable antivirus. Valid values: disable, enable.
    casbProfileStatus string
    Enable/disable CASB. Valid values: disable, enable.
    casbProfiles string[]
    CASB profile.
    comments string
    Comments.
    dlpProfile string
    DLP profile name.
    dlpProfileStatus string
    Enable/disable DLP. Valid values: disable, enable.
    dlpSensor string
    DLP sensor name.
    dlpSensorStatus string
    Enable/disable DLP. Valid values: disable, enable.
    dsri string
    Enable/disable DSRI. Valid values: disable, enable.
    dstaddrs string[]
    Address object to limit traffic monitoring to network traffic sent to the specified address or range.
    emailfilterProfileStatus string
    Enable/disable email filter. Valid values: disable, enable.
    emailfilterProfiles string[]
    Email filter profile.
    interfaces string[]
    Monitored interface name from available interfaces.
    ipsSensor string
    IPS sensor name.
    ipsSensorStatus string
    Enable/disable IPS. Valid values: disable, enable.
    label string
    Label.
    logtraffic string
    Logging type to be used in this policy (Options: all | utm | disable, Default: utm). Valid values: disable, all, utm.
    packagesFirewallInterfacepolicyId string
    an identifier for the resource with format {{policyid}}.
    pkg string
    Package.
    pkgFolderPath string
    Pkg Folder Path.
    policyid number
    Policy ID (0 - 4294967295).
    scanBotnetConnections string
    Enable/disable scanning for connections to Botnet servers. Valid values: disable, block, monitor.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    services string[]
    Service object from available options.
    spamfilterProfile string
    Antispam profile.
    spamfilterProfileStatus string
    Enable/disable antispam. Valid values: disable, enable.
    srcaddrs string[]
    Address object to limit traffic monitoring to network traffic sent from the specified address or range.
    status string
    Enable/disable this policy. Valid values: disable, enable.
    uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    webfilterProfile string
    Web filter profile.
    webfilterProfileStatus string
    Enable/disable web filtering. Valid values: disable, enable.
    address_type str
    Address-Type. Valid values: ipv4, ipv6.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    application_list str
    Application list name.
    application_list_status str
    Enable/disable application control. Valid values: disable, enable.
    av_profile str
    Antivirus profile.
    av_profile_status str
    Enable/disable antivirus. Valid values: disable, enable.
    casb_profile_status str
    Enable/disable CASB. Valid values: disable, enable.
    casb_profiles Sequence[str]
    CASB profile.
    comments str
    Comments.
    dlp_profile str
    DLP profile name.
    dlp_profile_status str
    Enable/disable DLP. Valid values: disable, enable.
    dlp_sensor str
    DLP sensor name.
    dlp_sensor_status str
    Enable/disable DLP. Valid values: disable, enable.
    dsri str
    Enable/disable DSRI. Valid values: disable, enable.
    dstaddrs Sequence[str]
    Address object to limit traffic monitoring to network traffic sent to the specified address or range.
    emailfilter_profile_status str
    Enable/disable email filter. Valid values: disable, enable.
    emailfilter_profiles Sequence[str]
    Email filter profile.
    interfaces Sequence[str]
    Monitored interface name from available interfaces.
    ips_sensor str
    IPS sensor name.
    ips_sensor_status str
    Enable/disable IPS. Valid values: disable, enable.
    label str
    Label.
    logtraffic str
    Logging type to be used in this policy (Options: all | utm | disable, Default: utm). Valid values: disable, all, utm.
    packages_firewall_interfacepolicy_id str
    an identifier for the resource with format {{policyid}}.
    pkg str
    Package.
    pkg_folder_path str
    Pkg Folder Path.
    policyid float
    Policy ID (0 - 4294967295).
    scan_botnet_connections str
    Enable/disable scanning for connections to Botnet servers. Valid values: disable, block, monitor.
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    services Sequence[str]
    Service object from available options.
    spamfilter_profile str
    Antispam profile.
    spamfilter_profile_status str
    Enable/disable antispam. Valid values: disable, enable.
    srcaddrs Sequence[str]
    Address object to limit traffic monitoring to network traffic sent from the specified address or range.
    status str
    Enable/disable this policy. Valid values: disable, enable.
    uuid str
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    webfilter_profile str
    Web filter profile.
    webfilter_profile_status str
    Enable/disable web filtering. Valid values: disable, enable.
    addressType String
    Address-Type. Valid values: ipv4, ipv6.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    applicationList String
    Application list name.
    applicationListStatus String
    Enable/disable application control. Valid values: disable, enable.
    avProfile String
    Antivirus profile.
    avProfileStatus String
    Enable/disable antivirus. Valid values: disable, enable.
    casbProfileStatus String
    Enable/disable CASB. Valid values: disable, enable.
    casbProfiles List<String>
    CASB profile.
    comments String
    Comments.
    dlpProfile String
    DLP profile name.
    dlpProfileStatus String
    Enable/disable DLP. Valid values: disable, enable.
    dlpSensor String
    DLP sensor name.
    dlpSensorStatus String
    Enable/disable DLP. Valid values: disable, enable.
    dsri String
    Enable/disable DSRI. Valid values: disable, enable.
    dstaddrs List<String>
    Address object to limit traffic monitoring to network traffic sent to the specified address or range.
    emailfilterProfileStatus String
    Enable/disable email filter. Valid values: disable, enable.
    emailfilterProfiles List<String>
    Email filter profile.
    interfaces List<String>
    Monitored interface name from available interfaces.
    ipsSensor String
    IPS sensor name.
    ipsSensorStatus String
    Enable/disable IPS. Valid values: disable, enable.
    label String
    Label.
    logtraffic String
    Logging type to be used in this policy (Options: all | utm | disable, Default: utm). Valid values: disable, all, utm.
    packagesFirewallInterfacepolicyId String
    an identifier for the resource with format {{policyid}}.
    pkg String
    Package.
    pkgFolderPath String
    Pkg Folder Path.
    policyid Number
    Policy ID (0 - 4294967295).
    scanBotnetConnections String
    Enable/disable scanning for connections to Botnet servers. Valid values: disable, block, monitor.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    services List<String>
    Service object from available options.
    spamfilterProfile String
    Antispam profile.
    spamfilterProfileStatus String
    Enable/disable antispam. Valid values: disable, enable.
    srcaddrs List<String>
    Address object to limit traffic monitoring to network traffic sent from the specified address or range.
    status String
    Enable/disable this policy. Valid values: disable, enable.
    uuid String
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    webfilterProfile String
    Web filter profile.
    webfilterProfileStatus String
    Enable/disable web filtering. Valid values: disable, enable.

    Import

    Packages FirewallInterfacePolicy can be imported using any of these accepted formats:

    Set import_options = [“pkg_folder_path=YOUR_VALUE”, “pkg=YOUR_VALUE”] in the provider section.

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/packagesFirewallInterfacepolicy:PackagesFirewallInterfacepolicy labelname {{policyid}}
    

    $ 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