1. Packages
  2. Fortios
  3. API Docs
  4. system
  5. Zone
Fortios v0.0.5 published on Tuesday, Apr 9, 2024 by pulumiverse

fortios.system.Zone

Explore with Pulumi AI

fortios logo
Fortios v0.0.5 published on Tuesday, Apr 9, 2024 by pulumiverse

    Configure zones to group two or more interfaces. When a zone is created you can configure policies for the zone instead of individual interfaces in the zone.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortios from "@pulumiverse/fortios";
    
    const trname = new fortios.system.Zone("trname", {intrazone: "allow"});
    
    import pulumi
    import pulumiverse_fortios as fortios
    
    trname = fortios.system.Zone("trname", intrazone="allow")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumiverse/pulumi-fortios/sdk/go/fortios/system"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := system.NewZone(ctx, "trname", &system.ZoneArgs{
    			Intrazone: pulumi.String("allow"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Fortios = Pulumiverse.Fortios;
    
    return await Deployment.RunAsync(() => 
    {
        var trname = new Fortios.System.Zone("trname", new()
        {
            Intrazone = "allow",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortios.system.Zone;
    import com.pulumi.fortios.system.ZoneArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var trname = new Zone("trname", ZoneArgs.builder()        
                .intrazone("allow")
                .build());
    
        }
    }
    
    resources:
      trname:
        type: fortios:system:Zone
        properties:
          intrazone: allow
    

    Create Zone Resource

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

    Constructor syntax

    new Zone(name: string, args?: ZoneArgs, opts?: CustomResourceOptions);
    @overload
    def Zone(resource_name: str,
             args: Optional[ZoneArgs] = None,
             opts: Optional[ResourceOptions] = None)
    
    @overload
    def Zone(resource_name: str,
             opts: Optional[ResourceOptions] = None,
             description: Optional[str] = None,
             dynamic_sort_subtable: Optional[str] = None,
             get_all_tables: Optional[str] = None,
             interfaces: Optional[Sequence[ZoneInterfaceArgs]] = None,
             intrazone: Optional[str] = None,
             name: Optional[str] = None,
             taggings: Optional[Sequence[ZoneTaggingArgs]] = None,
             vdomparam: Optional[str] = None)
    func NewZone(ctx *Context, name string, args *ZoneArgs, opts ...ResourceOption) (*Zone, error)
    public Zone(string name, ZoneArgs? args = null, CustomResourceOptions? opts = null)
    public Zone(String name, ZoneArgs args)
    public Zone(String name, ZoneArgs args, CustomResourceOptions options)
    
    type: fortios:system:Zone
    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 ZoneArgs
    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 ZoneArgs
    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 ZoneArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ZoneArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ZoneArgs
    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 zoneResource = new Fortios.System.Zone("zoneResource", new()
    {
        Description = "string",
        DynamicSortSubtable = "string",
        GetAllTables = "string",
        Interfaces = new[]
        {
            new Fortios.System.Inputs.ZoneInterfaceArgs
            {
                InterfaceName = "string",
            },
        },
        Intrazone = "string",
        Name = "string",
        Taggings = new[]
        {
            new Fortios.System.Inputs.ZoneTaggingArgs
            {
                Category = "string",
                Name = "string",
                Tags = new[]
                {
                    new Fortios.System.Inputs.ZoneTaggingTagArgs
                    {
                        Name = "string",
                    },
                },
            },
        },
        Vdomparam = "string",
    });
    
    example, err := system.NewZone(ctx, "zoneResource", &system.ZoneArgs{
    	Description:         pulumi.String("string"),
    	DynamicSortSubtable: pulumi.String("string"),
    	GetAllTables:        pulumi.String("string"),
    	Interfaces: system.ZoneInterfaceArray{
    		&system.ZoneInterfaceArgs{
    			InterfaceName: pulumi.String("string"),
    		},
    	},
    	Intrazone: pulumi.String("string"),
    	Name:      pulumi.String("string"),
    	Taggings: system.ZoneTaggingArray{
    		&system.ZoneTaggingArgs{
    			Category: pulumi.String("string"),
    			Name:     pulumi.String("string"),
    			Tags: system.ZoneTaggingTagArray{
    				&system.ZoneTaggingTagArgs{
    					Name: pulumi.String("string"),
    				},
    			},
    		},
    	},
    	Vdomparam: pulumi.String("string"),
    })
    
    var zoneResource = new Zone("zoneResource", ZoneArgs.builder()
        .description("string")
        .dynamicSortSubtable("string")
        .getAllTables("string")
        .interfaces(ZoneInterfaceArgs.builder()
            .interfaceName("string")
            .build())
        .intrazone("string")
        .name("string")
        .taggings(ZoneTaggingArgs.builder()
            .category("string")
            .name("string")
            .tags(ZoneTaggingTagArgs.builder()
                .name("string")
                .build())
            .build())
        .vdomparam("string")
        .build());
    
    zone_resource = fortios.system.Zone("zoneResource",
        description="string",
        dynamic_sort_subtable="string",
        get_all_tables="string",
        interfaces=[fortios.system.ZoneInterfaceArgs(
            interface_name="string",
        )],
        intrazone="string",
        name="string",
        taggings=[fortios.system.ZoneTaggingArgs(
            category="string",
            name="string",
            tags=[fortios.system.ZoneTaggingTagArgs(
                name="string",
            )],
        )],
        vdomparam="string")
    
    const zoneResource = new fortios.system.Zone("zoneResource", {
        description: "string",
        dynamicSortSubtable: "string",
        getAllTables: "string",
        interfaces: [{
            interfaceName: "string",
        }],
        intrazone: "string",
        name: "string",
        taggings: [{
            category: "string",
            name: "string",
            tags: [{
                name: "string",
            }],
        }],
        vdomparam: "string",
    });
    
    type: fortios:system:Zone
    properties:
        description: string
        dynamicSortSubtable: string
        getAllTables: string
        interfaces:
            - interfaceName: string
        intrazone: string
        name: string
        taggings:
            - category: string
              name: string
              tags:
                - name: string
        vdomparam: string
    

    Zone Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The Zone resource accepts the following input properties:

    Description string
    Description.
    DynamicSortSubtable string
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    GetAllTables string
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    Interfaces List<Pulumiverse.Fortios.System.Inputs.ZoneInterface>
    Add interfaces to this zone. Interfaces must not be assigned to another zone or have firewall policies defined. The structure of interface block is documented below.
    Intrazone string
    Allow or deny traffic routing between different interfaces in the same zone (default = deny). Valid values: allow, deny.
    Name string
    Zone name.
    Taggings List<Pulumiverse.Fortios.System.Inputs.ZoneTagging>
    Config object tagging. The structure of tagging block is documented below.
    Vdomparam string
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    Description string
    Description.
    DynamicSortSubtable string
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    GetAllTables string
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    Interfaces []ZoneInterfaceArgs
    Add interfaces to this zone. Interfaces must not be assigned to another zone or have firewall policies defined. The structure of interface block is documented below.
    Intrazone string
    Allow or deny traffic routing between different interfaces in the same zone (default = deny). Valid values: allow, deny.
    Name string
    Zone name.
    Taggings []ZoneTaggingArgs
    Config object tagging. The structure of tagging block is documented below.
    Vdomparam string
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    description String
    Description.
    dynamicSortSubtable String
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    getAllTables String
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    interfaces List<ZoneInterface>
    Add interfaces to this zone. Interfaces must not be assigned to another zone or have firewall policies defined. The structure of interface block is documented below.
    intrazone String
    Allow or deny traffic routing between different interfaces in the same zone (default = deny). Valid values: allow, deny.
    name String
    Zone name.
    taggings List<ZoneTagging>
    Config object tagging. The structure of tagging block is documented below.
    vdomparam String
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    description string
    Description.
    dynamicSortSubtable string
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    getAllTables string
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    interfaces ZoneInterface[]
    Add interfaces to this zone. Interfaces must not be assigned to another zone or have firewall policies defined. The structure of interface block is documented below.
    intrazone string
    Allow or deny traffic routing between different interfaces in the same zone (default = deny). Valid values: allow, deny.
    name string
    Zone name.
    taggings ZoneTagging[]
    Config object tagging. The structure of tagging block is documented below.
    vdomparam string
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    description str
    Description.
    dynamic_sort_subtable str
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    get_all_tables str
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    interfaces Sequence[ZoneInterfaceArgs]
    Add interfaces to this zone. Interfaces must not be assigned to another zone or have firewall policies defined. The structure of interface block is documented below.
    intrazone str
    Allow or deny traffic routing between different interfaces in the same zone (default = deny). Valid values: allow, deny.
    name str
    Zone name.
    taggings Sequence[ZoneTaggingArgs]
    Config object tagging. The structure of tagging block is documented below.
    vdomparam str
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    description String
    Description.
    dynamicSortSubtable String
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    getAllTables String
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    interfaces List<Property Map>
    Add interfaces to this zone. Interfaces must not be assigned to another zone or have firewall policies defined. The structure of interface block is documented below.
    intrazone String
    Allow or deny traffic routing between different interfaces in the same zone (default = deny). Valid values: allow, deny.
    name String
    Zone name.
    taggings List<Property Map>
    Config object tagging. The structure of tagging block is documented below.
    vdomparam String
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.

    Outputs

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

    Get an existing Zone 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?: ZoneState, opts?: CustomResourceOptions): Zone
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            description: Optional[str] = None,
            dynamic_sort_subtable: Optional[str] = None,
            get_all_tables: Optional[str] = None,
            interfaces: Optional[Sequence[ZoneInterfaceArgs]] = None,
            intrazone: Optional[str] = None,
            name: Optional[str] = None,
            taggings: Optional[Sequence[ZoneTaggingArgs]] = None,
            vdomparam: Optional[str] = None) -> Zone
    func GetZone(ctx *Context, name string, id IDInput, state *ZoneState, opts ...ResourceOption) (*Zone, error)
    public static Zone Get(string name, Input<string> id, ZoneState? state, CustomResourceOptions? opts = null)
    public static Zone get(String name, Output<String> id, ZoneState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Description string
    Description.
    DynamicSortSubtable string
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    GetAllTables string
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    Interfaces List<Pulumiverse.Fortios.System.Inputs.ZoneInterface>
    Add interfaces to this zone. Interfaces must not be assigned to another zone or have firewall policies defined. The structure of interface block is documented below.
    Intrazone string
    Allow or deny traffic routing between different interfaces in the same zone (default = deny). Valid values: allow, deny.
    Name string
    Zone name.
    Taggings List<Pulumiverse.Fortios.System.Inputs.ZoneTagging>
    Config object tagging. The structure of tagging block is documented below.
    Vdomparam string
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    Description string
    Description.
    DynamicSortSubtable string
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    GetAllTables string
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    Interfaces []ZoneInterfaceArgs
    Add interfaces to this zone. Interfaces must not be assigned to another zone or have firewall policies defined. The structure of interface block is documented below.
    Intrazone string
    Allow or deny traffic routing between different interfaces in the same zone (default = deny). Valid values: allow, deny.
    Name string
    Zone name.
    Taggings []ZoneTaggingArgs
    Config object tagging. The structure of tagging block is documented below.
    Vdomparam string
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    description String
    Description.
    dynamicSortSubtable String
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    getAllTables String
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    interfaces List<ZoneInterface>
    Add interfaces to this zone. Interfaces must not be assigned to another zone or have firewall policies defined. The structure of interface block is documented below.
    intrazone String
    Allow or deny traffic routing between different interfaces in the same zone (default = deny). Valid values: allow, deny.
    name String
    Zone name.
    taggings List<ZoneTagging>
    Config object tagging. The structure of tagging block is documented below.
    vdomparam String
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    description string
    Description.
    dynamicSortSubtable string
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    getAllTables string
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    interfaces ZoneInterface[]
    Add interfaces to this zone. Interfaces must not be assigned to another zone or have firewall policies defined. The structure of interface block is documented below.
    intrazone string
    Allow or deny traffic routing between different interfaces in the same zone (default = deny). Valid values: allow, deny.
    name string
    Zone name.
    taggings ZoneTagging[]
    Config object tagging. The structure of tagging block is documented below.
    vdomparam string
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    description str
    Description.
    dynamic_sort_subtable str
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    get_all_tables str
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    interfaces Sequence[ZoneInterfaceArgs]
    Add interfaces to this zone. Interfaces must not be assigned to another zone or have firewall policies defined. The structure of interface block is documented below.
    intrazone str
    Allow or deny traffic routing between different interfaces in the same zone (default = deny). Valid values: allow, deny.
    name str
    Zone name.
    taggings Sequence[ZoneTaggingArgs]
    Config object tagging. The structure of tagging block is documented below.
    vdomparam str
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    description String
    Description.
    dynamicSortSubtable String
    Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
    getAllTables String
    Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
    interfaces List<Property Map>
    Add interfaces to this zone. Interfaces must not be assigned to another zone or have firewall policies defined. The structure of interface block is documented below.
    intrazone String
    Allow or deny traffic routing between different interfaces in the same zone (default = deny). Valid values: allow, deny.
    name String
    Zone name.
    taggings List<Property Map>
    Config object tagging. The structure of tagging block is documented below.
    vdomparam String
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.

    Supporting Types

    ZoneInterface, ZoneInterfaceArgs

    InterfaceName string
    Select interfaces to add to the zone.
    InterfaceName string
    Select interfaces to add to the zone.
    interfaceName String
    Select interfaces to add to the zone.
    interfaceName string
    Select interfaces to add to the zone.
    interface_name str
    Select interfaces to add to the zone.
    interfaceName String
    Select interfaces to add to the zone.

    ZoneTagging, ZoneTaggingArgs

    Category string
    Tag category.
    Name string
    Tagging entry name.
    Tags List<Pulumiverse.Fortios.System.Inputs.ZoneTaggingTag>
    Tags. The structure of tags block is documented below.
    Category string
    Tag category.
    Name string
    Tagging entry name.
    Tags []ZoneTaggingTag
    Tags. The structure of tags block is documented below.
    category String
    Tag category.
    name String
    Tagging entry name.
    tags List<ZoneTaggingTag>
    Tags. The structure of tags block is documented below.
    category string
    Tag category.
    name string
    Tagging entry name.
    tags ZoneTaggingTag[]
    Tags. The structure of tags block is documented below.
    category str
    Tag category.
    name str
    Tagging entry name.
    tags Sequence[ZoneTaggingTag]
    Tags. The structure of tags block is documented below.
    category String
    Tag category.
    name String
    Tagging entry name.
    tags List<Property Map>
    Tags. The structure of tags block is documented below.

    ZoneTaggingTag, ZoneTaggingTagArgs

    Name string
    Tag name.
    Name string
    Tag name.
    name String
    Tag name.
    name string
    Tag name.
    name str
    Tag name.
    name String
    Tag name.

    Import

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

    $ pulumi import fortios:system/zone:Zone labelname {{name}}
    

    If you do not want to import arguments of block:

    $ export “FORTIOS_IMPORT_TABLE”=“false”

    $ pulumi import fortios:system/zone:Zone labelname {{name}}
    

    $ unset “FORTIOS_IMPORT_TABLE”

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    fortios pulumiverse/pulumi-fortios
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the fortios Terraform Provider.
    fortios logo
    Fortios v0.0.5 published on Tuesday, Apr 9, 2024 by pulumiverse