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

fortimanager.ObjectFirewallAddrgrp

Explore with Pulumi AI

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

    Configure IPv4 address groups.

    The following variables have sub resource. Avoid using them together, otherwise conflicts and overwrites may occur.

    • dynamic_mapping: fortimanager.ObjectFirewallAddrgrpDynamicMapping
    • tagging: fortimanager.ObjectFirewallAddrgrpTagging

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trnameObjectFirewallAddress = new fortimanager.ObjectFirewallAddress("trnameObjectFirewallAddress", {
        allowRouting: "disable",
        associatedInterface: "any",
    });
    const trnameObjectFirewallAddrgrp = new fortimanager.ObjectFirewallAddrgrp("trnameObjectFirewallAddrgrp", {
        allowRouting: "disable",
        members: ["terraform-tefv"],
    }, {
        dependsOn: [trnameObjectFirewallAddress],
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname_object_firewall_address = fortimanager.ObjectFirewallAddress("trnameObjectFirewallAddress",
        allow_routing="disable",
        associated_interface="any")
    trname_object_firewall_addrgrp = fortimanager.ObjectFirewallAddrgrp("trnameObjectFirewallAddrgrp",
        allow_routing="disable",
        members=["terraform-tefv"],
        opts = pulumi.ResourceOptions(depends_on=[trname_object_firewall_address]))
    
    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 {
    		trnameObjectFirewallAddress, err := fortimanager.NewObjectFirewallAddress(ctx, "trnameObjectFirewallAddress", &fortimanager.ObjectFirewallAddressArgs{
    			AllowRouting:        pulumi.String("disable"),
    			AssociatedInterface: pulumi.String("any"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = fortimanager.NewObjectFirewallAddrgrp(ctx, "trnameObjectFirewallAddrgrp", &fortimanager.ObjectFirewallAddrgrpArgs{
    			AllowRouting: pulumi.String("disable"),
    			Members: pulumi.StringArray{
    				pulumi.String("terraform-tefv"),
    			},
    		}, pulumi.DependsOn([]pulumi.Resource{
    			trnameObjectFirewallAddress,
    		}))
    		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 trnameObjectFirewallAddress = new Fortimanager.ObjectFirewallAddress("trnameObjectFirewallAddress", new()
        {
            AllowRouting = "disable",
            AssociatedInterface = "any",
        });
    
        var trnameObjectFirewallAddrgrp = new Fortimanager.ObjectFirewallAddrgrp("trnameObjectFirewallAddrgrp", new()
        {
            AllowRouting = "disable",
            Members = new[]
            {
                "terraform-tefv",
            },
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                trnameObjectFirewallAddress,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.ObjectFirewallAddress;
    import com.pulumi.fortimanager.ObjectFirewallAddressArgs;
    import com.pulumi.fortimanager.ObjectFirewallAddrgrp;
    import com.pulumi.fortimanager.ObjectFirewallAddrgrpArgs;
    import com.pulumi.resources.CustomResourceOptions;
    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 trnameObjectFirewallAddress = new ObjectFirewallAddress("trnameObjectFirewallAddress", ObjectFirewallAddressArgs.builder()
                .allowRouting("disable")
                .associatedInterface("any")
                .build());
    
            var trnameObjectFirewallAddrgrp = new ObjectFirewallAddrgrp("trnameObjectFirewallAddrgrp", ObjectFirewallAddrgrpArgs.builder()
                .allowRouting("disable")
                .members("terraform-tefv")
                .build(), CustomResourceOptions.builder()
                    .dependsOn(trnameObjectFirewallAddress)
                    .build());
    
        }
    }
    
    resources:
      trnameObjectFirewallAddress:
        type: fortimanager:ObjectFirewallAddress
        properties:
          allowRouting: disable
          associatedInterface: any
      trnameObjectFirewallAddrgrp:
        type: fortimanager:ObjectFirewallAddrgrp
        properties:
          allowRouting: disable
          members:
            - terraform-tefv
        options:
          dependsOn:
            - ${trnameObjectFirewallAddress}
    

    Create ObjectFirewallAddrgrp Resource

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

    Constructor syntax

    new ObjectFirewallAddrgrp(name: string, args?: ObjectFirewallAddrgrpArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectFirewallAddrgrp(resource_name: str,
                              args: Optional[ObjectFirewallAddrgrpArgs] = None,
                              opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectFirewallAddrgrp(resource_name: str,
                              opts: Optional[ResourceOptions] = None,
                              _image_base64: Optional[str] = None,
                              adom: Optional[str] = None,
                              allow_routing: Optional[str] = None,
                              category: Optional[str] = None,
                              color: Optional[float] = None,
                              comment: Optional[str] = None,
                              dynamic_mappings: Optional[Sequence[ObjectFirewallAddrgrpDynamicMappingArgs]] = None,
                              dynamic_sort_subtable: Optional[str] = None,
                              exclude: Optional[str] = None,
                              exclude_members: Optional[Sequence[str]] = None,
                              fabric_object: Optional[str] = None,
                              global_object: Optional[float] = None,
                              members: Optional[Sequence[str]] = None,
                              name: Optional[str] = None,
                              object_firewall_addrgrp_id: Optional[str] = None,
                              scopetype: Optional[str] = None,
                              taggings: Optional[Sequence[ObjectFirewallAddrgrpTaggingArgs]] = None,
                              type: Optional[str] = None,
                              uuid: Optional[str] = None,
                              visibility: Optional[str] = None)
    func NewObjectFirewallAddrgrp(ctx *Context, name string, args *ObjectFirewallAddrgrpArgs, opts ...ResourceOption) (*ObjectFirewallAddrgrp, error)
    public ObjectFirewallAddrgrp(string name, ObjectFirewallAddrgrpArgs? args = null, CustomResourceOptions? opts = null)
    public ObjectFirewallAddrgrp(String name, ObjectFirewallAddrgrpArgs args)
    public ObjectFirewallAddrgrp(String name, ObjectFirewallAddrgrpArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectFirewallAddrgrp
    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 ObjectFirewallAddrgrpArgs
    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 ObjectFirewallAddrgrpArgs
    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 ObjectFirewallAddrgrpArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectFirewallAddrgrpArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectFirewallAddrgrpArgs
    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 objectFirewallAddrgrpResource = new Fortimanager.ObjectFirewallAddrgrp("objectFirewallAddrgrpResource", new()
    {
        _imageBase64 = "string",
        Adom = "string",
        AllowRouting = "string",
        Category = "string",
        Color = 0,
        Comment = "string",
        DynamicMappings = new[]
        {
            new Fortimanager.Inputs.ObjectFirewallAddrgrpDynamicMappingArgs
            {
                _imageBase64 = "string",
                _scopes = new[]
                {
                    new Fortimanager.Inputs.ObjectFirewallAddrgrpDynamicMapping_ScopeArgs
                    {
                        Name = "string",
                        Vdom = "string",
                    },
                },
                AllowRouting = "string",
                Category = "string",
                Color = 0,
                Comment = "string",
                Exclude = "string",
                ExcludeMember = "string",
                FabricObject = "string",
                GlobalObject = 0,
                Members = new[]
                {
                    "string",
                },
                Tags = "string",
                Type = "string",
                Uuid = "string",
                Visibility = "string",
            },
        },
        DynamicSortSubtable = "string",
        Exclude = "string",
        ExcludeMembers = new[]
        {
            "string",
        },
        FabricObject = "string",
        GlobalObject = 0,
        Members = new[]
        {
            "string",
        },
        Name = "string",
        ObjectFirewallAddrgrpId = "string",
        Scopetype = "string",
        Taggings = new[]
        {
            new Fortimanager.Inputs.ObjectFirewallAddrgrpTaggingArgs
            {
                Category = "string",
                Name = "string",
                Tags = new[]
                {
                    "string",
                },
            },
        },
        Type = "string",
        Uuid = "string",
        Visibility = "string",
    });
    
    example, err := fortimanager.NewObjectFirewallAddrgrp(ctx, "objectFirewallAddrgrpResource", &fortimanager.ObjectFirewallAddrgrpArgs{
    _imageBase64: pulumi.String("string"),
    Adom: pulumi.String("string"),
    AllowRouting: pulumi.String("string"),
    Category: pulumi.String("string"),
    Color: pulumi.Float64(0),
    Comment: pulumi.String("string"),
    DynamicMappings: .ObjectFirewallAddrgrpDynamicMappingTypeArray{
    &.ObjectFirewallAddrgrpDynamicMappingTypeArgs{
    _imageBase64: pulumi.String("string"),
    _scopes: .ObjectFirewallAddrgrpDynamicMapping_ScopeArray{
    &.ObjectFirewallAddrgrpDynamicMapping_ScopeArgs{
    Name: pulumi.String("string"),
    Vdom: pulumi.String("string"),
    },
    },
    AllowRouting: pulumi.String("string"),
    Category: pulumi.String("string"),
    Color: pulumi.Float64(0),
    Comment: pulumi.String("string"),
    Exclude: pulumi.String("string"),
    ExcludeMember: pulumi.String("string"),
    FabricObject: pulumi.String("string"),
    GlobalObject: pulumi.Float64(0),
    Members: pulumi.StringArray{
    pulumi.String("string"),
    },
    Tags: pulumi.String("string"),
    Type: pulumi.String("string"),
    Uuid: pulumi.String("string"),
    Visibility: pulumi.String("string"),
    },
    },
    DynamicSortSubtable: pulumi.String("string"),
    Exclude: pulumi.String("string"),
    ExcludeMembers: pulumi.StringArray{
    pulumi.String("string"),
    },
    FabricObject: pulumi.String("string"),
    GlobalObject: pulumi.Float64(0),
    Members: pulumi.StringArray{
    pulumi.String("string"),
    },
    Name: pulumi.String("string"),
    ObjectFirewallAddrgrpId: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    Taggings: .ObjectFirewallAddrgrpTaggingTypeArray{
    &.ObjectFirewallAddrgrpTaggingTypeArgs{
    Category: pulumi.String("string"),
    Name: pulumi.String("string"),
    Tags: pulumi.StringArray{
    pulumi.String("string"),
    },
    },
    },
    Type: pulumi.String("string"),
    Uuid: pulumi.String("string"),
    Visibility: pulumi.String("string"),
    })
    
    var objectFirewallAddrgrpResource = new ObjectFirewallAddrgrp("objectFirewallAddrgrpResource", ObjectFirewallAddrgrpArgs.builder()
        ._imageBase64("string")
        .adom("string")
        .allowRouting("string")
        .category("string")
        .color(0)
        .comment("string")
        .dynamicMappings(ObjectFirewallAddrgrpDynamicMappingArgs.builder()
            ._imageBase64("string")
            ._scopes(ObjectFirewallAddrgrpDynamicMapping_ScopeArgs.builder()
                .name("string")
                .vdom("string")
                .build())
            .allowRouting("string")
            .category("string")
            .color(0)
            .comment("string")
            .exclude("string")
            .excludeMember("string")
            .fabricObject("string")
            .globalObject(0)
            .members("string")
            .tags("string")
            .type("string")
            .uuid("string")
            .visibility("string")
            .build())
        .dynamicSortSubtable("string")
        .exclude("string")
        .excludeMembers("string")
        .fabricObject("string")
        .globalObject(0)
        .members("string")
        .name("string")
        .objectFirewallAddrgrpId("string")
        .scopetype("string")
        .taggings(ObjectFirewallAddrgrpTaggingArgs.builder()
            .category("string")
            .name("string")
            .tags("string")
            .build())
        .type("string")
        .uuid("string")
        .visibility("string")
        .build());
    
    object_firewall_addrgrp_resource = fortimanager.ObjectFirewallAddrgrp("objectFirewallAddrgrpResource",
        _image_base64="string",
        adom="string",
        allow_routing="string",
        category="string",
        color=0,
        comment="string",
        dynamic_mappings=[{
            "_image_base64": "string",
            "_scopes": [{
                "name": "string",
                "vdom": "string",
            }],
            "allow_routing": "string",
            "category": "string",
            "color": 0,
            "comment": "string",
            "exclude": "string",
            "exclude_member": "string",
            "fabric_object": "string",
            "global_object": 0,
            "members": ["string"],
            "tags": "string",
            "type": "string",
            "uuid": "string",
            "visibility": "string",
        }],
        dynamic_sort_subtable="string",
        exclude="string",
        exclude_members=["string"],
        fabric_object="string",
        global_object=0,
        members=["string"],
        name="string",
        object_firewall_addrgrp_id="string",
        scopetype="string",
        taggings=[{
            "category": "string",
            "name": "string",
            "tags": ["string"],
        }],
        type="string",
        uuid="string",
        visibility="string")
    
    const objectFirewallAddrgrpResource = new fortimanager.ObjectFirewallAddrgrp("objectFirewallAddrgrpResource", {
        _imageBase64: "string",
        adom: "string",
        allowRouting: "string",
        category: "string",
        color: 0,
        comment: "string",
        dynamicMappings: [{
            _imageBase64: "string",
            _scopes: [{
                name: "string",
                vdom: "string",
            }],
            allowRouting: "string",
            category: "string",
            color: 0,
            comment: "string",
            exclude: "string",
            excludeMember: "string",
            fabricObject: "string",
            globalObject: 0,
            members: ["string"],
            tags: "string",
            type: "string",
            uuid: "string",
            visibility: "string",
        }],
        dynamicSortSubtable: "string",
        exclude: "string",
        excludeMembers: ["string"],
        fabricObject: "string",
        globalObject: 0,
        members: ["string"],
        name: "string",
        objectFirewallAddrgrpId: "string",
        scopetype: "string",
        taggings: [{
            category: "string",
            name: "string",
            tags: ["string"],
        }],
        type: "string",
        uuid: "string",
        visibility: "string",
    });
    
    type: fortimanager:ObjectFirewallAddrgrp
    properties:
        _imageBase64: string
        adom: string
        allowRouting: string
        category: string
        color: 0
        comment: string
        dynamicMappings:
            - _imageBase64: string
              _scopes:
                - name: string
                  vdom: string
              allowRouting: string
              category: string
              color: 0
              comment: string
              exclude: string
              excludeMember: string
              fabricObject: string
              globalObject: 0
              members:
                - string
              tags: string
              type: string
              uuid: string
              visibility: string
        dynamicSortSubtable: string
        exclude: string
        excludeMembers:
            - string
        fabricObject: string
        globalObject: 0
        members:
            - string
        name: string
        objectFirewallAddrgrpId: string
        scopetype: string
        taggings:
            - category: string
              name: string
              tags:
                - string
        type: string
        uuid: string
        visibility: string
    

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

    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    AllowRouting string
    Enable/disable use of this group in the static route configuration. Valid values: disable, enable.
    Category string
    Address group category. Valid values: default, ztna-ems-tag, ztna-geo-tag.
    Color double
    Color of icon on the GUI.
    Comment string
    Comment.
    DynamicMappings List<ObjectFirewallAddrgrpDynamicMapping>
    Dynamic_Mapping. The structure of dynamic_mapping block is documented below.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    Exclude string
    Enable/disable address exclusion. Valid values: disable, enable.
    ExcludeMembers List<string>
    Address exclusion member.
    FabricObject string
    Security Fabric global object setting. Valid values: disable, enable.
    GlobalObject double
    Global Object.
    Members List<string>
    Address objects contained within the group.
    Name string
    Address group name.
    ObjectFirewallAddrgrpId string
    an identifier for the resource with format {{name}}.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Taggings List<ObjectFirewallAddrgrpTagging>
    Tagging. The structure of tagging block is documented below.
    Type string
    Address group type. Valid values: default, array, folder.
    Uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    Visibility string
    Enable/disable address visibility in the GUI. Valid values: disable, enable.
    _imageBase64 string
    _Image-Base64.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    AllowRouting string
    Enable/disable use of this group in the static route configuration. Valid values: disable, enable.
    Category string
    Address group category. Valid values: default, ztna-ems-tag, ztna-geo-tag.
    Color float64
    Color of icon on the GUI.
    Comment string
    Comment.
    DynamicMappings []ObjectFirewallAddrgrpDynamicMappingTypeArgs
    Dynamic_Mapping. The structure of dynamic_mapping block is documented below.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    Exclude string
    Enable/disable address exclusion. Valid values: disable, enable.
    ExcludeMembers []string
    Address exclusion member.
    FabricObject string
    Security Fabric global object setting. Valid values: disable, enable.
    GlobalObject float64
    Global Object.
    Members []string
    Address objects contained within the group.
    Name string
    Address group name.
    ObjectFirewallAddrgrpId string
    an identifier for the resource with format {{name}}.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Taggings []ObjectFirewallAddrgrpTaggingTypeArgs
    Tagging. The structure of tagging block is documented below.
    Type string
    Address group type. Valid values: default, array, folder.
    Uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    Visibility string
    Enable/disable address visibility in the GUI. Valid values: disable, enable.
    _imageBase64 string
    _Image-Base64.
    _imageBase64 String
    _Image-Base64.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    allowRouting String
    Enable/disable use of this group in the static route configuration. Valid values: disable, enable.
    category String
    Address group category. Valid values: default, ztna-ems-tag, ztna-geo-tag.
    color Double
    Color of icon on the GUI.
    comment String
    Comment.
    dynamicMappings List<ObjectFirewallAddrgrpDynamicMapping>
    Dynamic_Mapping. The structure of dynamic_mapping block is documented below.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    exclude String
    Enable/disable address exclusion. Valid values: disable, enable.
    excludeMembers List<String>
    Address exclusion member.
    fabricObject String
    Security Fabric global object setting. Valid values: disable, enable.
    globalObject Double
    Global Object.
    members List<String>
    Address objects contained within the group.
    name String
    Address group name.
    objectFirewallAddrgrpId String
    an identifier for the resource with format {{name}}.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    taggings List<ObjectFirewallAddrgrpTagging>
    Tagging. The structure of tagging block is documented below.
    type String
    Address group type. Valid values: default, array, folder.
    uuid String
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    visibility String
    Enable/disable address visibility in the GUI. Valid values: disable, enable.
    _imageBase64 string
    _Image-Base64.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    allowRouting string
    Enable/disable use of this group in the static route configuration. Valid values: disable, enable.
    category string
    Address group category. Valid values: default, ztna-ems-tag, ztna-geo-tag.
    color number
    Color of icon on the GUI.
    comment string
    Comment.
    dynamicMappings ObjectFirewallAddrgrpDynamicMapping[]
    Dynamic_Mapping. The structure of dynamic_mapping block is documented below.
    dynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    exclude string
    Enable/disable address exclusion. Valid values: disable, enable.
    excludeMembers string[]
    Address exclusion member.
    fabricObject string
    Security Fabric global object setting. Valid values: disable, enable.
    globalObject number
    Global Object.
    members string[]
    Address objects contained within the group.
    name string
    Address group name.
    objectFirewallAddrgrpId string
    an identifier for the resource with format {{name}}.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    taggings ObjectFirewallAddrgrpTagging[]
    Tagging. The structure of tagging block is documented below.
    type string
    Address group type. Valid values: default, array, folder.
    uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    visibility string
    Enable/disable address visibility in the GUI. Valid values: disable, enable.
    _image_base64 str
    _Image-Base64.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    allow_routing str
    Enable/disable use of this group in the static route configuration. Valid values: disable, enable.
    category str
    Address group category. Valid values: default, ztna-ems-tag, ztna-geo-tag.
    color float
    Color of icon on the GUI.
    comment str
    Comment.
    dynamic_mappings Sequence[ObjectFirewallAddrgrpDynamicMappingArgs]
    Dynamic_Mapping. The structure of dynamic_mapping block is documented below.
    dynamic_sort_subtable str
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    exclude str
    Enable/disable address exclusion. Valid values: disable, enable.
    exclude_members Sequence[str]
    Address exclusion member.
    fabric_object str
    Security Fabric global object setting. Valid values: disable, enable.
    global_object float
    Global Object.
    members Sequence[str]
    Address objects contained within the group.
    name str
    Address group name.
    object_firewall_addrgrp_id str
    an identifier for the resource with format {{name}}.
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    taggings Sequence[ObjectFirewallAddrgrpTaggingArgs]
    Tagging. The structure of tagging block is documented below.
    type str
    Address group type. Valid values: default, array, folder.
    uuid str
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    visibility str
    Enable/disable address visibility in the GUI. Valid values: disable, enable.
    _imageBase64 String
    _Image-Base64.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    allowRouting String
    Enable/disable use of this group in the static route configuration. Valid values: disable, enable.
    category String
    Address group category. Valid values: default, ztna-ems-tag, ztna-geo-tag.
    color Number
    Color of icon on the GUI.
    comment String
    Comment.
    dynamicMappings List<Property Map>
    Dynamic_Mapping. The structure of dynamic_mapping block is documented below.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    exclude String
    Enable/disable address exclusion. Valid values: disable, enable.
    excludeMembers List<String>
    Address exclusion member.
    fabricObject String
    Security Fabric global object setting. Valid values: disable, enable.
    globalObject Number
    Global Object.
    members List<String>
    Address objects contained within the group.
    name String
    Address group name.
    objectFirewallAddrgrpId String
    an identifier for the resource with format {{name}}.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    taggings List<Property Map>
    Tagging. The structure of tagging block is documented below.
    type String
    Address group type. Valid values: default, array, folder.
    uuid String
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    visibility String
    Enable/disable address visibility in the GUI. Valid values: disable, enable.

    Outputs

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

    Get an existing ObjectFirewallAddrgrp 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?: ObjectFirewallAddrgrpState, opts?: CustomResourceOptions): ObjectFirewallAddrgrp
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            _image_base64: Optional[str] = None,
            adom: Optional[str] = None,
            allow_routing: Optional[str] = None,
            category: Optional[str] = None,
            color: Optional[float] = None,
            comment: Optional[str] = None,
            dynamic_mappings: Optional[Sequence[ObjectFirewallAddrgrpDynamicMappingArgs]] = None,
            dynamic_sort_subtable: Optional[str] = None,
            exclude: Optional[str] = None,
            exclude_members: Optional[Sequence[str]] = None,
            fabric_object: Optional[str] = None,
            global_object: Optional[float] = None,
            members: Optional[Sequence[str]] = None,
            name: Optional[str] = None,
            object_firewall_addrgrp_id: Optional[str] = None,
            scopetype: Optional[str] = None,
            taggings: Optional[Sequence[ObjectFirewallAddrgrpTaggingArgs]] = None,
            type: Optional[str] = None,
            uuid: Optional[str] = None,
            visibility: Optional[str] = None) -> ObjectFirewallAddrgrp
    func GetObjectFirewallAddrgrp(ctx *Context, name string, id IDInput, state *ObjectFirewallAddrgrpState, opts ...ResourceOption) (*ObjectFirewallAddrgrp, error)
    public static ObjectFirewallAddrgrp Get(string name, Input<string> id, ObjectFirewallAddrgrpState? state, CustomResourceOptions? opts = null)
    public static ObjectFirewallAddrgrp get(String name, Output<String> id, ObjectFirewallAddrgrpState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectFirewallAddrgrp    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:
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    AllowRouting string
    Enable/disable use of this group in the static route configuration. Valid values: disable, enable.
    Category string
    Address group category. Valid values: default, ztna-ems-tag, ztna-geo-tag.
    Color double
    Color of icon on the GUI.
    Comment string
    Comment.
    DynamicMappings List<ObjectFirewallAddrgrpDynamicMapping>
    Dynamic_Mapping. The structure of dynamic_mapping block is documented below.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    Exclude string
    Enable/disable address exclusion. Valid values: disable, enable.
    ExcludeMembers List<string>
    Address exclusion member.
    FabricObject string
    Security Fabric global object setting. Valid values: disable, enable.
    GlobalObject double
    Global Object.
    Members List<string>
    Address objects contained within the group.
    Name string
    Address group name.
    ObjectFirewallAddrgrpId string
    an identifier for the resource with format {{name}}.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Taggings List<ObjectFirewallAddrgrpTagging>
    Tagging. The structure of tagging block is documented below.
    Type string
    Address group type. Valid values: default, array, folder.
    Uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    Visibility string
    Enable/disable address visibility in the GUI. Valid values: disable, enable.
    _imageBase64 string
    _Image-Base64.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    AllowRouting string
    Enable/disable use of this group in the static route configuration. Valid values: disable, enable.
    Category string
    Address group category. Valid values: default, ztna-ems-tag, ztna-geo-tag.
    Color float64
    Color of icon on the GUI.
    Comment string
    Comment.
    DynamicMappings []ObjectFirewallAddrgrpDynamicMappingTypeArgs
    Dynamic_Mapping. The structure of dynamic_mapping block is documented below.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    Exclude string
    Enable/disable address exclusion. Valid values: disable, enable.
    ExcludeMembers []string
    Address exclusion member.
    FabricObject string
    Security Fabric global object setting. Valid values: disable, enable.
    GlobalObject float64
    Global Object.
    Members []string
    Address objects contained within the group.
    Name string
    Address group name.
    ObjectFirewallAddrgrpId string
    an identifier for the resource with format {{name}}.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Taggings []ObjectFirewallAddrgrpTaggingTypeArgs
    Tagging. The structure of tagging block is documented below.
    Type string
    Address group type. Valid values: default, array, folder.
    Uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    Visibility string
    Enable/disable address visibility in the GUI. Valid values: disable, enable.
    _imageBase64 string
    _Image-Base64.
    _imageBase64 String
    _Image-Base64.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    allowRouting String
    Enable/disable use of this group in the static route configuration. Valid values: disable, enable.
    category String
    Address group category. Valid values: default, ztna-ems-tag, ztna-geo-tag.
    color Double
    Color of icon on the GUI.
    comment String
    Comment.
    dynamicMappings List<ObjectFirewallAddrgrpDynamicMapping>
    Dynamic_Mapping. The structure of dynamic_mapping block is documented below.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    exclude String
    Enable/disable address exclusion. Valid values: disable, enable.
    excludeMembers List<String>
    Address exclusion member.
    fabricObject String
    Security Fabric global object setting. Valid values: disable, enable.
    globalObject Double
    Global Object.
    members List<String>
    Address objects contained within the group.
    name String
    Address group name.
    objectFirewallAddrgrpId String
    an identifier for the resource with format {{name}}.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    taggings List<ObjectFirewallAddrgrpTagging>
    Tagging. The structure of tagging block is documented below.
    type String
    Address group type. Valid values: default, array, folder.
    uuid String
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    visibility String
    Enable/disable address visibility in the GUI. Valid values: disable, enable.
    _imageBase64 string
    _Image-Base64.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    allowRouting string
    Enable/disable use of this group in the static route configuration. Valid values: disable, enable.
    category string
    Address group category. Valid values: default, ztna-ems-tag, ztna-geo-tag.
    color number
    Color of icon on the GUI.
    comment string
    Comment.
    dynamicMappings ObjectFirewallAddrgrpDynamicMapping[]
    Dynamic_Mapping. The structure of dynamic_mapping block is documented below.
    dynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    exclude string
    Enable/disable address exclusion. Valid values: disable, enable.
    excludeMembers string[]
    Address exclusion member.
    fabricObject string
    Security Fabric global object setting. Valid values: disable, enable.
    globalObject number
    Global Object.
    members string[]
    Address objects contained within the group.
    name string
    Address group name.
    objectFirewallAddrgrpId string
    an identifier for the resource with format {{name}}.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    taggings ObjectFirewallAddrgrpTagging[]
    Tagging. The structure of tagging block is documented below.
    type string
    Address group type. Valid values: default, array, folder.
    uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    visibility string
    Enable/disable address visibility in the GUI. Valid values: disable, enable.
    _image_base64 str
    _Image-Base64.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    allow_routing str
    Enable/disable use of this group in the static route configuration. Valid values: disable, enable.
    category str
    Address group category. Valid values: default, ztna-ems-tag, ztna-geo-tag.
    color float
    Color of icon on the GUI.
    comment str
    Comment.
    dynamic_mappings Sequence[ObjectFirewallAddrgrpDynamicMappingArgs]
    Dynamic_Mapping. The structure of dynamic_mapping block is documented below.
    dynamic_sort_subtable str
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    exclude str
    Enable/disable address exclusion. Valid values: disable, enable.
    exclude_members Sequence[str]
    Address exclusion member.
    fabric_object str
    Security Fabric global object setting. Valid values: disable, enable.
    global_object float
    Global Object.
    members Sequence[str]
    Address objects contained within the group.
    name str
    Address group name.
    object_firewall_addrgrp_id str
    an identifier for the resource with format {{name}}.
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    taggings Sequence[ObjectFirewallAddrgrpTaggingArgs]
    Tagging. The structure of tagging block is documented below.
    type str
    Address group type. Valid values: default, array, folder.
    uuid str
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    visibility str
    Enable/disable address visibility in the GUI. Valid values: disable, enable.
    _imageBase64 String
    _Image-Base64.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    allowRouting String
    Enable/disable use of this group in the static route configuration. Valid values: disable, enable.
    category String
    Address group category. Valid values: default, ztna-ems-tag, ztna-geo-tag.
    color Number
    Color of icon on the GUI.
    comment String
    Comment.
    dynamicMappings List<Property Map>
    Dynamic_Mapping. The structure of dynamic_mapping block is documented below.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    exclude String
    Enable/disable address exclusion. Valid values: disable, enable.
    excludeMembers List<String>
    Address exclusion member.
    fabricObject String
    Security Fabric global object setting. Valid values: disable, enable.
    globalObject Number
    Global Object.
    members List<String>
    Address objects contained within the group.
    name String
    Address group name.
    objectFirewallAddrgrpId String
    an identifier for the resource with format {{name}}.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    taggings List<Property Map>
    Tagging. The structure of tagging block is documented below.
    type String
    Address group type. Valid values: default, array, folder.
    uuid String
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    visibility String
    Enable/disable address visibility in the GUI. Valid values: disable, enable.

    Supporting Types

    ObjectFirewallAddrgrpDynamicMapping, ObjectFirewallAddrgrpDynamicMappingArgs

    AllowRouting string
    Enable/disable use of this group in the static route configuration. Valid values: disable, enable.
    Category string
    Category. Valid values: default, ztna-ems-tag, ztna-geo-tag.
    Color double
    Color of icon on the GUI.
    Comment string
    Comment.
    Exclude string
    Enable/disable address exclusion. Valid values: disable, enable.
    ExcludeMember string
    Address exclusion member.
    FabricObject string
    Fabric-Object. Valid values: disable, enable.
    GlobalObject double
    Global-Object.
    Members List<string>
    Address objects contained within the group.
    Tags string
    Tags.
    Type string
    Type. Valid values: default, array, folder.
    Uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    Visibility string
    Enable/disable address visibility in the GUI. Valid values: disable, enable.
    _imageBase64 string
    _Image-Base64.
    _scopes List<ObjectFirewallAddrgrpDynamicMapping_Scope>
    _Scope. The structure of _scope block is documented below.
    AllowRouting string
    Enable/disable use of this group in the static route configuration. Valid values: disable, enable.
    Category string
    Category. Valid values: default, ztna-ems-tag, ztna-geo-tag.
    Color float64
    Color of icon on the GUI.
    Comment string
    Comment.
    Exclude string
    Enable/disable address exclusion. Valid values: disable, enable.
    ExcludeMember string
    Address exclusion member.
    FabricObject string
    Fabric-Object. Valid values: disable, enable.
    GlobalObject float64
    Global-Object.
    Members []string
    Address objects contained within the group.
    Tags string
    Tags.
    Type string
    Type. Valid values: default, array, folder.
    Uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    Visibility string
    Enable/disable address visibility in the GUI. Valid values: disable, enable.
    _imageBase64 string
    _Image-Base64.
    _scopes []ObjectFirewallAddrgrpDynamicMapping_Scope
    _Scope. The structure of _scope block is documented below.
    _imageBase64 String
    _Image-Base64.
    _scopes List<ObjectFirewallAddrgrpDynamicMapping_Scope>
    _Scope. The structure of _scope block is documented below.
    allowRouting String
    Enable/disable use of this group in the static route configuration. Valid values: disable, enable.
    category String
    Category. Valid values: default, ztna-ems-tag, ztna-geo-tag.
    color Double
    Color of icon on the GUI.
    comment String
    Comment.
    exclude String
    Enable/disable address exclusion. Valid values: disable, enable.
    excludeMember String
    Address exclusion member.
    fabricObject String
    Fabric-Object. Valid values: disable, enable.
    globalObject Double
    Global-Object.
    members List<String>
    Address objects contained within the group.
    tags String
    Tags.
    type String
    Type. Valid values: default, array, folder.
    uuid String
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    visibility String
    Enable/disable address visibility in the GUI. Valid values: disable, enable.
    _imageBase64 string
    _Image-Base64.
    _scopes ObjectFirewallAddrgrpDynamicMapping_Scope[]
    _Scope. The structure of _scope block is documented below.
    allowRouting string
    Enable/disable use of this group in the static route configuration. Valid values: disable, enable.
    category string
    Category. Valid values: default, ztna-ems-tag, ztna-geo-tag.
    color number
    Color of icon on the GUI.
    comment string
    Comment.
    exclude string
    Enable/disable address exclusion. Valid values: disable, enable.
    excludeMember string
    Address exclusion member.
    fabricObject string
    Fabric-Object. Valid values: disable, enable.
    globalObject number
    Global-Object.
    members string[]
    Address objects contained within the group.
    tags string
    Tags.
    type string
    Type. Valid values: default, array, folder.
    uuid string
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    visibility string
    Enable/disable address visibility in the GUI. Valid values: disable, enable.
    _image_base64 str
    _Image-Base64.
    _scopes Sequence[ObjectFirewallAddrgrpDynamicMapping_Scope]
    _Scope. The structure of _scope block is documented below.
    allow_routing str
    Enable/disable use of this group in the static route configuration. Valid values: disable, enable.
    category str
    Category. Valid values: default, ztna-ems-tag, ztna-geo-tag.
    color float
    Color of icon on the GUI.
    comment str
    Comment.
    exclude str
    Enable/disable address exclusion. Valid values: disable, enable.
    exclude_member str
    Address exclusion member.
    fabric_object str
    Fabric-Object. Valid values: disable, enable.
    global_object float
    Global-Object.
    members Sequence[str]
    Address objects contained within the group.
    tags str
    Tags.
    type str
    Type. Valid values: default, array, folder.
    uuid str
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    visibility str
    Enable/disable address visibility in the GUI. Valid values: disable, enable.
    _imageBase64 String
    _Image-Base64.
    _scopes List<Property Map>
    _Scope. The structure of _scope block is documented below.
    allowRouting String
    Enable/disable use of this group in the static route configuration. Valid values: disable, enable.
    category String
    Category. Valid values: default, ztna-ems-tag, ztna-geo-tag.
    color Number
    Color of icon on the GUI.
    comment String
    Comment.
    exclude String
    Enable/disable address exclusion. Valid values: disable, enable.
    excludeMember String
    Address exclusion member.
    fabricObject String
    Fabric-Object. Valid values: disable, enable.
    globalObject Number
    Global-Object.
    members List<String>
    Address objects contained within the group.
    tags String
    Tags.
    type String
    Type. Valid values: default, array, folder.
    uuid String
    Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
    visibility String
    Enable/disable address visibility in the GUI. Valid values: disable, enable.

    ObjectFirewallAddrgrpDynamicMapping_Scope, ObjectFirewallAddrgrpDynamicMapping_ScopeArgs

    Name string
    Name.
    Vdom string
    Vdom.
    Name string
    Name.
    Vdom string
    Vdom.
    name String
    Name.
    vdom String
    Vdom.
    name string
    Name.
    vdom string
    Vdom.
    name str
    Name.
    vdom str
    Vdom.
    name String
    Name.
    vdom String
    Vdom.

    ObjectFirewallAddrgrpTagging, ObjectFirewallAddrgrpTaggingArgs

    Category string
    Tag category.
    Name string
    Tagging entry name.
    Tags List<string>
    Tags.
    Category string
    Tag category.
    Name string
    Tagging entry name.
    Tags []string
    Tags.
    category String
    Tag category.
    name String
    Tagging entry name.
    tags List<String>
    Tags.
    category string
    Tag category.
    name string
    Tagging entry name.
    tags string[]
    Tags.
    category str
    Tag category.
    name str
    Tagging entry name.
    tags Sequence[str]
    Tags.
    category String
    Tag category.
    name String
    Tagging entry name.
    tags List<String>
    Tags.

    Import

    ObjectFirewall Addrgrp can be imported using any of these accepted formats:

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectFirewallAddrgrp:ObjectFirewallAddrgrp labelname {{name}}
    

    $ 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