fortimanager.ObjectFirewallVipgrp
Explore with Pulumi AI
Configure IPv4 virtual IP groups.
The following variables have sub resource. Avoid using them together, otherwise conflicts and overwrites may occur.
dynamic_mapping
:fortimanager.ObjectFirewallVipgrpDynamicMapping
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";
const trnameObjectFirewallVip = new fortimanager.ObjectFirewallVip("trnameObjectFirewallVip", {
arpReply: "enable",
color: 1,
comment: "This is a Terraform example",
extintf: "any",
extip: "192.168.1.1",
httpRedirect: "disable",
natSourceVip: "disable",
portforward: "disable",
sslClientFallback: "enable",
sslServerAlgorithm: "client",
sslServerMaxVersion: "client",
sslServerMinVersion: "client",
type: "static-nat",
});
const trnameObjectFirewallVipgrp = new fortimanager.ObjectFirewallVipgrp("trnameObjectFirewallVipgrp", {
color: 3,
comments: "This is a Terraform example",
"interface": "any",
members: ["terr-firewall-vip"],
}, {
dependsOn: [trnameObjectFirewallVip],
});
import pulumi
import pulumi_fortimanager as fortimanager
trname_object_firewall_vip = fortimanager.ObjectFirewallVip("trnameObjectFirewallVip",
arp_reply="enable",
color=1,
comment="This is a Terraform example",
extintf="any",
extip="192.168.1.1",
http_redirect="disable",
nat_source_vip="disable",
portforward="disable",
ssl_client_fallback="enable",
ssl_server_algorithm="client",
ssl_server_max_version="client",
ssl_server_min_version="client",
type="static-nat")
trname_object_firewall_vipgrp = fortimanager.ObjectFirewallVipgrp("trnameObjectFirewallVipgrp",
color=3,
comments="This is a Terraform example",
interface="any",
members=["terr-firewall-vip"],
opts = pulumi.ResourceOptions(depends_on=[trname_object_firewall_vip]))
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/fortimanager/fortimanager"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
trnameObjectFirewallVip, err := fortimanager.NewObjectFirewallVip(ctx, "trnameObjectFirewallVip", &fortimanager.ObjectFirewallVipArgs{
ArpReply: pulumi.String("enable"),
Color: pulumi.Float64(1),
Comment: pulumi.String("This is a Terraform example"),
Extintf: pulumi.String("any"),
Extip: pulumi.String("192.168.1.1"),
HttpRedirect: pulumi.String("disable"),
NatSourceVip: pulumi.String("disable"),
Portforward: pulumi.String("disable"),
SslClientFallback: pulumi.String("enable"),
SslServerAlgorithm: pulumi.String("client"),
SslServerMaxVersion: pulumi.String("client"),
SslServerMinVersion: pulumi.String("client"),
Type: pulumi.String("static-nat"),
})
if err != nil {
return err
}
_, err = fortimanager.NewObjectFirewallVipgrp(ctx, "trnameObjectFirewallVipgrp", &fortimanager.ObjectFirewallVipgrpArgs{
Color: pulumi.Float64(3),
Comments: pulumi.String("This is a Terraform example"),
Interface: pulumi.String("any"),
Members: pulumi.StringArray{
pulumi.String("terr-firewall-vip"),
},
}, pulumi.DependsOn([]pulumi.Resource{
trnameObjectFirewallVip,
}))
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Fortimanager = Pulumi.Fortimanager;
return await Deployment.RunAsync(() =>
{
var trnameObjectFirewallVip = new Fortimanager.ObjectFirewallVip("trnameObjectFirewallVip", new()
{
ArpReply = "enable",
Color = 1,
Comment = "This is a Terraform example",
Extintf = "any",
Extip = "192.168.1.1",
HttpRedirect = "disable",
NatSourceVip = "disable",
Portforward = "disable",
SslClientFallback = "enable",
SslServerAlgorithm = "client",
SslServerMaxVersion = "client",
SslServerMinVersion = "client",
Type = "static-nat",
});
var trnameObjectFirewallVipgrp = new Fortimanager.ObjectFirewallVipgrp("trnameObjectFirewallVipgrp", new()
{
Color = 3,
Comments = "This is a Terraform example",
Interface = "any",
Members = new[]
{
"terr-firewall-vip",
},
}, new CustomResourceOptions
{
DependsOn =
{
trnameObjectFirewallVip,
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectFirewallVip;
import com.pulumi.fortimanager.ObjectFirewallVipArgs;
import com.pulumi.fortimanager.ObjectFirewallVipgrp;
import com.pulumi.fortimanager.ObjectFirewallVipgrpArgs;
import com.pulumi.resources.CustomResourceOptions;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var trnameObjectFirewallVip = new ObjectFirewallVip("trnameObjectFirewallVip", ObjectFirewallVipArgs.builder()
.arpReply("enable")
.color(1)
.comment("This is a Terraform example")
.extintf("any")
.extip("192.168.1.1")
.httpRedirect("disable")
.natSourceVip("disable")
.portforward("disable")
.sslClientFallback("enable")
.sslServerAlgorithm("client")
.sslServerMaxVersion("client")
.sslServerMinVersion("client")
.type("static-nat")
.build());
var trnameObjectFirewallVipgrp = new ObjectFirewallVipgrp("trnameObjectFirewallVipgrp", ObjectFirewallVipgrpArgs.builder()
.color(3)
.comments("This is a Terraform example")
.interface_("any")
.members("terr-firewall-vip")
.build(), CustomResourceOptions.builder()
.dependsOn(trnameObjectFirewallVip)
.build());
}
}
resources:
trnameObjectFirewallVip:
type: fortimanager:ObjectFirewallVip
properties:
arpReply: enable
color: 1
comment: This is a Terraform example
extintf: any
extip: 192.168.1.1
httpRedirect: disable
natSourceVip: disable
portforward: disable
sslClientFallback: enable
sslServerAlgorithm: client
sslServerMaxVersion: client
sslServerMinVersion: client
type: static-nat
trnameObjectFirewallVipgrp:
type: fortimanager:ObjectFirewallVipgrp
properties:
color: 3
comments: This is a Terraform example
interface: any
members:
- terr-firewall-vip
options:
dependsOn:
- ${trnameObjectFirewallVip}
Create ObjectFirewallVipgrp Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectFirewallVipgrp(name: string, args?: ObjectFirewallVipgrpArgs, opts?: CustomResourceOptions);
@overload
def ObjectFirewallVipgrp(resource_name: str,
args: Optional[ObjectFirewallVipgrpArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectFirewallVipgrp(resource_name: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
color: Optional[float] = None,
comments: Optional[str] = None,
dynamic_mappings: Optional[Sequence[ObjectFirewallVipgrpDynamicMappingArgs]] = None,
dynamic_sort_subtable: Optional[str] = None,
interface: Optional[str] = None,
members: Optional[Sequence[str]] = None,
name: Optional[str] = None,
object_firewall_vipgrp_id: Optional[str] = None,
scopetype: Optional[str] = None,
uuid: Optional[str] = None)
func NewObjectFirewallVipgrp(ctx *Context, name string, args *ObjectFirewallVipgrpArgs, opts ...ResourceOption) (*ObjectFirewallVipgrp, error)
public ObjectFirewallVipgrp(string name, ObjectFirewallVipgrpArgs? args = null, CustomResourceOptions? opts = null)
public ObjectFirewallVipgrp(String name, ObjectFirewallVipgrpArgs args)
public ObjectFirewallVipgrp(String name, ObjectFirewallVipgrpArgs args, CustomResourceOptions options)
type: fortimanager:ObjectFirewallVipgrp
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 ObjectFirewallVipgrpArgs
- 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 ObjectFirewallVipgrpArgs
- 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 ObjectFirewallVipgrpArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectFirewallVipgrpArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectFirewallVipgrpArgs
- 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 objectFirewallVipgrpResource = new Fortimanager.ObjectFirewallVipgrp("objectFirewallVipgrpResource", new()
{
Adom = "string",
Color = 0,
Comments = "string",
DynamicMappings = new[]
{
new Fortimanager.Inputs.ObjectFirewallVipgrpDynamicMappingArgs
{
_scopes = new[]
{
new Fortimanager.Inputs.ObjectFirewallVipgrpDynamicMapping_ScopeArgs
{
Name = "string",
Vdom = "string",
},
},
Color = 0,
Comments = "string",
Interface = "string",
Member = "string",
Uuid = "string",
},
},
DynamicSortSubtable = "string",
Interface = "string",
Members = new[]
{
"string",
},
Name = "string",
ObjectFirewallVipgrpId = "string",
Scopetype = "string",
Uuid = "string",
});
example, err := fortimanager.NewObjectFirewallVipgrp(ctx, "objectFirewallVipgrpResource", &fortimanager.ObjectFirewallVipgrpArgs{
Adom: pulumi.String("string"),
Color: pulumi.Float64(0),
Comments: pulumi.String("string"),
DynamicMappings: .ObjectFirewallVipgrpDynamicMappingTypeArray{
&.ObjectFirewallVipgrpDynamicMappingTypeArgs{
_scopes: .ObjectFirewallVipgrpDynamicMapping_ScopeArray{
&.ObjectFirewallVipgrpDynamicMapping_ScopeArgs{
Name: pulumi.String("string"),
Vdom: pulumi.String("string"),
},
},
Color: pulumi.Float64(0),
Comments: pulumi.String("string"),
Interface: pulumi.String("string"),
Member: pulumi.String("string"),
Uuid: pulumi.String("string"),
},
},
DynamicSortSubtable: pulumi.String("string"),
Interface: pulumi.String("string"),
Members: pulumi.StringArray{
pulumi.String("string"),
},
Name: pulumi.String("string"),
ObjectFirewallVipgrpId: pulumi.String("string"),
Scopetype: pulumi.String("string"),
Uuid: pulumi.String("string"),
})
var objectFirewallVipgrpResource = new ObjectFirewallVipgrp("objectFirewallVipgrpResource", ObjectFirewallVipgrpArgs.builder()
.adom("string")
.color(0)
.comments("string")
.dynamicMappings(ObjectFirewallVipgrpDynamicMappingArgs.builder()
._scopes(ObjectFirewallVipgrpDynamicMapping_ScopeArgs.builder()
.name("string")
.vdom("string")
.build())
.color(0)
.comments("string")
.interface_("string")
.member("string")
.uuid("string")
.build())
.dynamicSortSubtable("string")
.interface_("string")
.members("string")
.name("string")
.objectFirewallVipgrpId("string")
.scopetype("string")
.uuid("string")
.build());
object_firewall_vipgrp_resource = fortimanager.ObjectFirewallVipgrp("objectFirewallVipgrpResource",
adom="string",
color=0,
comments="string",
dynamic_mappings=[{
"_scopes": [{
"name": "string",
"vdom": "string",
}],
"color": 0,
"comments": "string",
"interface": "string",
"member": "string",
"uuid": "string",
}],
dynamic_sort_subtable="string",
interface="string",
members=["string"],
name="string",
object_firewall_vipgrp_id="string",
scopetype="string",
uuid="string")
const objectFirewallVipgrpResource = new fortimanager.ObjectFirewallVipgrp("objectFirewallVipgrpResource", {
adom: "string",
color: 0,
comments: "string",
dynamicMappings: [{
_scopes: [{
name: "string",
vdom: "string",
}],
color: 0,
comments: "string",
"interface": "string",
member: "string",
uuid: "string",
}],
dynamicSortSubtable: "string",
"interface": "string",
members: ["string"],
name: "string",
objectFirewallVipgrpId: "string",
scopetype: "string",
uuid: "string",
});
type: fortimanager:ObjectFirewallVipgrp
properties:
adom: string
color: 0
comments: string
dynamicMappings:
- _scopes:
- name: string
vdom: string
color: 0
comments: string
interface: string
member: string
uuid: string
dynamicSortSubtable: string
interface: string
members:
- string
name: string
objectFirewallVipgrpId: string
scopetype: string
uuid: string
ObjectFirewallVipgrp 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 ObjectFirewallVipgrp resource accepts the following input properties:
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Color double
- 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
Mappings List<ObjectFirewall Vipgrp Dynamic Mapping> - Dynamic_Mapping. The structure of
dynamic_mapping
block is documented below. - Dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- Interface string
- Interface.
- Members List<string>
- Member VIP objects of the group (Separate multiple objects with a space).
- Name string
- VIP group name.
- Object
Firewall stringVipgrp Id - an identifier for the resource with format {{name}}.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Uuid string
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Color float64
- 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
Mappings []ObjectFirewall Vipgrp Dynamic Mapping Type Args - Dynamic_Mapping. The structure of
dynamic_mapping
block is documented below. - Dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- Interface string
- Interface.
- Members []string
- Member VIP objects of the group (Separate multiple objects with a space).
- Name string
- VIP group name.
- Object
Firewall stringVipgrp Id - an identifier for the resource with format {{name}}.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Uuid string
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - color Double
- 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
Mappings List<ObjectFirewall Vipgrp Dynamic Mapping> - Dynamic_Mapping. The structure of
dynamic_mapping
block is documented below. - dynamic
Sort StringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- interface_ String
- Interface.
- members List<String>
- Member VIP objects of the group (Separate multiple objects with a space).
- name String
- VIP group name.
- object
Firewall StringVipgrp Id - an identifier for the resource with format {{name}}.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - uuid String
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - 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
Mappings ObjectFirewall Vipgrp Dynamic Mapping[] - Dynamic_Mapping. The structure of
dynamic_mapping
block is documented below. - dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- interface string
- Interface.
- members string[]
- Member VIP objects of the group (Separate multiple objects with a space).
- name string
- VIP group name.
- object
Firewall stringVipgrp Id - an identifier for the resource with format {{name}}.
- scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - uuid string
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - color float
- 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_
mappings Sequence[ObjectFirewall Vipgrp Dynamic Mapping Args] - Dynamic_Mapping. The structure of
dynamic_mapping
block is documented below. - dynamic_
sort_ strsubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- interface str
- Interface.
- members Sequence[str]
- Member VIP objects of the group (Separate multiple objects with a space).
- name str
- VIP group name.
- object_
firewall_ strvipgrp_ id - an identifier for the resource with format {{name}}.
- scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - uuid str
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - 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
Mappings List<Property Map> - Dynamic_Mapping. The structure of
dynamic_mapping
block is documented below. - dynamic
Sort StringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- interface String
- Interface.
- members List<String>
- Member VIP objects of the group (Separate multiple objects with a space).
- name String
- VIP group name.
- object
Firewall StringVipgrp Id - an identifier for the resource with format {{name}}.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - uuid String
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
Outputs
All input properties are implicitly available as output properties. Additionally, the ObjectFirewallVipgrp 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 ObjectFirewallVipgrp Resource
Get an existing ObjectFirewallVipgrp 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?: ObjectFirewallVipgrpState, opts?: CustomResourceOptions): ObjectFirewallVipgrp
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
color: Optional[float] = None,
comments: Optional[str] = None,
dynamic_mappings: Optional[Sequence[ObjectFirewallVipgrpDynamicMappingArgs]] = None,
dynamic_sort_subtable: Optional[str] = None,
interface: Optional[str] = None,
members: Optional[Sequence[str]] = None,
name: Optional[str] = None,
object_firewall_vipgrp_id: Optional[str] = None,
scopetype: Optional[str] = None,
uuid: Optional[str] = None) -> ObjectFirewallVipgrp
func GetObjectFirewallVipgrp(ctx *Context, name string, id IDInput, state *ObjectFirewallVipgrpState, opts ...ResourceOption) (*ObjectFirewallVipgrp, error)
public static ObjectFirewallVipgrp Get(string name, Input<string> id, ObjectFirewallVipgrpState? state, CustomResourceOptions? opts = null)
public static ObjectFirewallVipgrp get(String name, Output<String> id, ObjectFirewallVipgrpState state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectFirewallVipgrp get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Color double
- 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
Mappings List<ObjectFirewall Vipgrp Dynamic Mapping> - Dynamic_Mapping. The structure of
dynamic_mapping
block is documented below. - Dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- Interface string
- Interface.
- Members List<string>
- Member VIP objects of the group (Separate multiple objects with a space).
- Name string
- VIP group name.
- Object
Firewall stringVipgrp Id - an identifier for the resource with format {{name}}.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Uuid string
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Color float64
- 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
Mappings []ObjectFirewall Vipgrp Dynamic Mapping Type Args - Dynamic_Mapping. The structure of
dynamic_mapping
block is documented below. - Dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- Interface string
- Interface.
- Members []string
- Member VIP objects of the group (Separate multiple objects with a space).
- Name string
- VIP group name.
- Object
Firewall stringVipgrp Id - an identifier for the resource with format {{name}}.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Uuid string
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - color Double
- 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
Mappings List<ObjectFirewall Vipgrp Dynamic Mapping> - Dynamic_Mapping. The structure of
dynamic_mapping
block is documented below. - dynamic
Sort StringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- interface_ String
- Interface.
- members List<String>
- Member VIP objects of the group (Separate multiple objects with a space).
- name String
- VIP group name.
- object
Firewall StringVipgrp Id - an identifier for the resource with format {{name}}.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - uuid String
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - 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
Mappings ObjectFirewall Vipgrp Dynamic Mapping[] - Dynamic_Mapping. The structure of
dynamic_mapping
block is documented below. - dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- interface string
- Interface.
- members string[]
- Member VIP objects of the group (Separate multiple objects with a space).
- name string
- VIP group name.
- object
Firewall stringVipgrp Id - an identifier for the resource with format {{name}}.
- scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - uuid string
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - color float
- 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_
mappings Sequence[ObjectFirewall Vipgrp Dynamic Mapping Args] - Dynamic_Mapping. The structure of
dynamic_mapping
block is documented below. - dynamic_
sort_ strsubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- interface str
- Interface.
- members Sequence[str]
- Member VIP objects of the group (Separate multiple objects with a space).
- name str
- VIP group name.
- object_
firewall_ strvipgrp_ id - an identifier for the resource with format {{name}}.
- scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - uuid str
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - 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
Mappings List<Property Map> - Dynamic_Mapping. The structure of
dynamic_mapping
block is documented below. - dynamic
Sort StringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- interface String
- Interface.
- members List<String>
- Member VIP objects of the group (Separate multiple objects with a space).
- name String
- VIP group name.
- object
Firewall StringVipgrp Id - an identifier for the resource with format {{name}}.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - uuid String
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
Supporting Types
ObjectFirewallVipgrpDynamicMapping, ObjectFirewallVipgrpDynamicMappingArgs
- Color double
- 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.
- Interface string
- Interface.
- Member string
- Member VIP objects of the group (Separate multiple objects with a space).
- Uuid string
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- _
scopes List<ObjectFirewall Vipgrp Dynamic Mapping_Scope> - _Scope. The structure of
_scope
block is documented below.
- Color float64
- 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.
- Interface string
- Interface.
- Member string
- Member VIP objects of the group (Separate multiple objects with a space).
- Uuid string
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- _
scopes []ObjectFirewall Vipgrp Dynamic Mapping_Scope - _Scope. The structure of
_scope
block is documented below.
- _
scopes List<ObjectFirewall Vipgrp Dynamic Mapping_Scope> - _Scope. The structure of
_scope
block is documented below. - color Double
- 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.
- interface_ String
- Interface.
- member String
- Member VIP objects of the group (Separate multiple objects with a space).
- uuid String
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- _
scopes ObjectFirewall Vipgrp Dynamic Mapping_Scope[] - _Scope. The structure of
_scope
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.
- interface string
- Interface.
- member string
- Member VIP objects of the group (Separate multiple objects with a space).
- uuid string
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- _
scopes Sequence[ObjectFirewall Vipgrp Dynamic Mapping_Scope] - _Scope. The structure of
_scope
block is documented below. - color float
- 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.
- interface str
- Interface.
- member str
- Member VIP objects of the group (Separate multiple objects with a space).
- uuid str
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- _
scopes List<Property Map> - _Scope. The structure of
_scope
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.
- interface String
- Interface.
- member String
- Member VIP objects of the group (Separate multiple objects with a space).
- uuid String
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
ObjectFirewallVipgrpDynamicMapping_Scope, ObjectFirewallVipgrpDynamicMapping_ScopeArgs
Import
ObjectFirewall Vipgrp can be imported using any of these accepted formats:
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectFirewallVipgrp:ObjectFirewallVipgrp labelname {{name}}
$ unset “FORTIMANAGER_IMPORT_TABLE”
-> Hint: The scopetype and adom for import will directly inherit the scopetype and adom configuration of the provider.
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- fortimanager fortinetdev/terraform-provider-fortimanager
- License
- Notes
- This Pulumi package is based on the
fortimanager
Terraform Provider.