fortimanager.PackagesFirewallInterfacepolicy
Explore with Pulumi AI
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.
- Address
Type string - Address-Type. Valid values:
ipv4
,ipv6
. - Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Application
List string - Application list name.
- Application
List stringStatus - Enable/disable application control. Valid values:
disable
,enable
. - Av
Profile string - Antivirus profile.
- Av
Profile stringStatus - Enable/disable antivirus. Valid values:
disable
,enable
. - Casb
Profile stringStatus - Enable/disable CASB. Valid values:
disable
,enable
. - Casb
Profiles List<string> - CASB profile.
- Comments string
- Comments.
- Dlp
Profile string - DLP profile name.
- Dlp
Profile stringStatus - Enable/disable DLP. Valid values:
disable
,enable
. - Dlp
Sensor string - DLP sensor name.
- Dlp
Sensor stringStatus - 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.
- Emailfilter
Profile stringStatus - Enable/disable email filter. Valid values:
disable
,enable
. - Emailfilter
Profiles List<string> - Email filter profile.
- Interfaces List<string>
- Monitored interface name from available interfaces.
- Ips
Sensor string - IPS sensor name.
- Ips
Sensor stringStatus - 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
. - Packages
Firewall stringInterfacepolicy Id - an identifier for the resource with format {{policyid}}.
- Pkg
Folder stringPath - Pkg Folder Path.
- Policyid double
- Policy ID (0 - 4294967295).
- Scan
Botnet stringConnections - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Services List<string>
- Service object from available options.
- Spamfilter
Profile string - Antispam profile.
- Spamfilter
Profile stringStatus - 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).
- Webfilter
Profile string - Web filter profile.
- Webfilter
Profile stringStatus - Enable/disable web filtering. Valid values:
disable
,enable
.
- Pkg string
- Package.
- Address
Type string - Address-Type. Valid values:
ipv4
,ipv6
. - Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Application
List string - Application list name.
- Application
List stringStatus - Enable/disable application control. Valid values:
disable
,enable
. - Av
Profile string - Antivirus profile.
- Av
Profile stringStatus - Enable/disable antivirus. Valid values:
disable
,enable
. - Casb
Profile stringStatus - Enable/disable CASB. Valid values:
disable
,enable
. - Casb
Profiles []string - CASB profile.
- Comments string
- Comments.
- Dlp
Profile string - DLP profile name.
- Dlp
Profile stringStatus - Enable/disable DLP. Valid values:
disable
,enable
. - Dlp
Sensor string - DLP sensor name.
- Dlp
Sensor stringStatus - 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.
- Emailfilter
Profile stringStatus - Enable/disable email filter. Valid values:
disable
,enable
. - Emailfilter
Profiles []string - Email filter profile.
- Interfaces []string
- Monitored interface name from available interfaces.
- Ips
Sensor string - IPS sensor name.
- Ips
Sensor stringStatus - 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
. - Packages
Firewall stringInterfacepolicy Id - an identifier for the resource with format {{policyid}}.
- Pkg
Folder stringPath - Pkg Folder Path.
- Policyid float64
- Policy ID (0 - 4294967295).
- Scan
Botnet stringConnections - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Services []string
- Service object from available options.
- Spamfilter
Profile string - Antispam profile.
- Spamfilter
Profile stringStatus - 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).
- Webfilter
Profile string - Web filter profile.
- Webfilter
Profile stringStatus - Enable/disable web filtering. Valid values:
disable
,enable
.
- pkg String
- Package.
- address
Type String - Address-Type. Valid values:
ipv4
,ipv6
. - adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - application
List String - Application list name.
- application
List StringStatus - Enable/disable application control. Valid values:
disable
,enable
. - av
Profile String - Antivirus profile.
- av
Profile StringStatus - Enable/disable antivirus. Valid values:
disable
,enable
. - casb
Profile StringStatus - Enable/disable CASB. Valid values:
disable
,enable
. - casb
Profiles List<String> - CASB profile.
- comments String
- Comments.
- dlp
Profile String - DLP profile name.
- dlp
Profile StringStatus - Enable/disable DLP. Valid values:
disable
,enable
. - dlp
Sensor String - DLP sensor name.
- dlp
Sensor StringStatus - 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.
- emailfilter
Profile StringStatus - Enable/disable email filter. Valid values:
disable
,enable
. - emailfilter
Profiles List<String> - Email filter profile.
- interfaces List<String>
- Monitored interface name from available interfaces.
- ips
Sensor String - IPS sensor name.
- ips
Sensor StringStatus - 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
. - packages
Firewall StringInterfacepolicy Id - an identifier for the resource with format {{policyid}}.
- pkg
Folder StringPath - Pkg Folder Path.
- policyid Double
- Policy ID (0 - 4294967295).
- scan
Botnet StringConnections - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - services List<String>
- Service object from available options.
- spamfilter
Profile String - Antispam profile.
- spamfilter
Profile StringStatus - 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).
- webfilter
Profile String - Web filter profile.
- webfilter
Profile StringStatus - Enable/disable web filtering. Valid values:
disable
,enable
.
- pkg string
- Package.
- address
Type string - Address-Type. Valid values:
ipv4
,ipv6
. - adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - application
List string - Application list name.
- application
List stringStatus - Enable/disable application control. Valid values:
disable
,enable
. - av
Profile string - Antivirus profile.
- av
Profile stringStatus - Enable/disable antivirus. Valid values:
disable
,enable
. - casb
Profile stringStatus - Enable/disable CASB. Valid values:
disable
,enable
. - casb
Profiles string[] - CASB profile.
- comments string
- Comments.
- dlp
Profile string - DLP profile name.
- dlp
Profile stringStatus - Enable/disable DLP. Valid values:
disable
,enable
. - dlp
Sensor string - DLP sensor name.
- dlp
Sensor stringStatus - 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.
- emailfilter
Profile stringStatus - Enable/disable email filter. Valid values:
disable
,enable
. - emailfilter
Profiles string[] - Email filter profile.
- interfaces string[]
- Monitored interface name from available interfaces.
- ips
Sensor string - IPS sensor name.
- ips
Sensor stringStatus - 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
. - packages
Firewall stringInterfacepolicy Id - an identifier for the resource with format {{policyid}}.
- pkg
Folder stringPath - Pkg Folder Path.
- policyid number
- Policy ID (0 - 4294967295).
- scan
Botnet stringConnections - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - services string[]
- Service object from available options.
- spamfilter
Profile string - Antispam profile.
- spamfilter
Profile stringStatus - 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).
- webfilter
Profile string - Web filter profile.
- webfilter
Profile stringStatus - 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
isadom
, otherwise the value of adom in the provider will be inherited. - application_
list str - Application list name.
- application_
list_ strstatus - Enable/disable application control. Valid values:
disable
,enable
. - av_
profile str - Antivirus profile.
- av_
profile_ strstatus - Enable/disable antivirus. Valid values:
disable
,enable
. - casb_
profile_ strstatus - Enable/disable CASB. Valid values:
disable
,enable
. - casb_
profiles Sequence[str] - CASB profile.
- comments str
- Comments.
- dlp_
profile str - DLP profile name.
- dlp_
profile_ strstatus - Enable/disable DLP. Valid values:
disable
,enable
. - dlp_
sensor str - DLP sensor name.
- dlp_
sensor_ strstatus - 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_ strstatus - 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_ strstatus - 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_ strinterfacepolicy_ id - an identifier for the resource with format {{policyid}}.
- pkg_
folder_ strpath - Pkg Folder Path.
- policyid float
- Policy ID (0 - 4294967295).
- scan_
botnet_ strconnections - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - services Sequence[str]
- Service object from available options.
- spamfilter_
profile str - Antispam profile.
- spamfilter_
profile_ strstatus - 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_ strstatus - Enable/disable web filtering. Valid values:
disable
,enable
.
- pkg String
- Package.
- address
Type String - Address-Type. Valid values:
ipv4
,ipv6
. - adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - application
List String - Application list name.
- application
List StringStatus - Enable/disable application control. Valid values:
disable
,enable
. - av
Profile String - Antivirus profile.
- av
Profile StringStatus - Enable/disable antivirus. Valid values:
disable
,enable
. - casb
Profile StringStatus - Enable/disable CASB. Valid values:
disable
,enable
. - casb
Profiles List<String> - CASB profile.
- comments String
- Comments.
- dlp
Profile String - DLP profile name.
- dlp
Profile StringStatus - Enable/disable DLP. Valid values:
disable
,enable
. - dlp
Sensor String - DLP sensor name.
- dlp
Sensor StringStatus - 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.
- emailfilter
Profile StringStatus - Enable/disable email filter. Valid values:
disable
,enable
. - emailfilter
Profiles List<String> - Email filter profile.
- interfaces List<String>
- Monitored interface name from available interfaces.
- ips
Sensor String - IPS sensor name.
- ips
Sensor StringStatus - 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
. - packages
Firewall StringInterfacepolicy Id - an identifier for the resource with format {{policyid}}.
- pkg
Folder StringPath - Pkg Folder Path.
- policyid Number
- Policy ID (0 - 4294967295).
- scan
Botnet StringConnections - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - services List<String>
- Service object from available options.
- spamfilter
Profile String - Antispam profile.
- spamfilter
Profile StringStatus - 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).
- webfilter
Profile String - Web filter profile.
- webfilter
Profile StringStatus - 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.
- Address
Type string - Address-Type. Valid values:
ipv4
,ipv6
. - Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Application
List string - Application list name.
- Application
List stringStatus - Enable/disable application control. Valid values:
disable
,enable
. - Av
Profile string - Antivirus profile.
- Av
Profile stringStatus - Enable/disable antivirus. Valid values:
disable
,enable
. - Casb
Profile stringStatus - Enable/disable CASB. Valid values:
disable
,enable
. - Casb
Profiles List<string> - CASB profile.
- Comments string
- Comments.
- Dlp
Profile string - DLP profile name.
- Dlp
Profile stringStatus - Enable/disable DLP. Valid values:
disable
,enable
. - Dlp
Sensor string - DLP sensor name.
- Dlp
Sensor stringStatus - 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.
- Emailfilter
Profile stringStatus - Enable/disable email filter. Valid values:
disable
,enable
. - Emailfilter
Profiles List<string> - Email filter profile.
- Interfaces List<string>
- Monitored interface name from available interfaces.
- Ips
Sensor string - IPS sensor name.
- Ips
Sensor stringStatus - 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
. - Packages
Firewall stringInterfacepolicy Id - an identifier for the resource with format {{policyid}}.
- Pkg string
- Package.
- Pkg
Folder stringPath - Pkg Folder Path.
- Policyid double
- Policy ID (0 - 4294967295).
- Scan
Botnet stringConnections - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Services List<string>
- Service object from available options.
- Spamfilter
Profile string - Antispam profile.
- Spamfilter
Profile stringStatus - 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).
- Webfilter
Profile string - Web filter profile.
- Webfilter
Profile stringStatus - Enable/disable web filtering. Valid values:
disable
,enable
.
- Address
Type string - Address-Type. Valid values:
ipv4
,ipv6
. - Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Application
List string - Application list name.
- Application
List stringStatus - Enable/disable application control. Valid values:
disable
,enable
. - Av
Profile string - Antivirus profile.
- Av
Profile stringStatus - Enable/disable antivirus. Valid values:
disable
,enable
. - Casb
Profile stringStatus - Enable/disable CASB. Valid values:
disable
,enable
. - Casb
Profiles []string - CASB profile.
- Comments string
- Comments.
- Dlp
Profile string - DLP profile name.
- Dlp
Profile stringStatus - Enable/disable DLP. Valid values:
disable
,enable
. - Dlp
Sensor string - DLP sensor name.
- Dlp
Sensor stringStatus - 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.
- Emailfilter
Profile stringStatus - Enable/disable email filter. Valid values:
disable
,enable
. - Emailfilter
Profiles []string - Email filter profile.
- Interfaces []string
- Monitored interface name from available interfaces.
- Ips
Sensor string - IPS sensor name.
- Ips
Sensor stringStatus - 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
. - Packages
Firewall stringInterfacepolicy Id - an identifier for the resource with format {{policyid}}.
- Pkg string
- Package.
- Pkg
Folder stringPath - Pkg Folder Path.
- Policyid float64
- Policy ID (0 - 4294967295).
- Scan
Botnet stringConnections - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Services []string
- Service object from available options.
- Spamfilter
Profile string - Antispam profile.
- Spamfilter
Profile stringStatus - 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).
- Webfilter
Profile string - Web filter profile.
- Webfilter
Profile stringStatus - Enable/disable web filtering. Valid values:
disable
,enable
.
- address
Type String - Address-Type. Valid values:
ipv4
,ipv6
. - adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - application
List String - Application list name.
- application
List StringStatus - Enable/disable application control. Valid values:
disable
,enable
. - av
Profile String - Antivirus profile.
- av
Profile StringStatus - Enable/disable antivirus. Valid values:
disable
,enable
. - casb
Profile StringStatus - Enable/disable CASB. Valid values:
disable
,enable
. - casb
Profiles List<String> - CASB profile.
- comments String
- Comments.
- dlp
Profile String - DLP profile name.
- dlp
Profile StringStatus - Enable/disable DLP. Valid values:
disable
,enable
. - dlp
Sensor String - DLP sensor name.
- dlp
Sensor StringStatus - 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.
- emailfilter
Profile StringStatus - Enable/disable email filter. Valid values:
disable
,enable
. - emailfilter
Profiles List<String> - Email filter profile.
- interfaces List<String>
- Monitored interface name from available interfaces.
- ips
Sensor String - IPS sensor name.
- ips
Sensor StringStatus - 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
. - packages
Firewall StringInterfacepolicy Id - an identifier for the resource with format {{policyid}}.
- pkg String
- Package.
- pkg
Folder StringPath - Pkg Folder Path.
- policyid Double
- Policy ID (0 - 4294967295).
- scan
Botnet StringConnections - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - services List<String>
- Service object from available options.
- spamfilter
Profile String - Antispam profile.
- spamfilter
Profile StringStatus - 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).
- webfilter
Profile String - Web filter profile.
- webfilter
Profile StringStatus - Enable/disable web filtering. Valid values:
disable
,enable
.
- address
Type string - Address-Type. Valid values:
ipv4
,ipv6
. - adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - application
List string - Application list name.
- application
List stringStatus - Enable/disable application control. Valid values:
disable
,enable
. - av
Profile string - Antivirus profile.
- av
Profile stringStatus - Enable/disable antivirus. Valid values:
disable
,enable
. - casb
Profile stringStatus - Enable/disable CASB. Valid values:
disable
,enable
. - casb
Profiles string[] - CASB profile.
- comments string
- Comments.
- dlp
Profile string - DLP profile name.
- dlp
Profile stringStatus - Enable/disable DLP. Valid values:
disable
,enable
. - dlp
Sensor string - DLP sensor name.
- dlp
Sensor stringStatus - 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.
- emailfilter
Profile stringStatus - Enable/disable email filter. Valid values:
disable
,enable
. - emailfilter
Profiles string[] - Email filter profile.
- interfaces string[]
- Monitored interface name from available interfaces.
- ips
Sensor string - IPS sensor name.
- ips
Sensor stringStatus - 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
. - packages
Firewall stringInterfacepolicy Id - an identifier for the resource with format {{policyid}}.
- pkg string
- Package.
- pkg
Folder stringPath - Pkg Folder Path.
- policyid number
- Policy ID (0 - 4294967295).
- scan
Botnet stringConnections - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - services string[]
- Service object from available options.
- spamfilter
Profile string - Antispam profile.
- spamfilter
Profile stringStatus - 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).
- webfilter
Profile string - Web filter profile.
- webfilter
Profile stringStatus - 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
isadom
, otherwise the value of adom in the provider will be inherited. - application_
list str - Application list name.
- application_
list_ strstatus - Enable/disable application control. Valid values:
disable
,enable
. - av_
profile str - Antivirus profile.
- av_
profile_ strstatus - Enable/disable antivirus. Valid values:
disable
,enable
. - casb_
profile_ strstatus - Enable/disable CASB. Valid values:
disable
,enable
. - casb_
profiles Sequence[str] - CASB profile.
- comments str
- Comments.
- dlp_
profile str - DLP profile name.
- dlp_
profile_ strstatus - Enable/disable DLP. Valid values:
disable
,enable
. - dlp_
sensor str - DLP sensor name.
- dlp_
sensor_ strstatus - 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_ strstatus - 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_ strstatus - 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_ strinterfacepolicy_ id - an identifier for the resource with format {{policyid}}.
- pkg str
- Package.
- pkg_
folder_ strpath - Pkg Folder Path.
- policyid float
- Policy ID (0 - 4294967295).
- scan_
botnet_ strconnections - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - services Sequence[str]
- Service object from available options.
- spamfilter_
profile str - Antispam profile.
- spamfilter_
profile_ strstatus - 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_ strstatus - Enable/disable web filtering. Valid values:
disable
,enable
.
- address
Type String - Address-Type. Valid values:
ipv4
,ipv6
. - adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - application
List String - Application list name.
- application
List StringStatus - Enable/disable application control. Valid values:
disable
,enable
. - av
Profile String - Antivirus profile.
- av
Profile StringStatus - Enable/disable antivirus. Valid values:
disable
,enable
. - casb
Profile StringStatus - Enable/disable CASB. Valid values:
disable
,enable
. - casb
Profiles List<String> - CASB profile.
- comments String
- Comments.
- dlp
Profile String - DLP profile name.
- dlp
Profile StringStatus - Enable/disable DLP. Valid values:
disable
,enable
. - dlp
Sensor String - DLP sensor name.
- dlp
Sensor StringStatus - 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.
- emailfilter
Profile StringStatus - Enable/disable email filter. Valid values:
disable
,enable
. - emailfilter
Profiles List<String> - Email filter profile.
- interfaces List<String>
- Monitored interface name from available interfaces.
- ips
Sensor String - IPS sensor name.
- ips
Sensor StringStatus - 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
. - packages
Firewall StringInterfacepolicy Id - an identifier for the resource with format {{policyid}}.
- pkg String
- Package.
- pkg
Folder StringPath - Pkg Folder Path.
- policyid Number
- Policy ID (0 - 4294967295).
- scan
Botnet StringConnections - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - services List<String>
- Service object from available options.
- spamfilter
Profile String - Antispam profile.
- spamfilter
Profile StringStatus - 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).
- webfilter
Profile String - Web filter profile.
- webfilter
Profile StringStatus - 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.