fortios.firewall.Address6template
Explore with Pulumi AI
Configure IPv6 address templates.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortios from "@pulumiverse/fortios";
const trname = new fortios.firewall.Address6template("trname", {
ip6: "2001:db8:0:b::/64",
subnetSegments: [
{
bits: 4,
exclusive: "disable",
id: 1,
name: "country",
},
{
bits: 4,
exclusive: "disable",
id: 2,
name: "state",
},
],
subnetSegmentCount: 2,
});
import pulumi
import pulumiverse_fortios as fortios
trname = fortios.firewall.Address6template("trname",
ip6="2001:db8:0:b::/64",
subnet_segments=[
fortios.firewall.Address6templateSubnetSegmentArgs(
bits=4,
exclusive="disable",
id=1,
name="country",
),
fortios.firewall.Address6templateSubnetSegmentArgs(
bits=4,
exclusive="disable",
id=2,
name="state",
),
],
subnet_segment_count=2)
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumiverse/pulumi-fortios/sdk/go/fortios/firewall"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := firewall.NewAddress6template(ctx, "trname", &firewall.Address6templateArgs{
Ip6: pulumi.String("2001:db8:0:b::/64"),
SubnetSegments: firewall.Address6templateSubnetSegmentArray{
&firewall.Address6templateSubnetSegmentArgs{
Bits: pulumi.Int(4),
Exclusive: pulumi.String("disable"),
Id: pulumi.Int(1),
Name: pulumi.String("country"),
},
&firewall.Address6templateSubnetSegmentArgs{
Bits: pulumi.Int(4),
Exclusive: pulumi.String("disable"),
Id: pulumi.Int(2),
Name: pulumi.String("state"),
},
},
SubnetSegmentCount: pulumi.Int(2),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Fortios = Pulumiverse.Fortios;
return await Deployment.RunAsync(() =>
{
var trname = new Fortios.Firewall.Address6template("trname", new()
{
Ip6 = "2001:db8:0:b::/64",
SubnetSegments = new[]
{
new Fortios.Firewall.Inputs.Address6templateSubnetSegmentArgs
{
Bits = 4,
Exclusive = "disable",
Id = 1,
Name = "country",
},
new Fortios.Firewall.Inputs.Address6templateSubnetSegmentArgs
{
Bits = 4,
Exclusive = "disable",
Id = 2,
Name = "state",
},
},
SubnetSegmentCount = 2,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortios.firewall.Address6template;
import com.pulumi.fortios.firewall.Address6templateArgs;
import com.pulumi.fortios.firewall.inputs.Address6templateSubnetSegmentArgs;
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 Address6template("trname", Address6templateArgs.builder()
.ip6("2001:db8:0:b::/64")
.subnetSegments(
Address6templateSubnetSegmentArgs.builder()
.bits(4)
.exclusive("disable")
.id(1)
.name("country")
.build(),
Address6templateSubnetSegmentArgs.builder()
.bits(4)
.exclusive("disable")
.id(2)
.name("state")
.build())
.subnetSegmentCount(2)
.build());
}
}
resources:
trname:
type: fortios:firewall:Address6template
properties:
ip6: 2001:db8:0:b::/64
subnetSegments:
- bits: 4
exclusive: disable
id: 1
name: country
- bits: 4
exclusive: disable
id: 2
name: state
subnetSegmentCount: 2
Create Address6template Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Address6template(name: string, args: Address6templateArgs, opts?: CustomResourceOptions);
@overload
def Address6template(resource_name: str,
args: Address6templateArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Address6template(resource_name: str,
opts: Optional[ResourceOptions] = None,
ip6: Optional[str] = None,
subnet_segment_count: Optional[int] = None,
dynamic_sort_subtable: Optional[str] = None,
fabric_object: Optional[str] = None,
get_all_tables: Optional[str] = None,
name: Optional[str] = None,
subnet_segments: Optional[Sequence[Address6templateSubnetSegmentArgs]] = None,
vdomparam: Optional[str] = None)
func NewAddress6template(ctx *Context, name string, args Address6templateArgs, opts ...ResourceOption) (*Address6template, error)
public Address6template(string name, Address6templateArgs args, CustomResourceOptions? opts = null)
public Address6template(String name, Address6templateArgs args)
public Address6template(String name, Address6templateArgs args, CustomResourceOptions options)
type: fortios:firewall:Address6template
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 Address6templateArgs
- 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 Address6templateArgs
- 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 Address6templateArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args Address6templateArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args Address6templateArgs
- 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 address6templateResource = new Fortios.Firewall.Address6template("address6templateResource", new()
{
Ip6 = "string",
SubnetSegmentCount = 0,
DynamicSortSubtable = "string",
FabricObject = "string",
GetAllTables = "string",
Name = "string",
SubnetSegments = new[]
{
new Fortios.Firewall.Inputs.Address6templateSubnetSegmentArgs
{
Bits = 0,
Exclusive = "string",
Id = 0,
Name = "string",
Values = new[]
{
new Fortios.Firewall.Inputs.Address6templateSubnetSegmentValueArgs
{
Name = "string",
Value = "string",
},
},
},
},
Vdomparam = "string",
});
example, err := firewall.NewAddress6template(ctx, "address6templateResource", &firewall.Address6templateArgs{
Ip6: pulumi.String("string"),
SubnetSegmentCount: pulumi.Int(0),
DynamicSortSubtable: pulumi.String("string"),
FabricObject: pulumi.String("string"),
GetAllTables: pulumi.String("string"),
Name: pulumi.String("string"),
SubnetSegments: firewall.Address6templateSubnetSegmentArray{
&firewall.Address6templateSubnetSegmentArgs{
Bits: pulumi.Int(0),
Exclusive: pulumi.String("string"),
Id: pulumi.Int(0),
Name: pulumi.String("string"),
Values: firewall.Address6templateSubnetSegmentValueArray{
&firewall.Address6templateSubnetSegmentValueArgs{
Name: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
},
},
Vdomparam: pulumi.String("string"),
})
var address6templateResource = new Address6template("address6templateResource", Address6templateArgs.builder()
.ip6("string")
.subnetSegmentCount(0)
.dynamicSortSubtable("string")
.fabricObject("string")
.getAllTables("string")
.name("string")
.subnetSegments(Address6templateSubnetSegmentArgs.builder()
.bits(0)
.exclusive("string")
.id(0)
.name("string")
.values(Address6templateSubnetSegmentValueArgs.builder()
.name("string")
.value("string")
.build())
.build())
.vdomparam("string")
.build());
address6template_resource = fortios.firewall.Address6template("address6templateResource",
ip6="string",
subnet_segment_count=0,
dynamic_sort_subtable="string",
fabric_object="string",
get_all_tables="string",
name="string",
subnet_segments=[fortios.firewall.Address6templateSubnetSegmentArgs(
bits=0,
exclusive="string",
id=0,
name="string",
values=[fortios.firewall.Address6templateSubnetSegmentValueArgs(
name="string",
value="string",
)],
)],
vdomparam="string")
const address6templateResource = new fortios.firewall.Address6template("address6templateResource", {
ip6: "string",
subnetSegmentCount: 0,
dynamicSortSubtable: "string",
fabricObject: "string",
getAllTables: "string",
name: "string",
subnetSegments: [{
bits: 0,
exclusive: "string",
id: 0,
name: "string",
values: [{
name: "string",
value: "string",
}],
}],
vdomparam: "string",
});
type: fortios:firewall:Address6template
properties:
dynamicSortSubtable: string
fabricObject: string
getAllTables: string
ip6: string
name: string
subnetSegmentCount: 0
subnetSegments:
- bits: 0
exclusive: string
id: 0
name: string
values:
- name: string
value: string
vdomparam: string
Address6template Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Address6template resource accepts the following input properties:
- Ip6 string
- IPv6 address prefix.
- Subnet
Segment intCount - Number of IPv6 subnet segments.
- Dynamic
Sort stringSubtable - Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- Fabric
Object string - Security Fabric global object setting. Valid values:
enable
,disable
. - Get
All stringTables - Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- Name string
- IPv6 address template name.
- Subnet
Segments List<Pulumiverse.Fortios. Firewall. Inputs. Address6template Subnet Segment> - IPv6 subnet segments. The structure of
subnet_segment
block is documented below. - Vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- Ip6 string
- IPv6 address prefix.
- Subnet
Segment intCount - Number of IPv6 subnet segments.
- Dynamic
Sort stringSubtable - Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- Fabric
Object string - Security Fabric global object setting. Valid values:
enable
,disable
. - Get
All stringTables - Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- Name string
- IPv6 address template name.
- Subnet
Segments []Address6templateSubnet Segment Args - IPv6 subnet segments. The structure of
subnet_segment
block is documented below. - Vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- ip6 String
- IPv6 address prefix.
- subnet
Segment IntegerCount - Number of IPv6 subnet segments.
- dynamic
Sort StringSubtable - Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- fabric
Object String - Security Fabric global object setting. Valid values:
enable
,disable
. - get
All StringTables - Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- name String
- IPv6 address template name.
- subnet
Segments List<Address6templateSubnet Segment> - IPv6 subnet segments. The structure of
subnet_segment
block is documented below. - vdomparam String
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- ip6 string
- IPv6 address prefix.
- subnet
Segment numberCount - Number of IPv6 subnet segments.
- dynamic
Sort stringSubtable - Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- fabric
Object string - Security Fabric global object setting. Valid values:
enable
,disable
. - get
All stringTables - Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- name string
- IPv6 address template name.
- subnet
Segments Address6templateSubnet Segment[] - IPv6 subnet segments. The structure of
subnet_segment
block is documented below. - vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- ip6 str
- IPv6 address prefix.
- subnet_
segment_ intcount - Number of IPv6 subnet segments.
- dynamic_
sort_ strsubtable - Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- fabric_
object str - Security Fabric global object setting. Valid values:
enable
,disable
. - get_
all_ strtables - Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- name str
- IPv6 address template name.
- subnet_
segments Sequence[Address6templateSubnet Segment Args] - IPv6 subnet segments. The structure of
subnet_segment
block is documented below. - vdomparam str
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- ip6 String
- IPv6 address prefix.
- subnet
Segment NumberCount - Number of IPv6 subnet segments.
- dynamic
Sort StringSubtable - Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- fabric
Object String - Security Fabric global object setting. Valid values:
enable
,disable
. - get
All StringTables - Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- name String
- IPv6 address template name.
- subnet
Segments List<Property Map> - IPv6 subnet segments. The structure of
subnet_segment
block is documented below. - vdomparam String
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
Outputs
All input properties are implicitly available as output properties. Additionally, the Address6template 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 Address6template Resource
Get an existing Address6template 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?: Address6templateState, opts?: CustomResourceOptions): Address6template
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
dynamic_sort_subtable: Optional[str] = None,
fabric_object: Optional[str] = None,
get_all_tables: Optional[str] = None,
ip6: Optional[str] = None,
name: Optional[str] = None,
subnet_segment_count: Optional[int] = None,
subnet_segments: Optional[Sequence[Address6templateSubnetSegmentArgs]] = None,
vdomparam: Optional[str] = None) -> Address6template
func GetAddress6template(ctx *Context, name string, id IDInput, state *Address6templateState, opts ...ResourceOption) (*Address6template, error)
public static Address6template Get(string name, Input<string> id, Address6templateState? state, CustomResourceOptions? opts = null)
public static Address6template get(String name, Output<String> id, Address6templateState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Dynamic
Sort stringSubtable - Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- Fabric
Object string - Security Fabric global object setting. Valid values:
enable
,disable
. - Get
All stringTables - Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- Ip6 string
- IPv6 address prefix.
- Name string
- IPv6 address template name.
- Subnet
Segment intCount - Number of IPv6 subnet segments.
- Subnet
Segments List<Pulumiverse.Fortios. Firewall. Inputs. Address6template Subnet Segment> - IPv6 subnet segments. The structure of
subnet_segment
block is documented below. - Vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- Dynamic
Sort stringSubtable - Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- Fabric
Object string - Security Fabric global object setting. Valid values:
enable
,disable
. - Get
All stringTables - Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- Ip6 string
- IPv6 address prefix.
- Name string
- IPv6 address template name.
- Subnet
Segment intCount - Number of IPv6 subnet segments.
- Subnet
Segments []Address6templateSubnet Segment Args - IPv6 subnet segments. The structure of
subnet_segment
block is documented below. - Vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- dynamic
Sort StringSubtable - Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- fabric
Object String - Security Fabric global object setting. Valid values:
enable
,disable
. - get
All StringTables - Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- ip6 String
- IPv6 address prefix.
- name String
- IPv6 address template name.
- subnet
Segment IntegerCount - Number of IPv6 subnet segments.
- subnet
Segments List<Address6templateSubnet Segment> - IPv6 subnet segments. The structure of
subnet_segment
block is documented below. - vdomparam String
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- dynamic
Sort stringSubtable - Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- fabric
Object string - Security Fabric global object setting. Valid values:
enable
,disable
. - get
All stringTables - Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- ip6 string
- IPv6 address prefix.
- name string
- IPv6 address template name.
- subnet
Segment numberCount - Number of IPv6 subnet segments.
- subnet
Segments Address6templateSubnet Segment[] - IPv6 subnet segments. The structure of
subnet_segment
block is documented below. - vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- dynamic_
sort_ strsubtable - Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- fabric_
object str - Security Fabric global object setting. Valid values:
enable
,disable
. - get_
all_ strtables - Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- ip6 str
- IPv6 address prefix.
- name str
- IPv6 address template name.
- subnet_
segment_ intcount - Number of IPv6 subnet segments.
- subnet_
segments Sequence[Address6templateSubnet Segment Args] - IPv6 subnet segments. The structure of
subnet_segment
block is documented below. - vdomparam str
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- dynamic
Sort StringSubtable - Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- fabric
Object String - Security Fabric global object setting. Valid values:
enable
,disable
. - get
All StringTables - Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwish conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- ip6 String
- IPv6 address prefix.
- name String
- IPv6 address template name.
- subnet
Segment NumberCount - Number of IPv6 subnet segments.
- subnet
Segments List<Property Map> - IPv6 subnet segments. The structure of
subnet_segment
block is documented below. - vdomparam String
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
Supporting Types
Address6templateSubnetSegment, Address6templateSubnetSegmentArgs
- Bits int
- Number of bits.
- Exclusive string
- Enable/disable exclusive value. Valid values:
enable
,disable
. - Id int
- Subnet segment ID.
- Name string
- Subnet segment name.
- Values
List<Pulumiverse.
Fortios. Firewall. Inputs. Address6template Subnet Segment Value> - Subnet segment values. The structure of
values
block is documented below.
Address6templateSubnetSegmentValue, Address6templateSubnetSegmentValueArgs
Import
Firewall Address6Template can be imported using any of these accepted formats:
$ pulumi import fortios:firewall/address6template:Address6template labelname {{name}}
If you do not want to import arguments of block:
$ export “FORTIOS_IMPORT_TABLE”=“false”
$ pulumi import fortios:firewall/address6template:Address6template labelname {{name}}
$ unset “FORTIOS_IMPORT_TABLE”
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- fortios pulumiverse/pulumi-fortios
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
fortios
Terraform Provider.