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

fortimanager.ObjectFirewallAddrgrpDynamicMapping

Explore with Pulumi AI

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

    Configure IPv4 address groups.

    This resource is a sub resource for variable dynamic_mapping of resource fortimanager.ObjectFirewallAddrgrp. Conflict and overwrite may occur if use both of them.

    Create ObjectFirewallAddrgrpDynamicMapping Resource

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

    Constructor syntax

    new ObjectFirewallAddrgrpDynamicMapping(name: string, args: ObjectFirewallAddrgrpDynamicMappingArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectFirewallAddrgrpDynamicMapping(resource_name: str,
                                            args: ObjectFirewallAddrgrpDynamicMappingInitArgs,
                                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectFirewallAddrgrpDynamicMapping(resource_name: str,
                                            opts: Optional[ResourceOptions] = None,
                                            addrgrp: Optional[str] = None,
                                            exclude_member: Optional[str] = None,
                                            visibility: Optional[str] = None,
                                            exclude: Optional[str] = None,
                                            allow_routing: Optional[str] = None,
                                            category: Optional[str] = None,
                                            color: Optional[float] = None,
                                            comment: Optional[str] = None,
                                            dynamic_sort_subtable: Optional[str] = None,
                                            adom: Optional[str] = None,
                                            _scopes: Optional[Sequence[ObjectFirewallAddrgrpDynamicMapping_ScopeArgs]] = None,
                                            global_object: Optional[float] = None,
                                            fabric_object: Optional[str] = None,
                                            members: Optional[Sequence[str]] = None,
                                            object_firewall_addrgrp_dynamic_mapping_id: Optional[str] = None,
                                            scopetype: Optional[str] = None,
                                            tags: Optional[str] = None,
                                            type: Optional[str] = None,
                                            uuid: Optional[str] = None,
                                            _image_base64: Optional[str] = None)
    func NewObjectFirewallAddrgrpDynamicMapping(ctx *Context, name string, args ObjectFirewallAddrgrpDynamicMappingArgs, opts ...ResourceOption) (*ObjectFirewallAddrgrpDynamicMapping, error)
    public ObjectFirewallAddrgrpDynamicMapping(string name, ObjectFirewallAddrgrpDynamicMappingArgs args, CustomResourceOptions? opts = null)
    public ObjectFirewallAddrgrpDynamicMapping(String name, ObjectFirewallAddrgrpDynamicMappingArgs args)
    public ObjectFirewallAddrgrpDynamicMapping(String name, ObjectFirewallAddrgrpDynamicMappingArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectFirewallAddrgrpDynamicMapping
    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 ObjectFirewallAddrgrpDynamicMappingArgs
    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 ObjectFirewallAddrgrpDynamicMappingInitArgs
    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 ObjectFirewallAddrgrpDynamicMappingArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectFirewallAddrgrpDynamicMappingArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectFirewallAddrgrpDynamicMappingArgs
    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 objectFirewallAddrgrpDynamicMappingResource = new Fortimanager.ObjectFirewallAddrgrpDynamicMapping("objectFirewallAddrgrpDynamicMappingResource", new()
    {
        Addrgrp = "string",
        ExcludeMember = "string",
        Visibility = "string",
        Exclude = "string",
        AllowRouting = "string",
        Category = "string",
        Color = 0,
        Comment = "string",
        DynamicSortSubtable = "string",
        Adom = "string",
        _scopes = new[]
        {
            new Fortimanager.Inputs.ObjectFirewallAddrgrpDynamicMapping_ScopeArgs
            {
                Name = "string",
                Vdom = "string",
            },
        },
        GlobalObject = 0,
        FabricObject = "string",
        Members = new[]
        {
            "string",
        },
        ObjectFirewallAddrgrpDynamicMappingId = "string",
        Scopetype = "string",
        Tags = "string",
        Type = "string",
        Uuid = "string",
        _imageBase64 = "string",
    });
    
    example, err := fortimanager.NewObjectFirewallAddrgrpDynamicMapping(ctx, "objectFirewallAddrgrpDynamicMappingResource", &fortimanager.ObjectFirewallAddrgrpDynamicMappingArgs{
    Addrgrp: pulumi.String("string"),
    ExcludeMember: pulumi.String("string"),
    Visibility: pulumi.String("string"),
    Exclude: pulumi.String("string"),
    AllowRouting: pulumi.String("string"),
    Category: pulumi.String("string"),
    Color: pulumi.Float64(0),
    Comment: pulumi.String("string"),
    DynamicSortSubtable: pulumi.String("string"),
    Adom: pulumi.String("string"),
    _scopes: .ObjectFirewallAddrgrpDynamicMapping_ScopeArray{
    &.ObjectFirewallAddrgrpDynamicMapping_ScopeArgs{
    Name: pulumi.String("string"),
    Vdom: pulumi.String("string"),
    },
    },
    GlobalObject: pulumi.Float64(0),
    FabricObject: pulumi.String("string"),
    Members: pulumi.StringArray{
    pulumi.String("string"),
    },
    ObjectFirewallAddrgrpDynamicMappingId: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    Tags: pulumi.String("string"),
    Type: pulumi.String("string"),
    Uuid: pulumi.String("string"),
    _imageBase64: pulumi.String("string"),
    })
    
    var objectFirewallAddrgrpDynamicMappingResource = new ObjectFirewallAddrgrpDynamicMapping("objectFirewallAddrgrpDynamicMappingResource", ObjectFirewallAddrgrpDynamicMappingArgs.builder()
        .addrgrp("string")
        .excludeMember("string")
        .visibility("string")
        .exclude("string")
        .allowRouting("string")
        .category("string")
        .color(0)
        .comment("string")
        .dynamicSortSubtable("string")
        .adom("string")
        ._scopes(ObjectFirewallAddrgrpDynamicMapping_ScopeArgs.builder()
            .name("string")
            .vdom("string")
            .build())
        .globalObject(0)
        .fabricObject("string")
        .members("string")
        .objectFirewallAddrgrpDynamicMappingId("string")
        .scopetype("string")
        .tags("string")
        .type("string")
        .uuid("string")
        ._imageBase64("string")
        .build());
    
    object_firewall_addrgrp_dynamic_mapping_resource = fortimanager.ObjectFirewallAddrgrpDynamicMapping("objectFirewallAddrgrpDynamicMappingResource",
        addrgrp="string",
        exclude_member="string",
        visibility="string",
        exclude="string",
        allow_routing="string",
        category="string",
        color=0,
        comment="string",
        dynamic_sort_subtable="string",
        adom="string",
        _scopes=[{
            "name": "string",
            "vdom": "string",
        }],
        global_object=0,
        fabric_object="string",
        members=["string"],
        object_firewall_addrgrp_dynamic_mapping_id="string",
        scopetype="string",
        tags="string",
        type="string",
        uuid="string",
        _image_base64="string")
    
    const objectFirewallAddrgrpDynamicMappingResource = new fortimanager.ObjectFirewallAddrgrpDynamicMapping("objectFirewallAddrgrpDynamicMappingResource", {
        addrgrp: "string",
        excludeMember: "string",
        visibility: "string",
        exclude: "string",
        allowRouting: "string",
        category: "string",
        color: 0,
        comment: "string",
        dynamicSortSubtable: "string",
        adom: "string",
        _scopes: [{
            name: "string",
            vdom: "string",
        }],
        globalObject: 0,
        fabricObject: "string",
        members: ["string"],
        objectFirewallAddrgrpDynamicMappingId: "string",
        scopetype: "string",
        tags: "string",
        type: "string",
        uuid: "string",
        _imageBase64: "string",
    });
    
    type: fortimanager:ObjectFirewallAddrgrpDynamicMapping
    properties:
        _imageBase64: string
        _scopes:
            - name: string
              vdom: string
        addrgrp: string
        adom: string
        allowRouting: string
        category: string
        color: 0
        comment: string
        dynamicSortSubtable: string
        exclude: string
        excludeMember: string
        fabricObject: string
        globalObject: 0
        members:
            - string
        objectFirewallAddrgrpDynamicMappingId: string
        scopetype: string
        tags: string
        type: string
        uuid: string
        visibility: string
    

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

    Addrgrp string
    Addrgrp.
    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
    Category. Valid values: default, ztna-ems-tag, ztna-geo-tag.
    Color double
    Color of icon on the GUI.
    Comment string
    Comment.
    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.
    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.
    ObjectFirewallAddrgrpDynamicMappingId string
    an identifier for the resource with format "{{_scope.name}} {{_scope.vdom}}".
    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.
    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.
    Addrgrp string
    Addrgrp.
    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
    Category. Valid values: default, ztna-ems-tag, ztna-geo-tag.
    Color float64
    Color of icon on the GUI.
    Comment string
    Comment.
    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.
    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.
    ObjectFirewallAddrgrpDynamicMappingId string
    an identifier for the resource with format "{{_scope.name}} {{_scope.vdom}}".
    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.
    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_ScopeArgs
    _Scope. The structure of _scope block is documented below.
    addrgrp String
    Addrgrp.
    _imageBase64 String
    _Image-Base64.
    _scopes List<ObjectFirewallAddrgrpDynamicMapping_Scope>
    _Scope. The structure of _scope block is documented below.
    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
    Category. Valid values: default, ztna-ems-tag, ztna-geo-tag.
    color Double
    Color of icon on the GUI.
    comment String
    Comment.
    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.
    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.
    objectFirewallAddrgrpDynamicMappingId String
    an identifier for the resource with format "{{_scope.name}} {{_scope.vdom}}".
    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.
    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.
    addrgrp string
    Addrgrp.
    _imageBase64 string
    _Image-Base64.
    _scopes ObjectFirewallAddrgrpDynamicMapping_Scope[]
    _Scope. The structure of _scope block is documented below.
    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
    Category. Valid values: default, ztna-ems-tag, ztna-geo-tag.
    color number
    Color of icon on the GUI.
    comment string
    Comment.
    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.
    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.
    objectFirewallAddrgrpDynamicMappingId string
    an identifier for the resource with format "{{_scope.name}} {{_scope.vdom}}".
    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.
    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.
    addrgrp str
    Addrgrp.
    _image_base64 str
    _Image-Base64.
    _scopes Sequence[ObjectFirewallAddrgrpDynamicMapping_ScopeArgs]
    _Scope. The structure of _scope block is documented below.
    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
    Category. Valid values: default, ztna-ems-tag, ztna-geo-tag.
    color float
    Color of icon on the GUI.
    comment str
    Comment.
    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_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.
    object_firewall_addrgrp_dynamic_mapping_id str
    an identifier for the resource with format "{{_scope.name}} {{_scope.vdom}}".
    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.
    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.
    addrgrp String
    Addrgrp.
    _imageBase64 String
    _Image-Base64.
    _scopes List<Property Map>
    _Scope. The structure of _scope block is documented below.
    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
    Category. Valid values: default, ztna-ems-tag, ztna-geo-tag.
    color Number
    Color of icon on the GUI.
    comment String
    Comment.
    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.
    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.
    objectFirewallAddrgrpDynamicMappingId String
    an identifier for the resource with format "{{_scope.name}} {{_scope.vdom}}".
    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.
    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.

    Outputs

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

    Get an existing ObjectFirewallAddrgrpDynamicMapping 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?: ObjectFirewallAddrgrpDynamicMappingState, opts?: CustomResourceOptions): ObjectFirewallAddrgrpDynamicMapping
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            _image_base64: Optional[str] = None,
            _scopes: Optional[Sequence[ObjectFirewallAddrgrpDynamicMapping_ScopeArgs]] = None,
            addrgrp: 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_sort_subtable: Optional[str] = None,
            exclude: Optional[str] = None,
            exclude_member: Optional[str] = None,
            fabric_object: Optional[str] = None,
            global_object: Optional[float] = None,
            members: Optional[Sequence[str]] = None,
            object_firewall_addrgrp_dynamic_mapping_id: Optional[str] = None,
            scopetype: Optional[str] = None,
            tags: Optional[str] = None,
            type: Optional[str] = None,
            uuid: Optional[str] = None,
            visibility: Optional[str] = None) -> ObjectFirewallAddrgrpDynamicMapping
    func GetObjectFirewallAddrgrpDynamicMapping(ctx *Context, name string, id IDInput, state *ObjectFirewallAddrgrpDynamicMappingState, opts ...ResourceOption) (*ObjectFirewallAddrgrpDynamicMapping, error)
    public static ObjectFirewallAddrgrpDynamicMapping Get(string name, Input<string> id, ObjectFirewallAddrgrpDynamicMappingState? state, CustomResourceOptions? opts = null)
    public static ObjectFirewallAddrgrpDynamicMapping get(String name, Output<String> id, ObjectFirewallAddrgrpDynamicMappingState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectFirewallAddrgrpDynamicMapping    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:
    Addrgrp string
    Addrgrp.
    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
    Category. Valid values: default, ztna-ems-tag, ztna-geo-tag.
    Color double
    Color of icon on the GUI.
    Comment string
    Comment.
    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.
    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.
    ObjectFirewallAddrgrpDynamicMappingId string
    an identifier for the resource with format "{{_scope.name}} {{_scope.vdom}}".
    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.
    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.
    Addrgrp string
    Addrgrp.
    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
    Category. Valid values: default, ztna-ems-tag, ztna-geo-tag.
    Color float64
    Color of icon on the GUI.
    Comment string
    Comment.
    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.
    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.
    ObjectFirewallAddrgrpDynamicMappingId string
    an identifier for the resource with format "{{_scope.name}} {{_scope.vdom}}".
    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.
    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_ScopeArgs
    _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.
    addrgrp String
    Addrgrp.
    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
    Category. Valid values: default, ztna-ems-tag, ztna-geo-tag.
    color Double
    Color of icon on the GUI.
    comment String
    Comment.
    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.
    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.
    objectFirewallAddrgrpDynamicMappingId String
    an identifier for the resource with format "{{_scope.name}} {{_scope.vdom}}".
    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.
    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.
    addrgrp string
    Addrgrp.
    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
    Category. Valid values: default, ztna-ems-tag, ztna-geo-tag.
    color number
    Color of icon on the GUI.
    comment string
    Comment.
    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.
    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.
    objectFirewallAddrgrpDynamicMappingId string
    an identifier for the resource with format "{{_scope.name}} {{_scope.vdom}}".
    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.
    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_ScopeArgs]
    _Scope. The structure of _scope block is documented below.
    addrgrp str
    Addrgrp.
    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
    Category. Valid values: default, ztna-ems-tag, ztna-geo-tag.
    color float
    Color of icon on the GUI.
    comment str
    Comment.
    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_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.
    object_firewall_addrgrp_dynamic_mapping_id str
    an identifier for the resource with format "{{_scope.name}} {{_scope.vdom}}".
    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.
    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.
    addrgrp String
    Addrgrp.
    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
    Category. Valid values: default, ztna-ems-tag, ztna-geo-tag.
    color Number
    Color of icon on the GUI.
    comment String
    Comment.
    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.
    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.
    objectFirewallAddrgrpDynamicMappingId String
    an identifier for the resource with format "{{_scope.name}} {{_scope.vdom}}".
    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.
    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.

    Supporting Types

    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.

    Import

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

    Set import_options = [“addrgrp=YOUR_VALUE”] in the provider section.

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectFirewallAddrgrpDynamicMapping:ObjectFirewallAddrgrpDynamicMapping labelname {{_scope.name}}.{{_scope.vdom}}
    

    $ 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