fortimanager.ObjectWebproxyForwardservergroup
Explore with Pulumi AI
Configure a forward server group consisting or multiple forward servers. Supports failover and load balancing.
The following variables have sub resource. Avoid using them together, otherwise conflicts and overwrites may occur.
server_list
:fortimanager.ObjectWebproxyForwardservergroupServerlist
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";
const trname = new fortimanager.ObjectWebproxyForwardservergroup("trname", {
affinity: "enable",
groupDownOption: "block",
ldbMethod: "active-passive",
});
import pulumi
import pulumi_fortimanager as fortimanager
trname = fortimanager.ObjectWebproxyForwardservergroup("trname",
affinity="enable",
group_down_option="block",
ldb_method="active-passive")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/fortimanager/fortimanager"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := fortimanager.NewObjectWebproxyForwardservergroup(ctx, "trname", &fortimanager.ObjectWebproxyForwardservergroupArgs{
Affinity: pulumi.String("enable"),
GroupDownOption: pulumi.String("block"),
LdbMethod: pulumi.String("active-passive"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Fortimanager = Pulumi.Fortimanager;
return await Deployment.RunAsync(() =>
{
var trname = new Fortimanager.ObjectWebproxyForwardservergroup("trname", new()
{
Affinity = "enable",
GroupDownOption = "block",
LdbMethod = "active-passive",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectWebproxyForwardservergroup;
import com.pulumi.fortimanager.ObjectWebproxyForwardservergroupArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var trname = new ObjectWebproxyForwardservergroup("trname", ObjectWebproxyForwardservergroupArgs.builder()
.affinity("enable")
.groupDownOption("block")
.ldbMethod("active-passive")
.build());
}
}
resources:
trname:
type: fortimanager:ObjectWebproxyForwardservergroup
properties:
affinity: enable
groupDownOption: block
ldbMethod: active-passive
Create ObjectWebproxyForwardservergroup Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectWebproxyForwardservergroup(name: string, args?: ObjectWebproxyForwardservergroupArgs, opts?: CustomResourceOptions);
@overload
def ObjectWebproxyForwardservergroup(resource_name: str,
args: Optional[ObjectWebproxyForwardservergroupArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectWebproxyForwardservergroup(resource_name: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
affinity: Optional[str] = None,
dynamic_sort_subtable: Optional[str] = None,
group_down_option: Optional[str] = None,
ldb_method: Optional[str] = None,
name: Optional[str] = None,
object_webproxy_forwardservergroup_id: Optional[str] = None,
scopetype: Optional[str] = None,
server_lists: Optional[Sequence[ObjectWebproxyForwardservergroupServerListArgs]] = None)
func NewObjectWebproxyForwardservergroup(ctx *Context, name string, args *ObjectWebproxyForwardservergroupArgs, opts ...ResourceOption) (*ObjectWebproxyForwardservergroup, error)
public ObjectWebproxyForwardservergroup(string name, ObjectWebproxyForwardservergroupArgs? args = null, CustomResourceOptions? opts = null)
public ObjectWebproxyForwardservergroup(String name, ObjectWebproxyForwardservergroupArgs args)
public ObjectWebproxyForwardservergroup(String name, ObjectWebproxyForwardservergroupArgs args, CustomResourceOptions options)
type: fortimanager:ObjectWebproxyForwardservergroup
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 ObjectWebproxyForwardservergroupArgs
- 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 ObjectWebproxyForwardservergroupArgs
- 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 ObjectWebproxyForwardservergroupArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectWebproxyForwardservergroupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectWebproxyForwardservergroupArgs
- 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 objectWebproxyForwardservergroupResource = new Fortimanager.ObjectWebproxyForwardservergroup("objectWebproxyForwardservergroupResource", new()
{
Adom = "string",
Affinity = "string",
DynamicSortSubtable = "string",
GroupDownOption = "string",
LdbMethod = "string",
Name = "string",
ObjectWebproxyForwardservergroupId = "string",
Scopetype = "string",
ServerLists = new[]
{
new Fortimanager.Inputs.ObjectWebproxyForwardservergroupServerListArgs
{
Name = "string",
Weight = 0,
},
},
});
example, err := fortimanager.NewObjectWebproxyForwardservergroup(ctx, "objectWebproxyForwardservergroupResource", &fortimanager.ObjectWebproxyForwardservergroupArgs{
Adom: pulumi.String("string"),
Affinity: pulumi.String("string"),
DynamicSortSubtable: pulumi.String("string"),
GroupDownOption: pulumi.String("string"),
LdbMethod: pulumi.String("string"),
Name: pulumi.String("string"),
ObjectWebproxyForwardservergroupId: pulumi.String("string"),
Scopetype: pulumi.String("string"),
ServerLists: .ObjectWebproxyForwardservergroupServerListTypeArray{
&.ObjectWebproxyForwardservergroupServerListTypeArgs{
Name: pulumi.String("string"),
Weight: pulumi.Float64(0),
},
},
})
var objectWebproxyForwardservergroupResource = new ObjectWebproxyForwardservergroup("objectWebproxyForwardservergroupResource", ObjectWebproxyForwardservergroupArgs.builder()
.adom("string")
.affinity("string")
.dynamicSortSubtable("string")
.groupDownOption("string")
.ldbMethod("string")
.name("string")
.objectWebproxyForwardservergroupId("string")
.scopetype("string")
.serverLists(ObjectWebproxyForwardservergroupServerListArgs.builder()
.name("string")
.weight(0)
.build())
.build());
object_webproxy_forwardservergroup_resource = fortimanager.ObjectWebproxyForwardservergroup("objectWebproxyForwardservergroupResource",
adom="string",
affinity="string",
dynamic_sort_subtable="string",
group_down_option="string",
ldb_method="string",
name="string",
object_webproxy_forwardservergroup_id="string",
scopetype="string",
server_lists=[{
"name": "string",
"weight": 0,
}])
const objectWebproxyForwardservergroupResource = new fortimanager.ObjectWebproxyForwardservergroup("objectWebproxyForwardservergroupResource", {
adom: "string",
affinity: "string",
dynamicSortSubtable: "string",
groupDownOption: "string",
ldbMethod: "string",
name: "string",
objectWebproxyForwardservergroupId: "string",
scopetype: "string",
serverLists: [{
name: "string",
weight: 0,
}],
});
type: fortimanager:ObjectWebproxyForwardservergroup
properties:
adom: string
affinity: string
dynamicSortSubtable: string
groupDownOption: string
ldbMethod: string
name: string
objectWebproxyForwardservergroupId: string
scopetype: string
serverLists:
- name: string
weight: 0
ObjectWebproxyForwardservergroup 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 ObjectWebproxyForwardservergroup 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. - Affinity string
- Enable/disable affinity, attaching a source-ip's traffic to the assigned forwarding server until the forward-server-affinity-timeout is reached (under web-proxy global). Valid values:
disable
,enable
. - 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.
- Group
Down stringOption - Action to take when all of the servers in the forward server group are down: block sessions until at least one server is back up or pass sessions to their destination. Valid values:
block
,pass
. - Ldb
Method string - Load balance method: weighted or least-session. Valid values:
weighted
,least-session
,active-passive
. - Name string
- Configure a forward server group consisting one or multiple forward servers. Supports failover and load balancing.
- Object
Webproxy stringForwardservergroup 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
. - Server
Lists List<ObjectWebproxy Forwardservergroup Server List> - Server-List. The structure of
server_list
block is documented below.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Affinity string
- Enable/disable affinity, attaching a source-ip's traffic to the assigned forwarding server until the forward-server-affinity-timeout is reached (under web-proxy global). Valid values:
disable
,enable
. - 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.
- Group
Down stringOption - Action to take when all of the servers in the forward server group are down: block sessions until at least one server is back up or pass sessions to their destination. Valid values:
block
,pass
. - Ldb
Method string - Load balance method: weighted or least-session. Valid values:
weighted
,least-session
,active-passive
. - Name string
- Configure a forward server group consisting one or multiple forward servers. Supports failover and load balancing.
- Object
Webproxy stringForwardservergroup 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
. - Server
Lists []ObjectWebproxy Forwardservergroup Server List Type Args - Server-List. The structure of
server_list
block is documented below.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - affinity String
- Enable/disable affinity, attaching a source-ip's traffic to the assigned forwarding server until the forward-server-affinity-timeout is reached (under web-proxy global). Valid values:
disable
,enable
. - 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.
- group
Down StringOption - Action to take when all of the servers in the forward server group are down: block sessions until at least one server is back up or pass sessions to their destination. Valid values:
block
,pass
. - ldb
Method String - Load balance method: weighted or least-session. Valid values:
weighted
,least-session
,active-passive
. - name String
- Configure a forward server group consisting one or multiple forward servers. Supports failover and load balancing.
- object
Webproxy StringForwardservergroup 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
. - server
Lists List<ObjectWebproxy Forwardservergroup Server List> - Server-List. The structure of
server_list
block is documented below.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - affinity string
- Enable/disable affinity, attaching a source-ip's traffic to the assigned forwarding server until the forward-server-affinity-timeout is reached (under web-proxy global). Valid values:
disable
,enable
. - 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.
- group
Down stringOption - Action to take when all of the servers in the forward server group are down: block sessions until at least one server is back up or pass sessions to their destination. Valid values:
block
,pass
. - ldb
Method string - Load balance method: weighted or least-session. Valid values:
weighted
,least-session
,active-passive
. - name string
- Configure a forward server group consisting one or multiple forward servers. Supports failover and load balancing.
- object
Webproxy stringForwardservergroup 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
. - server
Lists ObjectWebproxy Forwardservergroup Server List[] - Server-List. The structure of
server_list
block is documented below.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - affinity str
- Enable/disable affinity, attaching a source-ip's traffic to the assigned forwarding server until the forward-server-affinity-timeout is reached (under web-proxy global). Valid values:
disable
,enable
. - 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.
- group_
down_ stroption - Action to take when all of the servers in the forward server group are down: block sessions until at least one server is back up or pass sessions to their destination. Valid values:
block
,pass
. - ldb_
method str - Load balance method: weighted or least-session. Valid values:
weighted
,least-session
,active-passive
. - name str
- Configure a forward server group consisting one or multiple forward servers. Supports failover and load balancing.
- object_
webproxy_ strforwardservergroup_ 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
. - server_
lists Sequence[ObjectWebproxy Forwardservergroup Server List Args] - Server-List. The structure of
server_list
block is documented below.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - affinity String
- Enable/disable affinity, attaching a source-ip's traffic to the assigned forwarding server until the forward-server-affinity-timeout is reached (under web-proxy global). Valid values:
disable
,enable
. - 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.
- group
Down StringOption - Action to take when all of the servers in the forward server group are down: block sessions until at least one server is back up or pass sessions to their destination. Valid values:
block
,pass
. - ldb
Method String - Load balance method: weighted or least-session. Valid values:
weighted
,least-session
,active-passive
. - name String
- Configure a forward server group consisting one or multiple forward servers. Supports failover and load balancing.
- object
Webproxy StringForwardservergroup 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
. - server
Lists List<Property Map> - Server-List. The structure of
server_list
block is documented below.
Outputs
All input properties are implicitly available as output properties. Additionally, the ObjectWebproxyForwardservergroup 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 ObjectWebproxyForwardservergroup Resource
Get an existing ObjectWebproxyForwardservergroup 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?: ObjectWebproxyForwardservergroupState, opts?: CustomResourceOptions): ObjectWebproxyForwardservergroup
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
affinity: Optional[str] = None,
dynamic_sort_subtable: Optional[str] = None,
group_down_option: Optional[str] = None,
ldb_method: Optional[str] = None,
name: Optional[str] = None,
object_webproxy_forwardservergroup_id: Optional[str] = None,
scopetype: Optional[str] = None,
server_lists: Optional[Sequence[ObjectWebproxyForwardservergroupServerListArgs]] = None) -> ObjectWebproxyForwardservergroup
func GetObjectWebproxyForwardservergroup(ctx *Context, name string, id IDInput, state *ObjectWebproxyForwardservergroupState, opts ...ResourceOption) (*ObjectWebproxyForwardservergroup, error)
public static ObjectWebproxyForwardservergroup Get(string name, Input<string> id, ObjectWebproxyForwardservergroupState? state, CustomResourceOptions? opts = null)
public static ObjectWebproxyForwardservergroup get(String name, Output<String> id, ObjectWebproxyForwardservergroupState state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectWebproxyForwardservergroup 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. - Affinity string
- Enable/disable affinity, attaching a source-ip's traffic to the assigned forwarding server until the forward-server-affinity-timeout is reached (under web-proxy global). Valid values:
disable
,enable
. - 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.
- Group
Down stringOption - Action to take when all of the servers in the forward server group are down: block sessions until at least one server is back up or pass sessions to their destination. Valid values:
block
,pass
. - Ldb
Method string - Load balance method: weighted or least-session. Valid values:
weighted
,least-session
,active-passive
. - Name string
- Configure a forward server group consisting one or multiple forward servers. Supports failover and load balancing.
- Object
Webproxy stringForwardservergroup 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
. - Server
Lists List<ObjectWebproxy Forwardservergroup Server List> - Server-List. The structure of
server_list
block is documented below.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Affinity string
- Enable/disable affinity, attaching a source-ip's traffic to the assigned forwarding server until the forward-server-affinity-timeout is reached (under web-proxy global). Valid values:
disable
,enable
. - 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.
- Group
Down stringOption - Action to take when all of the servers in the forward server group are down: block sessions until at least one server is back up or pass sessions to their destination. Valid values:
block
,pass
. - Ldb
Method string - Load balance method: weighted or least-session. Valid values:
weighted
,least-session
,active-passive
. - Name string
- Configure a forward server group consisting one or multiple forward servers. Supports failover and load balancing.
- Object
Webproxy stringForwardservergroup 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
. - Server
Lists []ObjectWebproxy Forwardservergroup Server List Type Args - Server-List. The structure of
server_list
block is documented below.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - affinity String
- Enable/disable affinity, attaching a source-ip's traffic to the assigned forwarding server until the forward-server-affinity-timeout is reached (under web-proxy global). Valid values:
disable
,enable
. - 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.
- group
Down StringOption - Action to take when all of the servers in the forward server group are down: block sessions until at least one server is back up or pass sessions to their destination. Valid values:
block
,pass
. - ldb
Method String - Load balance method: weighted or least-session. Valid values:
weighted
,least-session
,active-passive
. - name String
- Configure a forward server group consisting one or multiple forward servers. Supports failover and load balancing.
- object
Webproxy StringForwardservergroup 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
. - server
Lists List<ObjectWebproxy Forwardservergroup Server List> - Server-List. The structure of
server_list
block is documented below.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - affinity string
- Enable/disable affinity, attaching a source-ip's traffic to the assigned forwarding server until the forward-server-affinity-timeout is reached (under web-proxy global). Valid values:
disable
,enable
. - 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.
- group
Down stringOption - Action to take when all of the servers in the forward server group are down: block sessions until at least one server is back up or pass sessions to their destination. Valid values:
block
,pass
. - ldb
Method string - Load balance method: weighted or least-session. Valid values:
weighted
,least-session
,active-passive
. - name string
- Configure a forward server group consisting one or multiple forward servers. Supports failover and load balancing.
- object
Webproxy stringForwardservergroup 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
. - server
Lists ObjectWebproxy Forwardservergroup Server List[] - Server-List. The structure of
server_list
block is documented below.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - affinity str
- Enable/disable affinity, attaching a source-ip's traffic to the assigned forwarding server until the forward-server-affinity-timeout is reached (under web-proxy global). Valid values:
disable
,enable
. - 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.
- group_
down_ stroption - Action to take when all of the servers in the forward server group are down: block sessions until at least one server is back up or pass sessions to their destination. Valid values:
block
,pass
. - ldb_
method str - Load balance method: weighted or least-session. Valid values:
weighted
,least-session
,active-passive
. - name str
- Configure a forward server group consisting one or multiple forward servers. Supports failover and load balancing.
- object_
webproxy_ strforwardservergroup_ 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
. - server_
lists Sequence[ObjectWebproxy Forwardservergroup Server List Args] - Server-List. The structure of
server_list
block is documented below.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - affinity String
- Enable/disable affinity, attaching a source-ip's traffic to the assigned forwarding server until the forward-server-affinity-timeout is reached (under web-proxy global). Valid values:
disable
,enable
. - 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.
- group
Down StringOption - Action to take when all of the servers in the forward server group are down: block sessions until at least one server is back up or pass sessions to their destination. Valid values:
block
,pass
. - ldb
Method String - Load balance method: weighted or least-session. Valid values:
weighted
,least-session
,active-passive
. - name String
- Configure a forward server group consisting one or multiple forward servers. Supports failover and load balancing.
- object
Webproxy StringForwardservergroup 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
. - server
Lists List<Property Map> - Server-List. The structure of
server_list
block is documented below.
Supporting Types
ObjectWebproxyForwardservergroupServerList, ObjectWebproxyForwardservergroupServerListArgs
Import
ObjectWebProxy ForwardServerGroup can be imported using any of these accepted formats:
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectWebproxyForwardservergroup:ObjectWebproxyForwardservergroup 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.