fortios.firewall.Vipgrp
Explore with Pulumi AI
Configure IPv4 virtual IP groups.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortios from "@pulumiverse/fortios";
const trname1 = new fortios.firewall.Vip("trname1", {
extintf: "any",
extport: "0-65535",
extip: "2.0.0.1-2.0.0.4",
mappedips: [{
range: "3.0.0.0-3.0.0.3",
}],
});
const trname = new fortios.firewall.Vipgrp("trname", {
color: 0,
"interface": "any",
members: [{
name: trname1.name,
}],
});
import pulumi
import pulumiverse_fortios as fortios
trname1 = fortios.firewall.Vip("trname1",
extintf="any",
extport="0-65535",
extip="2.0.0.1-2.0.0.4",
mappedips=[fortios.firewall.VipMappedipArgs(
range="3.0.0.0-3.0.0.3",
)])
trname = fortios.firewall.Vipgrp("trname",
color=0,
interface="any",
members=[fortios.firewall.VipgrpMemberArgs(
name=trname1.name,
)])
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.NewVip(ctx, "trname1", &firewall.VipArgs{
Extintf: pulumi.String("any"),
Extport: pulumi.String("0-65535"),
Extip: pulumi.String("2.0.0.1-2.0.0.4"),
Mappedips: firewall.VipMappedipArray{
&firewall.VipMappedipArgs{
Range: pulumi.String("3.0.0.0-3.0.0.3"),
},
},
})
if err != nil {
return err
}
_, err = firewall.NewVipgrp(ctx, "trname", &firewall.VipgrpArgs{
Color: pulumi.Int(0),
Interface: pulumi.String("any"),
Members: firewall.VipgrpMemberArray{
&firewall.VipgrpMemberArgs{
Name: trname1.Name,
},
},
})
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 trname1 = new Fortios.Firewall.Vip("trname1", new()
{
Extintf = "any",
Extport = "0-65535",
Extip = "2.0.0.1-2.0.0.4",
Mappedips = new[]
{
new Fortios.Firewall.Inputs.VipMappedipArgs
{
Range = "3.0.0.0-3.0.0.3",
},
},
});
var trname = new Fortios.Firewall.Vipgrp("trname", new()
{
Color = 0,
Interface = "any",
Members = new[]
{
new Fortios.Firewall.Inputs.VipgrpMemberArgs
{
Name = trname1.Name,
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortios.firewall.Vip;
import com.pulumi.fortios.firewall.VipArgs;
import com.pulumi.fortios.firewall.inputs.VipMappedipArgs;
import com.pulumi.fortios.firewall.Vipgrp;
import com.pulumi.fortios.firewall.VipgrpArgs;
import com.pulumi.fortios.firewall.inputs.VipgrpMemberArgs;
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 Vip("trname1", VipArgs.builder()
.extintf("any")
.extport("0-65535")
.extip("2.0.0.1-2.0.0.4")
.mappedips(VipMappedipArgs.builder()
.range("3.0.0.0-3.0.0.3")
.build())
.build());
var trname = new Vipgrp("trname", VipgrpArgs.builder()
.color(0)
.interface_("any")
.members(VipgrpMemberArgs.builder()
.name(trname1.name())
.build())
.build());
}
}
resources:
trname1:
type: fortios:firewall:Vip
properties:
extintf: any
extport: 0-65535
extip: 2.0.0.1-2.0.0.4
mappedips:
- range: 3.0.0.0-3.0.0.3
trname:
type: fortios:firewall:Vipgrp
properties:
color: 0
interface: any
members:
- name: ${trname1.name}
Create Vipgrp Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Vipgrp(name: string, args: VipgrpArgs, opts?: CustomResourceOptions);
@overload
def Vipgrp(resource_name: str,
args: VipgrpArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Vipgrp(resource_name: str,
opts: Optional[ResourceOptions] = None,
interface: Optional[str] = None,
members: Optional[Sequence[VipgrpMemberArgs]] = 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 NewVipgrp(ctx *Context, name string, args VipgrpArgs, opts ...ResourceOption) (*Vipgrp, error)
public Vipgrp(string name, VipgrpArgs args, CustomResourceOptions? opts = null)
public Vipgrp(String name, VipgrpArgs args)
public Vipgrp(String name, VipgrpArgs args, CustomResourceOptions options)
type: fortios:firewall:Vipgrp
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 VipgrpArgs
- 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 VipgrpArgs
- 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 VipgrpArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args VipgrpArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args VipgrpArgs
- 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 vipgrpResource = new Fortios.Firewall.Vipgrp("vipgrpResource", new()
{
Interface = "string",
Members = new[]
{
new Fortios.Firewall.Inputs.VipgrpMemberArgs
{
Name = "string",
},
},
Color = 0,
Comments = "string",
DynamicSortSubtable = "string",
GetAllTables = "string",
Name = "string",
Uuid = "string",
Vdomparam = "string",
});
example, err := firewall.NewVipgrp(ctx, "vipgrpResource", &firewall.VipgrpArgs{
Interface: pulumi.String("string"),
Members: firewall.VipgrpMemberArray{
&firewall.VipgrpMemberArgs{
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"),
})
var vipgrpResource = new Vipgrp("vipgrpResource", VipgrpArgs.builder()
.interface_("string")
.members(VipgrpMemberArgs.builder()
.name("string")
.build())
.color(0)
.comments("string")
.dynamicSortSubtable("string")
.getAllTables("string")
.name("string")
.uuid("string")
.vdomparam("string")
.build());
vipgrp_resource = fortios.firewall.Vipgrp("vipgrpResource",
interface="string",
members=[fortios.firewall.VipgrpMemberArgs(
name="string",
)],
color=0,
comments="string",
dynamic_sort_subtable="string",
get_all_tables="string",
name="string",
uuid="string",
vdomparam="string")
const vipgrpResource = new fortios.firewall.Vipgrp("vipgrpResource", {
"interface": "string",
members: [{
name: "string",
}],
color: 0,
comments: "string",
dynamicSortSubtable: "string",
getAllTables: "string",
name: "string",
uuid: "string",
vdomparam: "string",
});
type: fortios:firewall:Vipgrp
properties:
color: 0
comments: string
dynamicSortSubtable: string
getAllTables: string
interface: string
members:
- name: string
name: string
uuid: string
vdomparam: string
Vipgrp 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 Vipgrp resource accepts the following input properties:
- Interface string
- interface
- Members
List<Pulumiverse.
Fortios. Firewall. Inputs. Vipgrp Member> - 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.
- 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 ].
- 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
- VIP group name.
- Uuid string
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- 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.
- Interface string
- interface
- Members
[]Vipgrp
Member Args - 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.
- 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 ].
- 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
- VIP group name.
- Uuid string
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- 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.
- interface_ String
- interface
- members
List<Vipgrp
Member> - 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.
- 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 ].
- 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
- VIP group name.
- uuid String
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- 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.
- interface string
- interface
- members
Vipgrp
Member[] - 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.
- 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 ].
- 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
- VIP group name.
- uuid string
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- 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.
- interface str
- interface
- members
Sequence[Vipgrp
Member Args] - 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_ 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 ].
- 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
- VIP group name.
- uuid str
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- 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.
- interface String
- interface
- members 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.
- 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 ].
- 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
- VIP group name.
- uuid String
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- 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 Vipgrp 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 Vipgrp Resource
Get an existing Vipgrp 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?: VipgrpState, opts?: CustomResourceOptions): Vipgrp
@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,
interface: Optional[str] = None,
members: Optional[Sequence[VipgrpMemberArgs]] = None,
name: Optional[str] = None,
uuid: Optional[str] = None,
vdomparam: Optional[str] = None) -> Vipgrp
func GetVipgrp(ctx *Context, name string, id IDInput, state *VipgrpState, opts ...ResourceOption) (*Vipgrp, error)
public static Vipgrp Get(string name, Input<string> id, VipgrpState? state, CustomResourceOptions? opts = null)
public static Vipgrp get(String name, Output<String> id, VipgrpState 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.
- 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.
- 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 ].
- 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.
- Interface string
- interface
- Members
List<Pulumiverse.
Fortios. Firewall. Inputs. Vipgrp Member> - Member VIP objects of the group (Separate multiple objects with a space). The structure of
member
block is documented below. - Name string
- VIP group name.
- Uuid string
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- 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.
- 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.
- 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 ].
- 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.
- Interface string
- interface
- Members
[]Vipgrp
Member Args - Member VIP objects of the group (Separate multiple objects with a space). The structure of
member
block is documented below. - Name string
- VIP group name.
- Uuid string
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- 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.
- 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.
- 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 ].
- 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.
- interface_ String
- interface
- members
List<Vipgrp
Member> - Member VIP objects of the group (Separate multiple objects with a space). The structure of
member
block is documented below. - name String
- VIP group name.
- uuid String
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- 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.
- 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.
- 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 ].
- 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.
- interface string
- interface
- members
Vipgrp
Member[] - Member VIP objects of the group (Separate multiple objects with a space). The structure of
member
block is documented below. - name string
- VIP group name.
- uuid string
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- 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.
- 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_ 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 ].
- 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.
- interface str
- interface
- members
Sequence[Vipgrp
Member Args] - Member VIP objects of the group (Separate multiple objects with a space). The structure of
member
block is documented below. - name str
- VIP group name.
- uuid str
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- 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.
- 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.
- 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 ].
- 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.
- interface String
- interface
- 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
- VIP group name.
- uuid String
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- 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
VipgrpMember, VipgrpMemberArgs
- Name string
- VIP name.
- Name string
- VIP name.
- name String
- VIP name.
- name string
- VIP name.
- name str
- VIP name.
- name String
- VIP name.
Import
Firewall Vipgrp can be imported using any of these accepted formats:
$ pulumi import fortios:firewall/vipgrp:Vipgrp labelname {{name}}
If you do not want to import arguments of block:
$ export “FORTIOS_IMPORT_TABLE”=“false”
$ pulumi import fortios:firewall/vipgrp:Vipgrp 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.