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

fortimanager.PackagesFirewallLocalinpolicy6

Explore with Pulumi AI

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

    Configure user defined IPv6 local-in policies.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const labelname = new fortimanager.PackagesFirewallLocalinpolicy6("labelname", {
        action: "deny",
        dstaddrs: ["all"],
        intfs: ["1-A10"],
        pkg: "default",
        policyid: 1,
        schedule: "always",
        services: ["ALL"],
        srcaddrs: ["all"],
        status: "enable",
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    labelname = fortimanager.PackagesFirewallLocalinpolicy6("labelname",
        action="deny",
        dstaddrs=["all"],
        intfs=["1-A10"],
        pkg="default",
        policyid=1,
        schedule="always",
        services=["ALL"],
        srcaddrs=["all"],
        status="enable")
    
    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.NewPackagesFirewallLocalinpolicy6(ctx, "labelname", &fortimanager.PackagesFirewallLocalinpolicy6Args{
    			Action: pulumi.String("deny"),
    			Dstaddrs: pulumi.StringArray{
    				pulumi.String("all"),
    			},
    			Intfs: pulumi.StringArray{
    				pulumi.String("1-A10"),
    			},
    			Pkg:      pulumi.String("default"),
    			Policyid: pulumi.Float64(1),
    			Schedule: pulumi.String("always"),
    			Services: pulumi.StringArray{
    				pulumi.String("ALL"),
    			},
    			Srcaddrs: pulumi.StringArray{
    				pulumi.String("all"),
    			},
    			Status: pulumi.String("enable"),
    		})
    		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.PackagesFirewallLocalinpolicy6("labelname", new()
        {
            Action = "deny",
            Dstaddrs = new[]
            {
                "all",
            },
            Intfs = new[]
            {
                "1-A10",
            },
            Pkg = "default",
            Policyid = 1,
            Schedule = "always",
            Services = new[]
            {
                "ALL",
            },
            Srcaddrs = new[]
            {
                "all",
            },
            Status = "enable",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.PackagesFirewallLocalinpolicy6;
    import com.pulumi.fortimanager.PackagesFirewallLocalinpolicy6Args;
    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 PackagesFirewallLocalinpolicy6("labelname", PackagesFirewallLocalinpolicy6Args.builder()
                .action("deny")
                .dstaddrs("all")
                .intfs("1-A10")
                .pkg("default")
                .policyid(1)
                .schedule("always")
                .services("ALL")
                .srcaddrs("all")
                .status("enable")
                .build());
    
        }
    }
    
    resources:
      labelname:
        type: fortimanager:PackagesFirewallLocalinpolicy6
        properties:
          action: deny
          dstaddrs:
            - all
          intfs:
            - 1-A10
          pkg: default
          policyid: 1
          schedule: always
          services:
            - ALL
          srcaddrs:
            - all
          status: enable
    

    Create PackagesFirewallLocalinpolicy6 Resource

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

    Constructor syntax

    new PackagesFirewallLocalinpolicy6(name: string, args: PackagesFirewallLocalinpolicy6Args, opts?: CustomResourceOptions);
    @overload
    def PackagesFirewallLocalinpolicy6(resource_name: str,
                                       args: PackagesFirewallLocalinpolicy6Args,
                                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def PackagesFirewallLocalinpolicy6(resource_name: str,
                                       opts: Optional[ResourceOptions] = None,
                                       pkg: Optional[str] = None,
                                       logtraffic: Optional[str] = None,
                                       internet_service6_src: Optional[str] = None,
                                       packages_firewall_localinpolicy6_id: Optional[str] = None,
                                       dstaddrs: Optional[Sequence[str]] = None,
                                       adom: Optional[str] = None,
                                       internet_service6_src_custom_groups: Optional[Sequence[str]] = None,
                                       internet_service6_src_customs: Optional[Sequence[str]] = None,
                                       pkg_folder_path: Optional[str] = None,
                                       internet_service6_src_names: Optional[Sequence[str]] = None,
                                       internet_service6_src_negate: Optional[str] = None,
                                       intfs: Optional[Sequence[str]] = None,
                                       action: Optional[str] = None,
                                       dstaddr_negate: Optional[str] = None,
                                       comments: Optional[str] = None,
                                       internet_service6_src_groups: Optional[Sequence[str]] = None,
                                       policyid: Optional[float] = None,
                                       schedule: Optional[str] = None,
                                       scopetype: Optional[str] = None,
                                       service_negate: Optional[str] = None,
                                       services: Optional[Sequence[str]] = None,
                                       srcaddr_negate: Optional[str] = None,
                                       srcaddrs: Optional[Sequence[str]] = None,
                                       status: Optional[str] = None,
                                       uuid: Optional[str] = None,
                                       virtual_patch: Optional[str] = None)
    func NewPackagesFirewallLocalinpolicy6(ctx *Context, name string, args PackagesFirewallLocalinpolicy6Args, opts ...ResourceOption) (*PackagesFirewallLocalinpolicy6, error)
    public PackagesFirewallLocalinpolicy6(string name, PackagesFirewallLocalinpolicy6Args args, CustomResourceOptions? opts = null)
    public PackagesFirewallLocalinpolicy6(String name, PackagesFirewallLocalinpolicy6Args args)
    public PackagesFirewallLocalinpolicy6(String name, PackagesFirewallLocalinpolicy6Args args, CustomResourceOptions options)
    
    type: fortimanager:PackagesFirewallLocalinpolicy6
    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 PackagesFirewallLocalinpolicy6Args
    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 PackagesFirewallLocalinpolicy6Args
    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 PackagesFirewallLocalinpolicy6Args
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args PackagesFirewallLocalinpolicy6Args
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args PackagesFirewallLocalinpolicy6Args
    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 packagesFirewallLocalinpolicy6Resource = new Fortimanager.PackagesFirewallLocalinpolicy6("packagesFirewallLocalinpolicy6Resource", new()
    {
        Pkg = "string",
        Logtraffic = "string",
        InternetService6Src = "string",
        PackagesFirewallLocalinpolicy6Id = "string",
        Dstaddrs = new[]
        {
            "string",
        },
        Adom = "string",
        InternetService6SrcCustomGroups = new[]
        {
            "string",
        },
        InternetService6SrcCustoms = new[]
        {
            "string",
        },
        PkgFolderPath = "string",
        InternetService6SrcNames = new[]
        {
            "string",
        },
        InternetService6SrcNegate = "string",
        Intfs = new[]
        {
            "string",
        },
        Action = "string",
        DstaddrNegate = "string",
        Comments = "string",
        InternetService6SrcGroups = new[]
        {
            "string",
        },
        Policyid = 0,
        Schedule = "string",
        Scopetype = "string",
        ServiceNegate = "string",
        Services = new[]
        {
            "string",
        },
        SrcaddrNegate = "string",
        Srcaddrs = new[]
        {
            "string",
        },
        Status = "string",
        Uuid = "string",
        VirtualPatch = "string",
    });
    
    example, err := fortimanager.NewPackagesFirewallLocalinpolicy6(ctx, "packagesFirewallLocalinpolicy6Resource", &fortimanager.PackagesFirewallLocalinpolicy6Args{
    Pkg: pulumi.String("string"),
    Logtraffic: pulumi.String("string"),
    InternetService6Src: pulumi.String("string"),
    PackagesFirewallLocalinpolicy6Id: pulumi.String("string"),
    Dstaddrs: pulumi.StringArray{
    pulumi.String("string"),
    },
    Adom: pulumi.String("string"),
    InternetService6SrcCustomGroups: pulumi.StringArray{
    pulumi.String("string"),
    },
    InternetService6SrcCustoms: pulumi.StringArray{
    pulumi.String("string"),
    },
    PkgFolderPath: pulumi.String("string"),
    InternetService6SrcNames: pulumi.StringArray{
    pulumi.String("string"),
    },
    InternetService6SrcNegate: pulumi.String("string"),
    Intfs: pulumi.StringArray{
    pulumi.String("string"),
    },
    Action: pulumi.String("string"),
    DstaddrNegate: pulumi.String("string"),
    Comments: pulumi.String("string"),
    InternetService6SrcGroups: pulumi.StringArray{
    pulumi.String("string"),
    },
    Policyid: pulumi.Float64(0),
    Schedule: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    ServiceNegate: pulumi.String("string"),
    Services: pulumi.StringArray{
    pulumi.String("string"),
    },
    SrcaddrNegate: pulumi.String("string"),
    Srcaddrs: pulumi.StringArray{
    pulumi.String("string"),
    },
    Status: pulumi.String("string"),
    Uuid: pulumi.String("string"),
    VirtualPatch: pulumi.String("string"),
    })
    
    var packagesFirewallLocalinpolicy6Resource = new PackagesFirewallLocalinpolicy6("packagesFirewallLocalinpolicy6Resource", PackagesFirewallLocalinpolicy6Args.builder()
        .pkg("string")
        .logtraffic("string")
        .internetService6Src("string")
        .packagesFirewallLocalinpolicy6Id("string")
        .dstaddrs("string")
        .adom("string")
        .internetService6SrcCustomGroups("string")
        .internetService6SrcCustoms("string")
        .pkgFolderPath("string")
        .internetService6SrcNames("string")
        .internetService6SrcNegate("string")
        .intfs("string")
        .action("string")
        .dstaddrNegate("string")
        .comments("string")
        .internetService6SrcGroups("string")
        .policyid(0)
        .schedule("string")
        .scopetype("string")
        .serviceNegate("string")
        .services("string")
        .srcaddrNegate("string")
        .srcaddrs("string")
        .status("string")
        .uuid("string")
        .virtualPatch("string")
        .build());
    
    packages_firewall_localinpolicy6_resource = fortimanager.PackagesFirewallLocalinpolicy6("packagesFirewallLocalinpolicy6Resource",
        pkg="string",
        logtraffic="string",
        internet_service6_src="string",
        packages_firewall_localinpolicy6_id="string",
        dstaddrs=["string"],
        adom="string",
        internet_service6_src_custom_groups=["string"],
        internet_service6_src_customs=["string"],
        pkg_folder_path="string",
        internet_service6_src_names=["string"],
        internet_service6_src_negate="string",
        intfs=["string"],
        action="string",
        dstaddr_negate="string",
        comments="string",
        internet_service6_src_groups=["string"],
        policyid=0,
        schedule="string",
        scopetype="string",
        service_negate="string",
        services=["string"],
        srcaddr_negate="string",
        srcaddrs=["string"],
        status="string",
        uuid="string",
        virtual_patch="string")
    
    const packagesFirewallLocalinpolicy6Resource = new fortimanager.PackagesFirewallLocalinpolicy6("packagesFirewallLocalinpolicy6Resource", {
        pkg: "string",
        logtraffic: "string",
        internetService6Src: "string",
        packagesFirewallLocalinpolicy6Id: "string",
        dstaddrs: ["string"],
        adom: "string",
        internetService6SrcCustomGroups: ["string"],
        internetService6SrcCustoms: ["string"],
        pkgFolderPath: "string",
        internetService6SrcNames: ["string"],
        internetService6SrcNegate: "string",
        intfs: ["string"],
        action: "string",
        dstaddrNegate: "string",
        comments: "string",
        internetService6SrcGroups: ["string"],
        policyid: 0,
        schedule: "string",
        scopetype: "string",
        serviceNegate: "string",
        services: ["string"],
        srcaddrNegate: "string",
        srcaddrs: ["string"],
        status: "string",
        uuid: "string",
        virtualPatch: "string",
    });
    
    type: fortimanager:PackagesFirewallLocalinpolicy6
    properties:
        action: string
        adom: string
        comments: string
        dstaddrNegate: string
        dstaddrs:
            - string
        internetService6Src: string
        internetService6SrcCustomGroups:
            - string
        internetService6SrcCustoms:
            - string
        internetService6SrcGroups:
            - string
        internetService6SrcNames:
            - string
        internetService6SrcNegate: string
        intfs:
            - string
        logtraffic: string
        packagesFirewallLocalinpolicy6Id: string
        pkg: string
        pkgFolderPath: string
        policyid: 0
        schedule: string
        scopetype: string
        serviceNegate: string
        services:
            - string
        srcaddrNegate: string
        srcaddrs:
            - string
        status: string
        uuid: string
        virtualPatch: string
    

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

    Pkg string
    Package.
    Action string
    Action performed on traffic matching the policy (default = deny). Valid values: deny, accept.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Comments string
    Comment.
    DstaddrNegate string
    When enabled dstaddr specifies what the destination address must NOT be. Valid values: disable, enable.
    Dstaddrs List<string>
    Destination address object from available options.
    InternetService6Src string
    Enable/disable use of IPv6 Internet Services in source for this local-in policy.If enabled, source address is not used. Valid values: disable, enable.
    InternetService6SrcCustomGroups List<string>
    Custom Internet Service6 source group name.
    InternetService6SrcCustoms List<string>
    Custom IPv6 Internet Service source name.
    InternetService6SrcGroups List<string>
    Internet Service6 source group name.
    InternetService6SrcNames List<string>
    IPv6 Internet Service source name.
    InternetService6SrcNegate string
    When enabled internet-service6-src specifies what the service must NOT be. Valid values: disable, enable.
    Intfs List<string>
    Incoming interface name from available options.
    Logtraffic string
    Enable/disable local-in traffic logging. Valid values: disable, enable.
    PackagesFirewallLocalinpolicy6Id string
    an identifier for the resource with format {{policyid}}.
    PkgFolderPath string
    Pkg Folder Path.
    Policyid double
    User defined local in policy ID.
    Schedule string
    Schedule object from available options.
    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.
    ServiceNegate string
    When enabled service specifies what the service must NOT be. Valid values: disable, enable.
    Services List<string>
    Service object from available options. Separate names with a space.
    SrcaddrNegate string
    When enabled srcaddr specifies what the source address must NOT be. Valid values: disable, enable.
    Srcaddrs List<string>
    Source address object from available options.
    Status string
    Enable/disable this local-in policy. Valid values: disable, enable.
    Uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    VirtualPatch string
    Enable/disable the virtual patching feature. Valid values: disable, enable.
    Pkg string
    Package.
    Action string
    Action performed on traffic matching the policy (default = deny). Valid values: deny, accept.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Comments string
    Comment.
    DstaddrNegate string
    When enabled dstaddr specifies what the destination address must NOT be. Valid values: disable, enable.
    Dstaddrs []string
    Destination address object from available options.
    InternetService6Src string
    Enable/disable use of IPv6 Internet Services in source for this local-in policy.If enabled, source address is not used. Valid values: disable, enable.
    InternetService6SrcCustomGroups []string
    Custom Internet Service6 source group name.
    InternetService6SrcCustoms []string
    Custom IPv6 Internet Service source name.
    InternetService6SrcGroups []string
    Internet Service6 source group name.
    InternetService6SrcNames []string
    IPv6 Internet Service source name.
    InternetService6SrcNegate string
    When enabled internet-service6-src specifies what the service must NOT be. Valid values: disable, enable.
    Intfs []string
    Incoming interface name from available options.
    Logtraffic string
    Enable/disable local-in traffic logging. Valid values: disable, enable.
    PackagesFirewallLocalinpolicy6Id string
    an identifier for the resource with format {{policyid}}.
    PkgFolderPath string
    Pkg Folder Path.
    Policyid float64
    User defined local in policy ID.
    Schedule string
    Schedule object from available options.
    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.
    ServiceNegate string
    When enabled service specifies what the service must NOT be. Valid values: disable, enable.
    Services []string
    Service object from available options. Separate names with a space.
    SrcaddrNegate string
    When enabled srcaddr specifies what the source address must NOT be. Valid values: disable, enable.
    Srcaddrs []string
    Source address object from available options.
    Status string
    Enable/disable this local-in policy. Valid values: disable, enable.
    Uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    VirtualPatch string
    Enable/disable the virtual patching feature. Valid values: disable, enable.
    pkg String
    Package.
    action String
    Action performed on traffic matching the policy (default = deny). Valid values: deny, accept.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comments String
    Comment.
    dstaddrNegate String
    When enabled dstaddr specifies what the destination address must NOT be. Valid values: disable, enable.
    dstaddrs List<String>
    Destination address object from available options.
    internetService6Src String
    Enable/disable use of IPv6 Internet Services in source for this local-in policy.If enabled, source address is not used. Valid values: disable, enable.
    internetService6SrcCustomGroups List<String>
    Custom Internet Service6 source group name.
    internetService6SrcCustoms List<String>
    Custom IPv6 Internet Service source name.
    internetService6SrcGroups List<String>
    Internet Service6 source group name.
    internetService6SrcNames List<String>
    IPv6 Internet Service source name.
    internetService6SrcNegate String
    When enabled internet-service6-src specifies what the service must NOT be. Valid values: disable, enable.
    intfs List<String>
    Incoming interface name from available options.
    logtraffic String
    Enable/disable local-in traffic logging. Valid values: disable, enable.
    packagesFirewallLocalinpolicy6Id String
    an identifier for the resource with format {{policyid}}.
    pkgFolderPath String
    Pkg Folder Path.
    policyid Double
    User defined local in policy ID.
    schedule String
    Schedule object from available options.
    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.
    serviceNegate String
    When enabled service specifies what the service must NOT be. Valid values: disable, enable.
    services List<String>
    Service object from available options. Separate names with a space.
    srcaddrNegate String
    When enabled srcaddr specifies what the source address must NOT be. Valid values: disable, enable.
    srcaddrs List<String>
    Source address object from available options.
    status String
    Enable/disable this local-in policy. Valid values: disable, enable.
    uuid String
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    virtualPatch String
    Enable/disable the virtual patching feature. Valid values: disable, enable.
    pkg string
    Package.
    action string
    Action performed on traffic matching the policy (default = deny). Valid values: deny, accept.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comments string
    Comment.
    dstaddrNegate string
    When enabled dstaddr specifies what the destination address must NOT be. Valid values: disable, enable.
    dstaddrs string[]
    Destination address object from available options.
    internetService6Src string
    Enable/disable use of IPv6 Internet Services in source for this local-in policy.If enabled, source address is not used. Valid values: disable, enable.
    internetService6SrcCustomGroups string[]
    Custom Internet Service6 source group name.
    internetService6SrcCustoms string[]
    Custom IPv6 Internet Service source name.
    internetService6SrcGroups string[]
    Internet Service6 source group name.
    internetService6SrcNames string[]
    IPv6 Internet Service source name.
    internetService6SrcNegate string
    When enabled internet-service6-src specifies what the service must NOT be. Valid values: disable, enable.
    intfs string[]
    Incoming interface name from available options.
    logtraffic string
    Enable/disable local-in traffic logging. Valid values: disable, enable.
    packagesFirewallLocalinpolicy6Id string
    an identifier for the resource with format {{policyid}}.
    pkgFolderPath string
    Pkg Folder Path.
    policyid number
    User defined local in policy ID.
    schedule string
    Schedule object from available options.
    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.
    serviceNegate string
    When enabled service specifies what the service must NOT be. Valid values: disable, enable.
    services string[]
    Service object from available options. Separate names with a space.
    srcaddrNegate string
    When enabled srcaddr specifies what the source address must NOT be. Valid values: disable, enable.
    srcaddrs string[]
    Source address object from available options.
    status string
    Enable/disable this local-in policy. Valid values: disable, enable.
    uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    virtualPatch string
    Enable/disable the virtual patching feature. Valid values: disable, enable.
    pkg str
    Package.
    action str
    Action performed on traffic matching the policy (default = deny). Valid values: deny, accept.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comments str
    Comment.
    dstaddr_negate str
    When enabled dstaddr specifies what the destination address must NOT be. Valid values: disable, enable.
    dstaddrs Sequence[str]
    Destination address object from available options.
    internet_service6_src str
    Enable/disable use of IPv6 Internet Services in source for this local-in policy.If enabled, source address is not used. Valid values: disable, enable.
    internet_service6_src_custom_groups Sequence[str]
    Custom Internet Service6 source group name.
    internet_service6_src_customs Sequence[str]
    Custom IPv6 Internet Service source name.
    internet_service6_src_groups Sequence[str]
    Internet Service6 source group name.
    internet_service6_src_names Sequence[str]
    IPv6 Internet Service source name.
    internet_service6_src_negate str
    When enabled internet-service6-src specifies what the service must NOT be. Valid values: disable, enable.
    intfs Sequence[str]
    Incoming interface name from available options.
    logtraffic str
    Enable/disable local-in traffic logging. Valid values: disable, enable.
    packages_firewall_localinpolicy6_id str
    an identifier for the resource with format {{policyid}}.
    pkg_folder_path str
    Pkg Folder Path.
    policyid float
    User defined local in policy ID.
    schedule str
    Schedule object from available options.
    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.
    service_negate str
    When enabled service specifies what the service must NOT be. Valid values: disable, enable.
    services Sequence[str]
    Service object from available options. Separate names with a space.
    srcaddr_negate str
    When enabled srcaddr specifies what the source address must NOT be. Valid values: disable, enable.
    srcaddrs Sequence[str]
    Source address object from available options.
    status str
    Enable/disable this local-in policy. Valid values: disable, enable.
    uuid str
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    virtual_patch str
    Enable/disable the virtual patching feature. Valid values: disable, enable.
    pkg String
    Package.
    action String
    Action performed on traffic matching the policy (default = deny). Valid values: deny, accept.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comments String
    Comment.
    dstaddrNegate String
    When enabled dstaddr specifies what the destination address must NOT be. Valid values: disable, enable.
    dstaddrs List<String>
    Destination address object from available options.
    internetService6Src String
    Enable/disable use of IPv6 Internet Services in source for this local-in policy.If enabled, source address is not used. Valid values: disable, enable.
    internetService6SrcCustomGroups List<String>
    Custom Internet Service6 source group name.
    internetService6SrcCustoms List<String>
    Custom IPv6 Internet Service source name.
    internetService6SrcGroups List<String>
    Internet Service6 source group name.
    internetService6SrcNames List<String>
    IPv6 Internet Service source name.
    internetService6SrcNegate String
    When enabled internet-service6-src specifies what the service must NOT be. Valid values: disable, enable.
    intfs List<String>
    Incoming interface name from available options.
    logtraffic String
    Enable/disable local-in traffic logging. Valid values: disable, enable.
    packagesFirewallLocalinpolicy6Id String
    an identifier for the resource with format {{policyid}}.
    pkgFolderPath String
    Pkg Folder Path.
    policyid Number
    User defined local in policy ID.
    schedule String
    Schedule object from available options.
    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.
    serviceNegate String
    When enabled service specifies what the service must NOT be. Valid values: disable, enable.
    services List<String>
    Service object from available options. Separate names with a space.
    srcaddrNegate String
    When enabled srcaddr specifies what the source address must NOT be. Valid values: disable, enable.
    srcaddrs List<String>
    Source address object from available options.
    status String
    Enable/disable this local-in policy. Valid values: disable, enable.
    uuid String
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    virtualPatch String
    Enable/disable the virtual patching feature. Valid values: disable, enable.

    Outputs

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

    Get an existing PackagesFirewallLocalinpolicy6 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?: PackagesFirewallLocalinpolicy6State, opts?: CustomResourceOptions): PackagesFirewallLocalinpolicy6
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            action: Optional[str] = None,
            adom: Optional[str] = None,
            comments: Optional[str] = None,
            dstaddr_negate: Optional[str] = None,
            dstaddrs: Optional[Sequence[str]] = None,
            internet_service6_src: Optional[str] = None,
            internet_service6_src_custom_groups: Optional[Sequence[str]] = None,
            internet_service6_src_customs: Optional[Sequence[str]] = None,
            internet_service6_src_groups: Optional[Sequence[str]] = None,
            internet_service6_src_names: Optional[Sequence[str]] = None,
            internet_service6_src_negate: Optional[str] = None,
            intfs: Optional[Sequence[str]] = None,
            logtraffic: Optional[str] = None,
            packages_firewall_localinpolicy6_id: Optional[str] = None,
            pkg: Optional[str] = None,
            pkg_folder_path: Optional[str] = None,
            policyid: Optional[float] = None,
            schedule: Optional[str] = None,
            scopetype: Optional[str] = None,
            service_negate: Optional[str] = None,
            services: Optional[Sequence[str]] = None,
            srcaddr_negate: Optional[str] = None,
            srcaddrs: Optional[Sequence[str]] = None,
            status: Optional[str] = None,
            uuid: Optional[str] = None,
            virtual_patch: Optional[str] = None) -> PackagesFirewallLocalinpolicy6
    func GetPackagesFirewallLocalinpolicy6(ctx *Context, name string, id IDInput, state *PackagesFirewallLocalinpolicy6State, opts ...ResourceOption) (*PackagesFirewallLocalinpolicy6, error)
    public static PackagesFirewallLocalinpolicy6 Get(string name, Input<string> id, PackagesFirewallLocalinpolicy6State? state, CustomResourceOptions? opts = null)
    public static PackagesFirewallLocalinpolicy6 get(String name, Output<String> id, PackagesFirewallLocalinpolicy6State state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:PackagesFirewallLocalinpolicy6    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:
    Action string
    Action performed on traffic matching the policy (default = deny). Valid values: deny, accept.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Comments string
    Comment.
    DstaddrNegate string
    When enabled dstaddr specifies what the destination address must NOT be. Valid values: disable, enable.
    Dstaddrs List<string>
    Destination address object from available options.
    InternetService6Src string
    Enable/disable use of IPv6 Internet Services in source for this local-in policy.If enabled, source address is not used. Valid values: disable, enable.
    InternetService6SrcCustomGroups List<string>
    Custom Internet Service6 source group name.
    InternetService6SrcCustoms List<string>
    Custom IPv6 Internet Service source name.
    InternetService6SrcGroups List<string>
    Internet Service6 source group name.
    InternetService6SrcNames List<string>
    IPv6 Internet Service source name.
    InternetService6SrcNegate string
    When enabled internet-service6-src specifies what the service must NOT be. Valid values: disable, enable.
    Intfs List<string>
    Incoming interface name from available options.
    Logtraffic string
    Enable/disable local-in traffic logging. Valid values: disable, enable.
    PackagesFirewallLocalinpolicy6Id string
    an identifier for the resource with format {{policyid}}.
    Pkg string
    Package.
    PkgFolderPath string
    Pkg Folder Path.
    Policyid double
    User defined local in policy ID.
    Schedule string
    Schedule object from available options.
    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.
    ServiceNegate string
    When enabled service specifies what the service must NOT be. Valid values: disable, enable.
    Services List<string>
    Service object from available options. Separate names with a space.
    SrcaddrNegate string
    When enabled srcaddr specifies what the source address must NOT be. Valid values: disable, enable.
    Srcaddrs List<string>
    Source address object from available options.
    Status string
    Enable/disable this local-in policy. Valid values: disable, enable.
    Uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    VirtualPatch string
    Enable/disable the virtual patching feature. Valid values: disable, enable.
    Action string
    Action performed on traffic matching the policy (default = deny). Valid values: deny, accept.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Comments string
    Comment.
    DstaddrNegate string
    When enabled dstaddr specifies what the destination address must NOT be. Valid values: disable, enable.
    Dstaddrs []string
    Destination address object from available options.
    InternetService6Src string
    Enable/disable use of IPv6 Internet Services in source for this local-in policy.If enabled, source address is not used. Valid values: disable, enable.
    InternetService6SrcCustomGroups []string
    Custom Internet Service6 source group name.
    InternetService6SrcCustoms []string
    Custom IPv6 Internet Service source name.
    InternetService6SrcGroups []string
    Internet Service6 source group name.
    InternetService6SrcNames []string
    IPv6 Internet Service source name.
    InternetService6SrcNegate string
    When enabled internet-service6-src specifies what the service must NOT be. Valid values: disable, enable.
    Intfs []string
    Incoming interface name from available options.
    Logtraffic string
    Enable/disable local-in traffic logging. Valid values: disable, enable.
    PackagesFirewallLocalinpolicy6Id string
    an identifier for the resource with format {{policyid}}.
    Pkg string
    Package.
    PkgFolderPath string
    Pkg Folder Path.
    Policyid float64
    User defined local in policy ID.
    Schedule string
    Schedule object from available options.
    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.
    ServiceNegate string
    When enabled service specifies what the service must NOT be. Valid values: disable, enable.
    Services []string
    Service object from available options. Separate names with a space.
    SrcaddrNegate string
    When enabled srcaddr specifies what the source address must NOT be. Valid values: disable, enable.
    Srcaddrs []string
    Source address object from available options.
    Status string
    Enable/disable this local-in policy. Valid values: disable, enable.
    Uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    VirtualPatch string
    Enable/disable the virtual patching feature. Valid values: disable, enable.
    action String
    Action performed on traffic matching the policy (default = deny). Valid values: deny, accept.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comments String
    Comment.
    dstaddrNegate String
    When enabled dstaddr specifies what the destination address must NOT be. Valid values: disable, enable.
    dstaddrs List<String>
    Destination address object from available options.
    internetService6Src String
    Enable/disable use of IPv6 Internet Services in source for this local-in policy.If enabled, source address is not used. Valid values: disable, enable.
    internetService6SrcCustomGroups List<String>
    Custom Internet Service6 source group name.
    internetService6SrcCustoms List<String>
    Custom IPv6 Internet Service source name.
    internetService6SrcGroups List<String>
    Internet Service6 source group name.
    internetService6SrcNames List<String>
    IPv6 Internet Service source name.
    internetService6SrcNegate String
    When enabled internet-service6-src specifies what the service must NOT be. Valid values: disable, enable.
    intfs List<String>
    Incoming interface name from available options.
    logtraffic String
    Enable/disable local-in traffic logging. Valid values: disable, enable.
    packagesFirewallLocalinpolicy6Id String
    an identifier for the resource with format {{policyid}}.
    pkg String
    Package.
    pkgFolderPath String
    Pkg Folder Path.
    policyid Double
    User defined local in policy ID.
    schedule String
    Schedule object from available options.
    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.
    serviceNegate String
    When enabled service specifies what the service must NOT be. Valid values: disable, enable.
    services List<String>
    Service object from available options. Separate names with a space.
    srcaddrNegate String
    When enabled srcaddr specifies what the source address must NOT be. Valid values: disable, enable.
    srcaddrs List<String>
    Source address object from available options.
    status String
    Enable/disable this local-in policy. Valid values: disable, enable.
    uuid String
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    virtualPatch String
    Enable/disable the virtual patching feature. Valid values: disable, enable.
    action string
    Action performed on traffic matching the policy (default = deny). Valid values: deny, accept.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comments string
    Comment.
    dstaddrNegate string
    When enabled dstaddr specifies what the destination address must NOT be. Valid values: disable, enable.
    dstaddrs string[]
    Destination address object from available options.
    internetService6Src string
    Enable/disable use of IPv6 Internet Services in source for this local-in policy.If enabled, source address is not used. Valid values: disable, enable.
    internetService6SrcCustomGroups string[]
    Custom Internet Service6 source group name.
    internetService6SrcCustoms string[]
    Custom IPv6 Internet Service source name.
    internetService6SrcGroups string[]
    Internet Service6 source group name.
    internetService6SrcNames string[]
    IPv6 Internet Service source name.
    internetService6SrcNegate string
    When enabled internet-service6-src specifies what the service must NOT be. Valid values: disable, enable.
    intfs string[]
    Incoming interface name from available options.
    logtraffic string
    Enable/disable local-in traffic logging. Valid values: disable, enable.
    packagesFirewallLocalinpolicy6Id string
    an identifier for the resource with format {{policyid}}.
    pkg string
    Package.
    pkgFolderPath string
    Pkg Folder Path.
    policyid number
    User defined local in policy ID.
    schedule string
    Schedule object from available options.
    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.
    serviceNegate string
    When enabled service specifies what the service must NOT be. Valid values: disable, enable.
    services string[]
    Service object from available options. Separate names with a space.
    srcaddrNegate string
    When enabled srcaddr specifies what the source address must NOT be. Valid values: disable, enable.
    srcaddrs string[]
    Source address object from available options.
    status string
    Enable/disable this local-in policy. Valid values: disable, enable.
    uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    virtualPatch string
    Enable/disable the virtual patching feature. Valid values: disable, enable.
    action str
    Action performed on traffic matching the policy (default = deny). Valid values: deny, accept.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comments str
    Comment.
    dstaddr_negate str
    When enabled dstaddr specifies what the destination address must NOT be. Valid values: disable, enable.
    dstaddrs Sequence[str]
    Destination address object from available options.
    internet_service6_src str
    Enable/disable use of IPv6 Internet Services in source for this local-in policy.If enabled, source address is not used. Valid values: disable, enable.
    internet_service6_src_custom_groups Sequence[str]
    Custom Internet Service6 source group name.
    internet_service6_src_customs Sequence[str]
    Custom IPv6 Internet Service source name.
    internet_service6_src_groups Sequence[str]
    Internet Service6 source group name.
    internet_service6_src_names Sequence[str]
    IPv6 Internet Service source name.
    internet_service6_src_negate str
    When enabled internet-service6-src specifies what the service must NOT be. Valid values: disable, enable.
    intfs Sequence[str]
    Incoming interface name from available options.
    logtraffic str
    Enable/disable local-in traffic logging. Valid values: disable, enable.
    packages_firewall_localinpolicy6_id str
    an identifier for the resource with format {{policyid}}.
    pkg str
    Package.
    pkg_folder_path str
    Pkg Folder Path.
    policyid float
    User defined local in policy ID.
    schedule str
    Schedule object from available options.
    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.
    service_negate str
    When enabled service specifies what the service must NOT be. Valid values: disable, enable.
    services Sequence[str]
    Service object from available options. Separate names with a space.
    srcaddr_negate str
    When enabled srcaddr specifies what the source address must NOT be. Valid values: disable, enable.
    srcaddrs Sequence[str]
    Source address object from available options.
    status str
    Enable/disable this local-in policy. Valid values: disable, enable.
    uuid str
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    virtual_patch str
    Enable/disable the virtual patching feature. Valid values: disable, enable.
    action String
    Action performed on traffic matching the policy (default = deny). Valid values: deny, accept.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comments String
    Comment.
    dstaddrNegate String
    When enabled dstaddr specifies what the destination address must NOT be. Valid values: disable, enable.
    dstaddrs List<String>
    Destination address object from available options.
    internetService6Src String
    Enable/disable use of IPv6 Internet Services in source for this local-in policy.If enabled, source address is not used. Valid values: disable, enable.
    internetService6SrcCustomGroups List<String>
    Custom Internet Service6 source group name.
    internetService6SrcCustoms List<String>
    Custom IPv6 Internet Service source name.
    internetService6SrcGroups List<String>
    Internet Service6 source group name.
    internetService6SrcNames List<String>
    IPv6 Internet Service source name.
    internetService6SrcNegate String
    When enabled internet-service6-src specifies what the service must NOT be. Valid values: disable, enable.
    intfs List<String>
    Incoming interface name from available options.
    logtraffic String
    Enable/disable local-in traffic logging. Valid values: disable, enable.
    packagesFirewallLocalinpolicy6Id String
    an identifier for the resource with format {{policyid}}.
    pkg String
    Package.
    pkgFolderPath String
    Pkg Folder Path.
    policyid Number
    User defined local in policy ID.
    schedule String
    Schedule object from available options.
    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.
    serviceNegate String
    When enabled service specifies what the service must NOT be. Valid values: disable, enable.
    services List<String>
    Service object from available options. Separate names with a space.
    srcaddrNegate String
    When enabled srcaddr specifies what the source address must NOT be. Valid values: disable, enable.
    srcaddrs List<String>
    Source address object from available options.
    status String
    Enable/disable this local-in policy. Valid values: disable, enable.
    uuid String
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    virtualPatch String
    Enable/disable the virtual patching feature. Valid values: disable, enable.

    Import

    Packages FirewallLocalInPolicy6 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/packagesFirewallLocalinpolicy6:PackagesFirewallLocalinpolicy6 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