fortimanager.ObjectFirewallAddress6template
Explore with Pulumi AI
Configure IPv6 address templates.
The following variables have sub resource. Avoid using them together, otherwise conflicts and overwrites may occur.
subnet_segment
:fortimanager.ObjectFirewallAddress6templateSubnetsegment
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";
const trname = new fortimanager.ObjectFirewallAddress6template("trname", {
ip6: "::33/128",
subnetSegmentCount: 2,
});
import pulumi
import pulumi_fortimanager as fortimanager
trname = fortimanager.ObjectFirewallAddress6template("trname",
ip6="::33/128",
subnet_segment_count=2)
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/fortimanager/fortimanager"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := fortimanager.NewObjectFirewallAddress6template(ctx, "trname", &fortimanager.ObjectFirewallAddress6templateArgs{
Ip6: pulumi.String("::33/128"),
SubnetSegmentCount: pulumi.Float64(2),
})
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 trname = new Fortimanager.ObjectFirewallAddress6template("trname", new()
{
Ip6 = "::33/128",
SubnetSegmentCount = 2,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectFirewallAddress6template;
import com.pulumi.fortimanager.ObjectFirewallAddress6templateArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var trname = new ObjectFirewallAddress6template("trname", ObjectFirewallAddress6templateArgs.builder()
.ip6("::33/128")
.subnetSegmentCount(2)
.build());
}
}
resources:
trname:
type: fortimanager:ObjectFirewallAddress6template
properties:
ip6: ::33/128
subnetSegmentCount: 2
Create ObjectFirewallAddress6template Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectFirewallAddress6template(name: string, args?: ObjectFirewallAddress6templateArgs, opts?: CustomResourceOptions);
@overload
def ObjectFirewallAddress6template(resource_name: str,
args: Optional[ObjectFirewallAddress6templateArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectFirewallAddress6template(resource_name: str,
opts: Optional[ResourceOptions] = None,
_image_base64: Optional[str] = None,
adom: Optional[str] = None,
dynamic_sort_subtable: Optional[str] = None,
fabric_object: Optional[str] = None,
ip6: Optional[str] = None,
name: Optional[str] = None,
object_firewall_address6template_id: Optional[str] = None,
scopetype: Optional[str] = None,
subnet_segment_count: Optional[float] = None,
subnet_segments: Optional[Sequence[ObjectFirewallAddress6templateSubnetSegmentArgs]] = None,
uuid: Optional[str] = None)
func NewObjectFirewallAddress6template(ctx *Context, name string, args *ObjectFirewallAddress6templateArgs, opts ...ResourceOption) (*ObjectFirewallAddress6template, error)
public ObjectFirewallAddress6template(string name, ObjectFirewallAddress6templateArgs? args = null, CustomResourceOptions? opts = null)
public ObjectFirewallAddress6template(String name, ObjectFirewallAddress6templateArgs args)
public ObjectFirewallAddress6template(String name, ObjectFirewallAddress6templateArgs args, CustomResourceOptions options)
type: fortimanager:ObjectFirewallAddress6template
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 ObjectFirewallAddress6templateArgs
- 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 ObjectFirewallAddress6templateArgs
- 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 ObjectFirewallAddress6templateArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectFirewallAddress6templateArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectFirewallAddress6templateArgs
- 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 objectFirewallAddress6templateResource = new Fortimanager.ObjectFirewallAddress6template("objectFirewallAddress6templateResource", new()
{
_imageBase64 = "string",
Adom = "string",
DynamicSortSubtable = "string",
FabricObject = "string",
Ip6 = "string",
Name = "string",
ObjectFirewallAddress6templateId = "string",
Scopetype = "string",
SubnetSegmentCount = 0,
SubnetSegments = new[]
{
new Fortimanager.Inputs.ObjectFirewallAddress6templateSubnetSegmentArgs
{
Bits = 0,
Exclusive = "string",
Id = 0,
Name = "string",
Values = new[]
{
new Fortimanager.Inputs.ObjectFirewallAddress6templateSubnetSegmentValueArgs
{
Name = "string",
Value = "string",
},
},
},
},
Uuid = "string",
});
example, err := fortimanager.NewObjectFirewallAddress6template(ctx, "objectFirewallAddress6templateResource", &fortimanager.ObjectFirewallAddress6templateArgs{
_imageBase64: pulumi.String("string"),
Adom: pulumi.String("string"),
DynamicSortSubtable: pulumi.String("string"),
FabricObject: pulumi.String("string"),
Ip6: pulumi.String("string"),
Name: pulumi.String("string"),
ObjectFirewallAddress6templateId: pulumi.String("string"),
Scopetype: pulumi.String("string"),
SubnetSegmentCount: pulumi.Float64(0),
SubnetSegments: .ObjectFirewallAddress6templateSubnetSegmentTypeArray{
&.ObjectFirewallAddress6templateSubnetSegmentTypeArgs{
Bits: pulumi.Float64(0),
Exclusive: pulumi.String("string"),
Id: pulumi.Float64(0),
Name: pulumi.String("string"),
Values: .ObjectFirewallAddress6templateSubnetSegmentValueArray{
&.ObjectFirewallAddress6templateSubnetSegmentValueArgs{
Name: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
},
},
Uuid: pulumi.String("string"),
})
var objectFirewallAddress6templateResource = new ObjectFirewallAddress6template("objectFirewallAddress6templateResource", ObjectFirewallAddress6templateArgs.builder()
._imageBase64("string")
.adom("string")
.dynamicSortSubtable("string")
.fabricObject("string")
.ip6("string")
.name("string")
.objectFirewallAddress6templateId("string")
.scopetype("string")
.subnetSegmentCount(0)
.subnetSegments(ObjectFirewallAddress6templateSubnetSegmentArgs.builder()
.bits(0)
.exclusive("string")
.id(0)
.name("string")
.values(ObjectFirewallAddress6templateSubnetSegmentValueArgs.builder()
.name("string")
.value("string")
.build())
.build())
.uuid("string")
.build());
object_firewall_address6template_resource = fortimanager.ObjectFirewallAddress6template("objectFirewallAddress6templateResource",
_image_base64="string",
adom="string",
dynamic_sort_subtable="string",
fabric_object="string",
ip6="string",
name="string",
object_firewall_address6template_id="string",
scopetype="string",
subnet_segment_count=0,
subnet_segments=[{
"bits": 0,
"exclusive": "string",
"id": 0,
"name": "string",
"values": [{
"name": "string",
"value": "string",
}],
}],
uuid="string")
const objectFirewallAddress6templateResource = new fortimanager.ObjectFirewallAddress6template("objectFirewallAddress6templateResource", {
_imageBase64: "string",
adom: "string",
dynamicSortSubtable: "string",
fabricObject: "string",
ip6: "string",
name: "string",
objectFirewallAddress6templateId: "string",
scopetype: "string",
subnetSegmentCount: 0,
subnetSegments: [{
bits: 0,
exclusive: "string",
id: 0,
name: "string",
values: [{
name: "string",
value: "string",
}],
}],
uuid: "string",
});
type: fortimanager:ObjectFirewallAddress6template
properties:
_imageBase64: string
adom: string
dynamicSortSubtable: string
fabricObject: string
ip6: string
name: string
objectFirewallAddress6templateId: string
scopetype: string
subnetSegmentCount: 0
subnetSegments:
- bits: 0
exclusive: string
id: 0
name: string
values:
- name: string
value: string
uuid: string
ObjectFirewallAddress6template 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 ObjectFirewallAddress6template 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. - 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.
- Fabric
Object string - Security Fabric global object setting. Valid values:
disable
,enable
. - Ip6 string
- IPv6 address prefix.
- Name string
- IPv6 address template name.
- Object
Firewall stringAddress6template 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
. - Subnet
Segment doubleCount - Number of IPv6 subnet segments.
- Subnet
Segments List<ObjectFirewall Address6template Subnet Segment> - Subnet-Segment. The structure of
subnet_segment
block is documented below. - Uuid string
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- _
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. - 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.
- Fabric
Object string - Security Fabric global object setting. Valid values:
disable
,enable
. - Ip6 string
- IPv6 address prefix.
- Name string
- IPv6 address template name.
- Object
Firewall stringAddress6template 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
. - Subnet
Segment float64Count - Number of IPv6 subnet segments.
- Subnet
Segments []ObjectFirewall Address6template Subnet Segment Type Args - Subnet-Segment. The structure of
subnet_segment
block is documented below. - Uuid string
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- _
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. - 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.
- fabric
Object String - Security Fabric global object setting. Valid values:
disable
,enable
. - ip6 String
- IPv6 address prefix.
- name String
- IPv6 address template name.
- object
Firewall StringAddress6template 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
. - subnet
Segment DoubleCount - Number of IPv6 subnet segments.
- subnet
Segments List<ObjectFirewall Address6template Subnet Segment> - Subnet-Segment. The structure of
subnet_segment
block is documented below. - uuid String
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- _
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. - 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.
- fabric
Object string - Security Fabric global object setting. Valid values:
disable
,enable
. - ip6 string
- IPv6 address prefix.
- name string
- IPv6 address template name.
- object
Firewall stringAddress6template 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
. - subnet
Segment numberCount - Number of IPv6 subnet segments.
- subnet
Segments ObjectFirewall Address6template Subnet Segment[] - Subnet-Segment. The structure of
subnet_segment
block is documented below. - uuid string
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- _
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. - 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.
- fabric_
object str - Security Fabric global object setting. Valid values:
disable
,enable
. - ip6 str
- IPv6 address prefix.
- name str
- IPv6 address template name.
- object_
firewall_ straddress6template_ 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
. - subnet_
segment_ floatcount - Number of IPv6 subnet segments.
- subnet_
segments Sequence[ObjectFirewall Address6template Subnet Segment Args] - Subnet-Segment. The structure of
subnet_segment
block is documented below. - uuid str
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- _
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. - 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.
- fabric
Object String - Security Fabric global object setting. Valid values:
disable
,enable
. - ip6 String
- IPv6 address prefix.
- name String
- IPv6 address template name.
- object
Firewall StringAddress6template 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
. - subnet
Segment NumberCount - Number of IPv6 subnet segments.
- subnet
Segments List<Property Map> - Subnet-Segment. The structure of
subnet_segment
block is documented below. - uuid String
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
Outputs
All input properties are implicitly available as output properties. Additionally, the ObjectFirewallAddress6template 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 ObjectFirewallAddress6template Resource
Get an existing ObjectFirewallAddress6template 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?: ObjectFirewallAddress6templateState, opts?: CustomResourceOptions): ObjectFirewallAddress6template
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
_image_base64: Optional[str] = None,
adom: Optional[str] = None,
dynamic_sort_subtable: Optional[str] = None,
fabric_object: Optional[str] = None,
ip6: Optional[str] = None,
name: Optional[str] = None,
object_firewall_address6template_id: Optional[str] = None,
scopetype: Optional[str] = None,
subnet_segment_count: Optional[float] = None,
subnet_segments: Optional[Sequence[ObjectFirewallAddress6templateSubnetSegmentArgs]] = None,
uuid: Optional[str] = None) -> ObjectFirewallAddress6template
func GetObjectFirewallAddress6template(ctx *Context, name string, id IDInput, state *ObjectFirewallAddress6templateState, opts ...ResourceOption) (*ObjectFirewallAddress6template, error)
public static ObjectFirewallAddress6template Get(string name, Input<string> id, ObjectFirewallAddress6templateState? state, CustomResourceOptions? opts = null)
public static ObjectFirewallAddress6template get(String name, Output<String> id, ObjectFirewallAddress6templateState state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectFirewallAddress6template 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. - 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.
- Fabric
Object string - Security Fabric global object setting. Valid values:
disable
,enable
. - Ip6 string
- IPv6 address prefix.
- Name string
- IPv6 address template name.
- Object
Firewall stringAddress6template 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
. - Subnet
Segment doubleCount - Number of IPv6 subnet segments.
- Subnet
Segments List<ObjectFirewall Address6template Subnet Segment> - Subnet-Segment. The structure of
subnet_segment
block is documented below. - Uuid string
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- _
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. - 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.
- Fabric
Object string - Security Fabric global object setting. Valid values:
disable
,enable
. - Ip6 string
- IPv6 address prefix.
- Name string
- IPv6 address template name.
- Object
Firewall stringAddress6template 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
. - Subnet
Segment float64Count - Number of IPv6 subnet segments.
- Subnet
Segments []ObjectFirewall Address6template Subnet Segment Type Args - Subnet-Segment. The structure of
subnet_segment
block is documented below. - Uuid string
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- _
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. - 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.
- fabric
Object String - Security Fabric global object setting. Valid values:
disable
,enable
. - ip6 String
- IPv6 address prefix.
- name String
- IPv6 address template name.
- object
Firewall StringAddress6template 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
. - subnet
Segment DoubleCount - Number of IPv6 subnet segments.
- subnet
Segments List<ObjectFirewall Address6template Subnet Segment> - Subnet-Segment. The structure of
subnet_segment
block is documented below. - uuid String
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- _
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. - 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.
- fabric
Object string - Security Fabric global object setting. Valid values:
disable
,enable
. - ip6 string
- IPv6 address prefix.
- name string
- IPv6 address template name.
- object
Firewall stringAddress6template 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
. - subnet
Segment numberCount - Number of IPv6 subnet segments.
- subnet
Segments ObjectFirewall Address6template Subnet Segment[] - Subnet-Segment. The structure of
subnet_segment
block is documented below. - uuid string
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- _
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. - 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.
- fabric_
object str - Security Fabric global object setting. Valid values:
disable
,enable
. - ip6 str
- IPv6 address prefix.
- name str
- IPv6 address template name.
- object_
firewall_ straddress6template_ 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
. - subnet_
segment_ floatcount - Number of IPv6 subnet segments.
- subnet_
segments Sequence[ObjectFirewall Address6template Subnet Segment Args] - Subnet-Segment. The structure of
subnet_segment
block is documented below. - uuid str
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- _
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. - 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.
- fabric
Object String - Security Fabric global object setting. Valid values:
disable
,enable
. - ip6 String
- IPv6 address prefix.
- name String
- IPv6 address template name.
- object
Firewall StringAddress6template 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
. - subnet
Segment NumberCount - Number of IPv6 subnet segments.
- subnet
Segments List<Property Map> - Subnet-Segment. The structure of
subnet_segment
block is documented below. - uuid String
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
Supporting Types
ObjectFirewallAddress6templateSubnetSegment, ObjectFirewallAddress6templateSubnetSegmentArgs
ObjectFirewallAddress6templateSubnetSegmentValue, ObjectFirewallAddress6templateSubnetSegmentValueArgs
Import
ObjectFirewall Address6Template can be imported using any of these accepted formats:
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectFirewallAddress6template:ObjectFirewallAddress6template 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.