fortimanager.ObjectFirewallAddrgrp
Explore with Pulumi AI
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
isadom
, otherwise the value of adom in the provider will be inherited. - Allow
Routing 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.
- Dynamic
Mappings List<ObjectFirewall Addrgrp Dynamic Mapping> - Dynamic_Mapping. The structure of
dynamic_mapping
block is documented below. - Dynamic
Sort stringSubtable - 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
. - Exclude
Members List<string> - Address exclusion member.
- Fabric
Object string - Security Fabric global object setting. Valid values:
disable
,enable
. - Global
Object double - Global Object.
- Members List<string>
- Address objects contained within the group.
- Name string
- Address group name.
- Object
Firewall stringAddrgrp Id - an identifier for the resource with format {{name}}.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Taggings
List<Object
Firewall Addrgrp Tagging> - 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 stringBase64 - _Image-Base64.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Allow
Routing 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.
- Dynamic
Mappings []ObjectFirewall Addrgrp Dynamic Mapping Type Args - Dynamic_Mapping. The structure of
dynamic_mapping
block is documented below. - Dynamic
Sort stringSubtable - 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
. - Exclude
Members []string - Address exclusion member.
- Fabric
Object string - Security Fabric global object setting. Valid values:
disable
,enable
. - Global
Object float64 - Global Object.
- Members []string
- Address objects contained within the group.
- Name string
- Address group name.
- Object
Firewall stringAddrgrp Id - an identifier for the resource with format {{name}}.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Taggings
[]Object
Firewall Addrgrp Tagging Type Args - 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 stringBase64 - _Image-Base64.
- _
image StringBase64 - _Image-Base64.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - allow
Routing 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.
- dynamic
Mappings List<ObjectFirewall Addrgrp Dynamic Mapping> - Dynamic_Mapping. The structure of
dynamic_mapping
block is documented below. - dynamic
Sort StringSubtable - 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
. - exclude
Members List<String> - Address exclusion member.
- fabric
Object String - Security Fabric global object setting. Valid values:
disable
,enable
. - global
Object Double - Global Object.
- members List<String>
- Address objects contained within the group.
- name String
- Address group name.
- object
Firewall StringAddrgrp Id - an identifier for the resource with format {{name}}.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - taggings
List<Object
Firewall Addrgrp Tagging> - 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 stringBase64 - _Image-Base64.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - allow
Routing 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.
- dynamic
Mappings ObjectFirewall Addrgrp Dynamic Mapping[] - Dynamic_Mapping. The structure of
dynamic_mapping
block is documented below. - dynamic
Sort stringSubtable - 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
. - exclude
Members string[] - Address exclusion member.
- fabric
Object string - Security Fabric global object setting. Valid values:
disable
,enable
. - global
Object number - Global Object.
- members string[]
- Address objects contained within the group.
- name string
- Address group name.
- object
Firewall stringAddrgrp Id - an identifier for the resource with format {{name}}.
- scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - taggings
Object
Firewall Addrgrp Tagging[] - 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_ strbase64 - _Image-Base64.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, 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[ObjectFirewall Addrgrp Dynamic Mapping Args] - Dynamic_Mapping. The structure of
dynamic_mapping
block is documented below. - dynamic_
sort_ strsubtable - 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_ straddrgrp_ id - an identifier for the resource with format {{name}}.
- scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - taggings
Sequence[Object
Firewall Addrgrp Tagging Args] - 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
.
- _
image StringBase64 - _Image-Base64.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - allow
Routing 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.
- dynamic
Mappings List<Property Map> - Dynamic_Mapping. The structure of
dynamic_mapping
block is documented below. - dynamic
Sort StringSubtable - 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
. - exclude
Members List<String> - Address exclusion member.
- fabric
Object String - Security Fabric global object setting. Valid values:
disable
,enable
. - global
Object Number - Global Object.
- members List<String>
- Address objects contained within the group.
- name String
- Address group name.
- object
Firewall StringAddrgrp Id - an identifier for the resource with format {{name}}.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - 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.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Allow
Routing 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.
- Dynamic
Mappings List<ObjectFirewall Addrgrp Dynamic Mapping> - Dynamic_Mapping. The structure of
dynamic_mapping
block is documented below. - Dynamic
Sort stringSubtable - 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
. - Exclude
Members List<string> - Address exclusion member.
- Fabric
Object string - Security Fabric global object setting. Valid values:
disable
,enable
. - Global
Object double - Global Object.
- Members List<string>
- Address objects contained within the group.
- Name string
- Address group name.
- Object
Firewall stringAddrgrp Id - an identifier for the resource with format {{name}}.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Taggings
List<Object
Firewall Addrgrp Tagging> - 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 stringBase64 - _Image-Base64.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Allow
Routing 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.
- Dynamic
Mappings []ObjectFirewall Addrgrp Dynamic Mapping Type Args - Dynamic_Mapping. The structure of
dynamic_mapping
block is documented below. - Dynamic
Sort stringSubtable - 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
. - Exclude
Members []string - Address exclusion member.
- Fabric
Object string - Security Fabric global object setting. Valid values:
disable
,enable
. - Global
Object float64 - Global Object.
- Members []string
- Address objects contained within the group.
- Name string
- Address group name.
- Object
Firewall stringAddrgrp Id - an identifier for the resource with format {{name}}.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Taggings
[]Object
Firewall Addrgrp Tagging Type Args - 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 stringBase64 - _Image-Base64.
- _
image StringBase64 - _Image-Base64.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - allow
Routing 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.
- dynamic
Mappings List<ObjectFirewall Addrgrp Dynamic Mapping> - Dynamic_Mapping. The structure of
dynamic_mapping
block is documented below. - dynamic
Sort StringSubtable - 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
. - exclude
Members List<String> - Address exclusion member.
- fabric
Object String - Security Fabric global object setting. Valid values:
disable
,enable
. - global
Object Double - Global Object.
- members List<String>
- Address objects contained within the group.
- name String
- Address group name.
- object
Firewall StringAddrgrp Id - an identifier for the resource with format {{name}}.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - taggings
List<Object
Firewall Addrgrp Tagging> - 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 stringBase64 - _Image-Base64.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - allow
Routing 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.
- dynamic
Mappings ObjectFirewall Addrgrp Dynamic Mapping[] - Dynamic_Mapping. The structure of
dynamic_mapping
block is documented below. - dynamic
Sort stringSubtable - 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
. - exclude
Members string[] - Address exclusion member.
- fabric
Object string - Security Fabric global object setting. Valid values:
disable
,enable
. - global
Object number - Global Object.
- members string[]
- Address objects contained within the group.
- name string
- Address group name.
- object
Firewall stringAddrgrp Id - an identifier for the resource with format {{name}}.
- scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - taggings
Object
Firewall Addrgrp Tagging[] - 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_ strbase64 - _Image-Base64.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, 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[ObjectFirewall Addrgrp Dynamic Mapping Args] - Dynamic_Mapping. The structure of
dynamic_mapping
block is documented below. - dynamic_
sort_ strsubtable - 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_ straddrgrp_ id - an identifier for the resource with format {{name}}.
- scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - taggings
Sequence[Object
Firewall Addrgrp Tagging Args] - 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
.
- _
image StringBase64 - _Image-Base64.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - allow
Routing 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.
- dynamic
Mappings List<Property Map> - Dynamic_Mapping. The structure of
dynamic_mapping
block is documented below. - dynamic
Sort StringSubtable - 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
. - exclude
Members List<String> - Address exclusion member.
- fabric
Object String - Security Fabric global object setting. Valid values:
disable
,enable
. - global
Object Number - Global Object.
- members List<String>
- Address objects contained within the group.
- name String
- Address group name.
- object
Firewall StringAddrgrp Id - an identifier for the resource with format {{name}}.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - 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
- Allow
Routing 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
. - Exclude
Member string - Address exclusion member.
- Fabric
Object string - Fabric-Object. Valid values:
disable
,enable
. - Global
Object double - Global-Object.
- Members List<string>
- Address objects contained within the group.
- 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 stringBase64 - _Image-Base64.
- _
scopes List<ObjectFirewall Addrgrp Dynamic Mapping_Scope> - _Scope. The structure of
_scope
block is documented below.
- Allow
Routing 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
. - Exclude
Member string - Address exclusion member.
- Fabric
Object string - Fabric-Object. Valid values:
disable
,enable
. - Global
Object float64 - Global-Object.
- Members []string
- Address objects contained within the group.
- 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 stringBase64 - _Image-Base64.
- _
scopes []ObjectFirewall Addrgrp Dynamic Mapping_Scope - _Scope. The structure of
_scope
block is documented below.
- _
image StringBase64 - _Image-Base64.
- _
scopes List<ObjectFirewall Addrgrp Dynamic Mapping_Scope> - _Scope. The structure of
_scope
block is documented below. - allow
Routing 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
. - exclude
Member String - Address exclusion member.
- fabric
Object String - Fabric-Object. Valid values:
disable
,enable
. - global
Object Double - Global-Object.
- members List<String>
- Address objects contained within the group.
- 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 stringBase64 - _Image-Base64.
- _
scopes ObjectFirewall Addrgrp Dynamic Mapping_Scope[] - _Scope. The structure of
_scope
block is documented below. - allow
Routing 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
. - exclude
Member string - Address exclusion member.
- fabric
Object string - Fabric-Object. Valid values:
disable
,enable
. - global
Object number - Global-Object.
- members string[]
- Address objects contained within the group.
- 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_ strbase64 - _Image-Base64.
- _
scopes Sequence[ObjectFirewall Addrgrp Dynamic Mapping_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.
- 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
.
- _
image StringBase64 - _Image-Base64.
- _
scopes List<Property Map> - _Scope. The structure of
_scope
block is documented below. - allow
Routing 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
. - exclude
Member String - Address exclusion member.
- fabric
Object String - Fabric-Object. Valid values:
disable
,enable
. - global
Object Number - Global-Object.
- members List<String>
- Address objects contained within the group.
- 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
ObjectFirewallAddrgrpTagging, ObjectFirewallAddrgrpTaggingArgs
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.