1. Packages
  2. Fortios
  3. API Docs
  4. firewall
  5. Vipgrp6
Fortios v0.0.6 published on Tuesday, Jul 9, 2024 by pulumiverse

fortios.firewall.Vipgrp6

Explore with Pulumi AI

Configure IPv6 virtual IP groups.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as fortios from "@pulumiverse/fortios";

const trname1 = new fortios.firewall.Vip6("trname1", {
    arpReply: "enable",
    color: 0,
    extip: "2001:1:1:2::100",
    extport: "0-65535",
    fosid: 0,
    httpCookieAge: 60,
    httpCookieDomainFromHost: "disable",
    httpCookieGeneration: 0,
    httpCookieShare: "same-ip",
    httpIpHeader: "disable",
    httpMultiplex: "disable",
    httpsCookieSecure: "disable",
    ldbMethod: "static",
    mappedip: "2001:1:1:2::200",
    mappedport: "0-65535",
    maxEmbryonicConnections: 1000,
    outlookWebAccess: "disable",
    persistence: "none",
    portforward: "disable",
    protocol: "tcp",
    sslAlgorithm: "high",
    sslClientFallback: "enable",
    sslClientRenegotiation: "secure",
    sslClientSessionStateMax: 1000,
    sslClientSessionStateTimeout: 30,
    sslClientSessionStateType: "both",
    sslDhBits: "2048",
    sslHpkp: "disable",
    sslHpkpAge: 5184000,
    sslHpkpIncludeSubdomains: "disable",
    sslHsts: "disable",
    sslHstsAge: 5184000,
    sslHstsIncludeSubdomains: "disable",
    sslHttpLocationConversion: "disable",
    sslHttpMatchHost: "enable",
    sslMaxVersion: "tls-1.2",
    sslMinVersion: "tls-1.1",
    sslMode: "half",
    sslPfs: "require",
    sslSendEmptyFrags: "enable",
    sslServerAlgorithm: "client",
    sslServerMaxVersion: "client",
    sslServerMinVersion: "client",
    sslServerSessionStateMax: 100,
    sslServerSessionStateTimeout: 60,
    sslServerSessionStateType: "both",
    type: "static-nat",
    weblogicServer: "disable",
    websphereServer: "disable",
});
const trname = new fortios.firewall.Vipgrp6("trname", {
    color: 0,
    members: [{
        name: trname1.name,
    }],
});
Copy
import pulumi
import pulumiverse_fortios as fortios

trname1 = fortios.firewall.Vip6("trname1",
    arp_reply="enable",
    color=0,
    extip="2001:1:1:2::100",
    extport="0-65535",
    fosid=0,
    http_cookie_age=60,
    http_cookie_domain_from_host="disable",
    http_cookie_generation=0,
    http_cookie_share="same-ip",
    http_ip_header="disable",
    http_multiplex="disable",
    https_cookie_secure="disable",
    ldb_method="static",
    mappedip="2001:1:1:2::200",
    mappedport="0-65535",
    max_embryonic_connections=1000,
    outlook_web_access="disable",
    persistence="none",
    portforward="disable",
    protocol="tcp",
    ssl_algorithm="high",
    ssl_client_fallback="enable",
    ssl_client_renegotiation="secure",
    ssl_client_session_state_max=1000,
    ssl_client_session_state_timeout=30,
    ssl_client_session_state_type="both",
    ssl_dh_bits="2048",
    ssl_hpkp="disable",
    ssl_hpkp_age=5184000,
    ssl_hpkp_include_subdomains="disable",
    ssl_hsts="disable",
    ssl_hsts_age=5184000,
    ssl_hsts_include_subdomains="disable",
    ssl_http_location_conversion="disable",
    ssl_http_match_host="enable",
    ssl_max_version="tls-1.2",
    ssl_min_version="tls-1.1",
    ssl_mode="half",
    ssl_pfs="require",
    ssl_send_empty_frags="enable",
    ssl_server_algorithm="client",
    ssl_server_max_version="client",
    ssl_server_min_version="client",
    ssl_server_session_state_max=100,
    ssl_server_session_state_timeout=60,
    ssl_server_session_state_type="both",
    type="static-nat",
    weblogic_server="disable",
    websphere_server="disable")
trname = fortios.firewall.Vipgrp6("trname",
    color=0,
    members=[fortios.firewall.Vipgrp6MemberArgs(
        name=trname1.name,
    )])
Copy
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 {
		trname1, err := firewall.NewVip6(ctx, "trname1", &firewall.Vip6Args{
			ArpReply:                     pulumi.String("enable"),
			Color:                        pulumi.Int(0),
			Extip:                        pulumi.String("2001:1:1:2::100"),
			Extport:                      pulumi.String("0-65535"),
			Fosid:                        pulumi.Int(0),
			HttpCookieAge:                pulumi.Int(60),
			HttpCookieDomainFromHost:     pulumi.String("disable"),
			HttpCookieGeneration:         pulumi.Int(0),
			HttpCookieShare:              pulumi.String("same-ip"),
			HttpIpHeader:                 pulumi.String("disable"),
			HttpMultiplex:                pulumi.String("disable"),
			HttpsCookieSecure:            pulumi.String("disable"),
			LdbMethod:                    pulumi.String("static"),
			Mappedip:                     pulumi.String("2001:1:1:2::200"),
			Mappedport:                   pulumi.String("0-65535"),
			MaxEmbryonicConnections:      pulumi.Int(1000),
			OutlookWebAccess:             pulumi.String("disable"),
			Persistence:                  pulumi.String("none"),
			Portforward:                  pulumi.String("disable"),
			Protocol:                     pulumi.String("tcp"),
			SslAlgorithm:                 pulumi.String("high"),
			SslClientFallback:            pulumi.String("enable"),
			SslClientRenegotiation:       pulumi.String("secure"),
			SslClientSessionStateMax:     pulumi.Int(1000),
			SslClientSessionStateTimeout: pulumi.Int(30),
			SslClientSessionStateType:    pulumi.String("both"),
			SslDhBits:                    pulumi.String("2048"),
			SslHpkp:                      pulumi.String("disable"),
			SslHpkpAge:                   pulumi.Int(5184000),
			SslHpkpIncludeSubdomains:     pulumi.String("disable"),
			SslHsts:                      pulumi.String("disable"),
			SslHstsAge:                   pulumi.Int(5184000),
			SslHstsIncludeSubdomains:     pulumi.String("disable"),
			SslHttpLocationConversion:    pulumi.String("disable"),
			SslHttpMatchHost:             pulumi.String("enable"),
			SslMaxVersion:                pulumi.String("tls-1.2"),
			SslMinVersion:                pulumi.String("tls-1.1"),
			SslMode:                      pulumi.String("half"),
			SslPfs:                       pulumi.String("require"),
			SslSendEmptyFrags:            pulumi.String("enable"),
			SslServerAlgorithm:           pulumi.String("client"),
			SslServerMaxVersion:          pulumi.String("client"),
			SslServerMinVersion:          pulumi.String("client"),
			SslServerSessionStateMax:     pulumi.Int(100),
			SslServerSessionStateTimeout: pulumi.Int(60),
			SslServerSessionStateType:    pulumi.String("both"),
			Type:                         pulumi.String("static-nat"),
			WeblogicServer:               pulumi.String("disable"),
			WebsphereServer:              pulumi.String("disable"),
		})
		if err != nil {
			return err
		}
		_, err = firewall.NewVipgrp6(ctx, "trname", &firewall.Vipgrp6Args{
			Color: pulumi.Int(0),
			Members: firewall.Vipgrp6MemberArray{
				&firewall.Vipgrp6MemberArgs{
					Name: trname1.Name,
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Fortios = Pulumiverse.Fortios;

return await Deployment.RunAsync(() => 
{
    var trname1 = new Fortios.Firewall.Vip6("trname1", new()
    {
        ArpReply = "enable",
        Color = 0,
        Extip = "2001:1:1:2::100",
        Extport = "0-65535",
        Fosid = 0,
        HttpCookieAge = 60,
        HttpCookieDomainFromHost = "disable",
        HttpCookieGeneration = 0,
        HttpCookieShare = "same-ip",
        HttpIpHeader = "disable",
        HttpMultiplex = "disable",
        HttpsCookieSecure = "disable",
        LdbMethod = "static",
        Mappedip = "2001:1:1:2::200",
        Mappedport = "0-65535",
        MaxEmbryonicConnections = 1000,
        OutlookWebAccess = "disable",
        Persistence = "none",
        Portforward = "disable",
        Protocol = "tcp",
        SslAlgorithm = "high",
        SslClientFallback = "enable",
        SslClientRenegotiation = "secure",
        SslClientSessionStateMax = 1000,
        SslClientSessionStateTimeout = 30,
        SslClientSessionStateType = "both",
        SslDhBits = "2048",
        SslHpkp = "disable",
        SslHpkpAge = 5184000,
        SslHpkpIncludeSubdomains = "disable",
        SslHsts = "disable",
        SslHstsAge = 5184000,
        SslHstsIncludeSubdomains = "disable",
        SslHttpLocationConversion = "disable",
        SslHttpMatchHost = "enable",
        SslMaxVersion = "tls-1.2",
        SslMinVersion = "tls-1.1",
        SslMode = "half",
        SslPfs = "require",
        SslSendEmptyFrags = "enable",
        SslServerAlgorithm = "client",
        SslServerMaxVersion = "client",
        SslServerMinVersion = "client",
        SslServerSessionStateMax = 100,
        SslServerSessionStateTimeout = 60,
        SslServerSessionStateType = "both",
        Type = "static-nat",
        WeblogicServer = "disable",
        WebsphereServer = "disable",
    });

    var trname = new Fortios.Firewall.Vipgrp6("trname", new()
    {
        Color = 0,
        Members = new[]
        {
            new Fortios.Firewall.Inputs.Vipgrp6MemberArgs
            {
                Name = trname1.Name,
            },
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortios.firewall.Vip6;
import com.pulumi.fortios.firewall.Vip6Args;
import com.pulumi.fortios.firewall.Vipgrp6;
import com.pulumi.fortios.firewall.Vipgrp6Args;
import com.pulumi.fortios.firewall.inputs.Vipgrp6MemberArgs;
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 trname1 = new Vip6("trname1", Vip6Args.builder()
            .arpReply("enable")
            .color(0)
            .extip("2001:1:1:2::100")
            .extport("0-65535")
            .fosid(0)
            .httpCookieAge(60)
            .httpCookieDomainFromHost("disable")
            .httpCookieGeneration(0)
            .httpCookieShare("same-ip")
            .httpIpHeader("disable")
            .httpMultiplex("disable")
            .httpsCookieSecure("disable")
            .ldbMethod("static")
            .mappedip("2001:1:1:2::200")
            .mappedport("0-65535")
            .maxEmbryonicConnections(1000)
            .outlookWebAccess("disable")
            .persistence("none")
            .portforward("disable")
            .protocol("tcp")
            .sslAlgorithm("high")
            .sslClientFallback("enable")
            .sslClientRenegotiation("secure")
            .sslClientSessionStateMax(1000)
            .sslClientSessionStateTimeout(30)
            .sslClientSessionStateType("both")
            .sslDhBits("2048")
            .sslHpkp("disable")
            .sslHpkpAge(5184000)
            .sslHpkpIncludeSubdomains("disable")
            .sslHsts("disable")
            .sslHstsAge(5184000)
            .sslHstsIncludeSubdomains("disable")
            .sslHttpLocationConversion("disable")
            .sslHttpMatchHost("enable")
            .sslMaxVersion("tls-1.2")
            .sslMinVersion("tls-1.1")
            .sslMode("half")
            .sslPfs("require")
            .sslSendEmptyFrags("enable")
            .sslServerAlgorithm("client")
            .sslServerMaxVersion("client")
            .sslServerMinVersion("client")
            .sslServerSessionStateMax(100)
            .sslServerSessionStateTimeout(60)
            .sslServerSessionStateType("both")
            .type("static-nat")
            .weblogicServer("disable")
            .websphereServer("disable")
            .build());

        var trname = new Vipgrp6("trname", Vipgrp6Args.builder()
            .color(0)
            .members(Vipgrp6MemberArgs.builder()
                .name(trname1.name())
                .build())
            .build());

    }
}
Copy
resources:
  trname1:
    type: fortios:firewall:Vip6
    properties:
      arpReply: enable
      color: 0
      extip: 2001:1:1:2::100
      extport: 0-65535
      fosid: 0
      httpCookieAge: 60
      httpCookieDomainFromHost: disable
      httpCookieGeneration: 0
      httpCookieShare: same-ip
      httpIpHeader: disable
      httpMultiplex: disable
      httpsCookieSecure: disable
      ldbMethod: static
      mappedip: 2001:1:1:2::200
      mappedport: 0-65535
      maxEmbryonicConnections: 1000
      outlookWebAccess: disable
      persistence: none
      portforward: disable
      protocol: tcp
      sslAlgorithm: high
      sslClientFallback: enable
      sslClientRenegotiation: secure
      sslClientSessionStateMax: 1000
      sslClientSessionStateTimeout: 30
      sslClientSessionStateType: both
      sslDhBits: '2048'
      sslHpkp: disable
      sslHpkpAge: 5.184e+06
      sslHpkpIncludeSubdomains: disable
      sslHsts: disable
      sslHstsAge: 5.184e+06
      sslHstsIncludeSubdomains: disable
      sslHttpLocationConversion: disable
      sslHttpMatchHost: enable
      sslMaxVersion: tls-1.2
      sslMinVersion: tls-1.1
      sslMode: half
      sslPfs: require
      sslSendEmptyFrags: enable
      sslServerAlgorithm: client
      sslServerMaxVersion: client
      sslServerMinVersion: client
      sslServerSessionStateMax: 100
      sslServerSessionStateTimeout: 60
      sslServerSessionStateType: both
      type: static-nat
      weblogicServer: disable
      websphereServer: disable
  trname:
    type: fortios:firewall:Vipgrp6
    properties:
      color: 0
      members:
        - name: ${trname1.name}
Copy

Create Vipgrp6 Resource

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

Constructor syntax

new Vipgrp6(name: string, args: Vipgrp6Args, opts?: CustomResourceOptions);
@overload
def Vipgrp6(resource_name: str,
            args: Vipgrp6Args,
            opts: Optional[ResourceOptions] = None)

@overload
def Vipgrp6(resource_name: str,
            opts: Optional[ResourceOptions] = None,
            members: Optional[Sequence[Vipgrp6MemberArgs]] = None,
            color: Optional[int] = None,
            comments: Optional[str] = None,
            dynamic_sort_subtable: Optional[str] = None,
            get_all_tables: Optional[str] = None,
            name: Optional[str] = None,
            uuid: Optional[str] = None,
            vdomparam: Optional[str] = None)
func NewVipgrp6(ctx *Context, name string, args Vipgrp6Args, opts ...ResourceOption) (*Vipgrp6, error)
public Vipgrp6(string name, Vipgrp6Args args, CustomResourceOptions? opts = null)
public Vipgrp6(String name, Vipgrp6Args args)
public Vipgrp6(String name, Vipgrp6Args args, CustomResourceOptions options)
type: fortios:firewall:Vipgrp6
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. Vipgrp6Args
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. Vipgrp6Args
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. Vipgrp6Args
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. Vipgrp6Args
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. Vipgrp6Args
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 vipgrp6Resource = new Fortios.Firewall.Vipgrp6("vipgrp6Resource", new()
{
    Members = new[]
    {
        new Fortios.Firewall.Inputs.Vipgrp6MemberArgs
        {
            Name = "string",
        },
    },
    Color = 0,
    Comments = "string",
    DynamicSortSubtable = "string",
    GetAllTables = "string",
    Name = "string",
    Uuid = "string",
    Vdomparam = "string",
});
Copy
example, err := firewall.NewVipgrp6(ctx, "vipgrp6Resource", &firewall.Vipgrp6Args{
	Members: firewall.Vipgrp6MemberArray{
		&firewall.Vipgrp6MemberArgs{
			Name: pulumi.String("string"),
		},
	},
	Color:               pulumi.Int(0),
	Comments:            pulumi.String("string"),
	DynamicSortSubtable: pulumi.String("string"),
	GetAllTables:        pulumi.String("string"),
	Name:                pulumi.String("string"),
	Uuid:                pulumi.String("string"),
	Vdomparam:           pulumi.String("string"),
})
Copy
var vipgrp6Resource = new Vipgrp6("vipgrp6Resource", Vipgrp6Args.builder()
    .members(Vipgrp6MemberArgs.builder()
        .name("string")
        .build())
    .color(0)
    .comments("string")
    .dynamicSortSubtable("string")
    .getAllTables("string")
    .name("string")
    .uuid("string")
    .vdomparam("string")
    .build());
Copy
vipgrp6_resource = fortios.firewall.Vipgrp6("vipgrp6Resource",
    members=[{
        "name": "string",
    }],
    color=0,
    comments="string",
    dynamic_sort_subtable="string",
    get_all_tables="string",
    name="string",
    uuid="string",
    vdomparam="string")
Copy
const vipgrp6Resource = new fortios.firewall.Vipgrp6("vipgrp6Resource", {
    members: [{
        name: "string",
    }],
    color: 0,
    comments: "string",
    dynamicSortSubtable: "string",
    getAllTables: "string",
    name: "string",
    uuid: "string",
    vdomparam: "string",
});
Copy
type: fortios:firewall:Vipgrp6
properties:
    color: 0
    comments: string
    dynamicSortSubtable: string
    getAllTables: string
    members:
        - name: string
    name: string
    uuid: string
    vdomparam: string
Copy

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

Members This property is required. List<Pulumiverse.Fortios.Firewall.Inputs.Vipgrp6Member>
Member VIP objects of the group (Separate multiple objects with a space). The structure of member block is documented below.
Color int
Integer value to determine the color of the icon in the GUI (range 1 to 32, default = 0, which sets the value to 1).
Comments string
Comment.
DynamicSortSubtable string
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 ].
GetAllTables string
Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, 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 VIP group name.
Uuid string
Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
Vdomparam Changes to this property will trigger replacement. 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.
Members This property is required. []Vipgrp6MemberArgs
Member VIP objects of the group (Separate multiple objects with a space). The structure of member block is documented below.
Color int
Integer value to determine the color of the icon in the GUI (range 1 to 32, default = 0, which sets the value to 1).
Comments string
Comment.
DynamicSortSubtable string
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 ].
GetAllTables string
Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, 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 VIP group name.
Uuid string
Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
Vdomparam Changes to this property will trigger replacement. 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.
members This property is required. List<Vipgrp6Member>
Member VIP objects of the group (Separate multiple objects with a space). The structure of member block is documented below.
color Integer
Integer value to determine the color of the icon in the GUI (range 1 to 32, default = 0, which sets the value to 1).
comments String
Comment.
dynamicSortSubtable String
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 ].
getAllTables String
Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, 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 VIP group name.
uuid String
Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
vdomparam Changes to this property will trigger replacement. 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.
members This property is required. Vipgrp6Member[]
Member VIP objects of the group (Separate multiple objects with a space). The structure of member block is documented below.
color number
Integer value to determine the color of the icon in the GUI (range 1 to 32, default = 0, which sets the value to 1).
comments string
Comment.
dynamicSortSubtable string
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 ].
getAllTables string
Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, 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 VIP group name.
uuid string
Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
vdomparam Changes to this property will trigger replacement. 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.
members This property is required. Sequence[Vipgrp6MemberArgs]
Member VIP objects of the group (Separate multiple objects with a space). The structure of member block is documented below.
color int
Integer value to determine the color of the icon in the GUI (range 1 to 32, default = 0, which sets the value to 1).
comments str
Comment.
dynamic_sort_subtable str
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 ].
get_all_tables str
Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, 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 VIP group name.
uuid str
Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
vdomparam Changes to this property will trigger replacement. 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.
members This property is required. List<Property Map>
Member VIP objects of the group (Separate multiple objects with a space). The structure of member block is documented below.
color Number
Integer value to determine the color of the icon in the GUI (range 1 to 32, default = 0, which sets the value to 1).
comments String
Comment.
dynamicSortSubtable String
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 ].
getAllTables String
Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, 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 VIP group name.
uuid String
Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
vdomparam Changes to this property will trigger replacement. 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 Vipgrp6 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 Vipgrp6 Resource

Get an existing Vipgrp6 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?: Vipgrp6State, opts?: CustomResourceOptions): Vipgrp6
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        color: Optional[int] = None,
        comments: Optional[str] = None,
        dynamic_sort_subtable: Optional[str] = None,
        get_all_tables: Optional[str] = None,
        members: Optional[Sequence[Vipgrp6MemberArgs]] = None,
        name: Optional[str] = None,
        uuid: Optional[str] = None,
        vdomparam: Optional[str] = None) -> Vipgrp6
func GetVipgrp6(ctx *Context, name string, id IDInput, state *Vipgrp6State, opts ...ResourceOption) (*Vipgrp6, error)
public static Vipgrp6 Get(string name, Input<string> id, Vipgrp6State? state, CustomResourceOptions? opts = null)
public static Vipgrp6 get(String name, Output<String> id, Vipgrp6State state, CustomResourceOptions options)
resources:  _:    type: fortios:firewall:Vipgrp6    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
Color int
Integer value to determine the color of the icon in the GUI (range 1 to 32, default = 0, which sets the value to 1).
Comments string
Comment.
DynamicSortSubtable string
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 ].
GetAllTables string
Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
Members List<Pulumiverse.Fortios.Firewall.Inputs.Vipgrp6Member>
Member VIP objects of the group (Separate multiple objects with a space). The structure of member block is documented below.
Name string
IPv6 VIP group name.
Uuid string
Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
Vdomparam Changes to this property will trigger replacement. 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.
Color int
Integer value to determine the color of the icon in the GUI (range 1 to 32, default = 0, which sets the value to 1).
Comments string
Comment.
DynamicSortSubtable string
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 ].
GetAllTables string
Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
Members []Vipgrp6MemberArgs
Member VIP objects of the group (Separate multiple objects with a space). The structure of member block is documented below.
Name string
IPv6 VIP group name.
Uuid string
Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
Vdomparam Changes to this property will trigger replacement. 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.
color Integer
Integer value to determine the color of the icon in the GUI (range 1 to 32, default = 0, which sets the value to 1).
comments String
Comment.
dynamicSortSubtable String
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 ].
getAllTables String
Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
members List<Vipgrp6Member>
Member VIP objects of the group (Separate multiple objects with a space). The structure of member block is documented below.
name String
IPv6 VIP group name.
uuid String
Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
vdomparam Changes to this property will trigger replacement. 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.
color number
Integer value to determine the color of the icon in the GUI (range 1 to 32, default = 0, which sets the value to 1).
comments string
Comment.
dynamicSortSubtable string
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 ].
getAllTables string
Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
members Vipgrp6Member[]
Member VIP objects of the group (Separate multiple objects with a space). The structure of member block is documented below.
name string
IPv6 VIP group name.
uuid string
Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
vdomparam Changes to this property will trigger replacement. 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.
color int
Integer value to determine the color of the icon in the GUI (range 1 to 32, default = 0, which sets the value to 1).
comments str
Comment.
dynamic_sort_subtable str
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 ].
get_all_tables str
Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
members Sequence[Vipgrp6MemberArgs]
Member VIP objects of the group (Separate multiple objects with a space). The structure of member block is documented below.
name str
IPv6 VIP group name.
uuid str
Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
vdomparam Changes to this property will trigger replacement. 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.
color Number
Integer value to determine the color of the icon in the GUI (range 1 to 32, default = 0, which sets the value to 1).
comments String
Comment.
dynamicSortSubtable String
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 ].
getAllTables String
Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
members List<Property Map>
Member VIP objects of the group (Separate multiple objects with a space). The structure of member block is documented below.
name String
IPv6 VIP group name.
uuid String
Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
vdomparam Changes to this property will trigger replacement. 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

Vipgrp6Member
, Vipgrp6MemberArgs

Name string
IPv6 VIP name.
Name string
IPv6 VIP name.
name String
IPv6 VIP name.
name string
IPv6 VIP name.
name str
IPv6 VIP name.
name String
IPv6 VIP name.

Import

Firewall Vipgrp6 can be imported using any of these accepted formats:

$ pulumi import fortios:firewall/vipgrp6:Vipgrp6 labelname {{name}}
Copy

If you do not want to import arguments of block:

$ export “FORTIOS_IMPORT_TABLE”=“false”

$ pulumi import fortios:firewall/vipgrp6:Vipgrp6 labelname {{name}}
Copy

$ 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.