outscale.LoadBalancerPolicy
Explore with Pulumi AI
Manages a load balancer policy.
For more information on this resource, see the User Guide.
For more information on this resource actions, see the API documentation.
Example Usage
Create a load balancer policy based on browser
import * as pulumi from "@pulumi/pulumi";
import * as outscale from "@pulumi/outscale";
const loadBalancer01 = new outscale.LoadBalancer("loadBalancer01", {
listeners: [{
backendPort: 8080,
backendProtocol: "HTTP",
loadBalancerPort: 8080,
loadBalancerProtocol: "HTTP",
}],
loadBalancerName: "terraform-lb-for-browser-policy",
subregionNames: ["eu-west-2a"],
});
const loadBalancerPolicy01 = new outscale.LoadBalancerPolicy("loadBalancerPolicy01", {
loadBalancerName: "terraform-lb-for-browser-policy",
policyName: "terraform-lb-browser-policy",
policyType: "load_balancer",
});
import pulumi
import pulumi_outscale as outscale
load_balancer01 = outscale.LoadBalancer("loadBalancer01",
listeners=[{
"backend_port": 8080,
"backend_protocol": "HTTP",
"load_balancer_port": 8080,
"load_balancer_protocol": "HTTP",
}],
load_balancer_name="terraform-lb-for-browser-policy",
subregion_names=["eu-west-2a"])
load_balancer_policy01 = outscale.LoadBalancerPolicy("loadBalancerPolicy01",
load_balancer_name="terraform-lb-for-browser-policy",
policy_name="terraform-lb-browser-policy",
policy_type="load_balancer")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/outscale/outscale"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := outscale.NewLoadBalancer(ctx, "loadBalancer01", &outscale.LoadBalancerArgs{
Listeners: outscale.LoadBalancerListenerArray{
&outscale.LoadBalancerListenerArgs{
BackendPort: pulumi.Float64(8080),
BackendProtocol: pulumi.String("HTTP"),
LoadBalancerPort: pulumi.Float64(8080),
LoadBalancerProtocol: pulumi.String("HTTP"),
},
},
LoadBalancerName: pulumi.String("terraform-lb-for-browser-policy"),
SubregionNames: pulumi.StringArray{
pulumi.String("eu-west-2a"),
},
})
if err != nil {
return err
}
_, err = outscale.NewLoadBalancerPolicy(ctx, "loadBalancerPolicy01", &outscale.LoadBalancerPolicyArgs{
LoadBalancerName: pulumi.String("terraform-lb-for-browser-policy"),
PolicyName: pulumi.String("terraform-lb-browser-policy"),
PolicyType: pulumi.String("load_balancer"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Outscale = Pulumi.Outscale;
return await Deployment.RunAsync(() =>
{
var loadBalancer01 = new Outscale.LoadBalancer("loadBalancer01", new()
{
Listeners = new[]
{
new Outscale.Inputs.LoadBalancerListenerArgs
{
BackendPort = 8080,
BackendProtocol = "HTTP",
LoadBalancerPort = 8080,
LoadBalancerProtocol = "HTTP",
},
},
LoadBalancerName = "terraform-lb-for-browser-policy",
SubregionNames = new[]
{
"eu-west-2a",
},
});
var loadBalancerPolicy01 = new Outscale.LoadBalancerPolicy("loadBalancerPolicy01", new()
{
LoadBalancerName = "terraform-lb-for-browser-policy",
PolicyName = "terraform-lb-browser-policy",
PolicyType = "load_balancer",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.outscale.LoadBalancer;
import com.pulumi.outscale.LoadBalancerArgs;
import com.pulumi.outscale.inputs.LoadBalancerListenerArgs;
import com.pulumi.outscale.LoadBalancerPolicy;
import com.pulumi.outscale.LoadBalancerPolicyArgs;
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 loadBalancer01 = new LoadBalancer("loadBalancer01", LoadBalancerArgs.builder()
.listeners(LoadBalancerListenerArgs.builder()
.backendPort(8080)
.backendProtocol("HTTP")
.loadBalancerPort(8080)
.loadBalancerProtocol("HTTP")
.build())
.loadBalancerName("terraform-lb-for-browser-policy")
.subregionNames("eu-west-2a")
.build());
var loadBalancerPolicy01 = new LoadBalancerPolicy("loadBalancerPolicy01", LoadBalancerPolicyArgs.builder()
.loadBalancerName("terraform-lb-for-browser-policy")
.policyName("terraform-lb-browser-policy")
.policyType("load_balancer")
.build());
}
}
resources:
loadBalancer01:
type: outscale:LoadBalancer
properties:
listeners:
- backendPort: 8080
backendProtocol: HTTP
loadBalancerPort: 8080
loadBalancerProtocol: HTTP
loadBalancerName: terraform-lb-for-browser-policy
subregionNames:
- eu-west-2a
loadBalancerPolicy01:
type: outscale:LoadBalancerPolicy
properties:
loadBalancerName: terraform-lb-for-browser-policy
policyName: terraform-lb-browser-policy
policyType: load_balancer
Create a load balancer policy based on application cookie
import * as pulumi from "@pulumi/pulumi";
import * as outscale from "@pulumi/outscale";
const loadBalancer02 = new outscale.LoadBalancer("loadBalancer02", {
loadBalancerName: "terraform-lb-for-app-policy",
subregionNames: [`${_var.region}b`],
listeners: [{
loadBalancerPort: 80,
loadBalancerProtocol: "TCP",
backendPort: 80,
backendProtocol: "TCP",
}],
});
const loadBalancerPolicy02 = new outscale.LoadBalancerPolicy("loadBalancerPolicy02", {
loadBalancerName: loadBalancer02.loadBalancerName,
policyName: "terraform-lb-app-policy",
policyType: "app",
cookieName: "cookie01",
}, {
dependsOn: [loadBalancer02],
});
import pulumi
import pulumi_outscale as outscale
load_balancer02 = outscale.LoadBalancer("loadBalancer02",
load_balancer_name="terraform-lb-for-app-policy",
subregion_names=[f"{var['region']}b"],
listeners=[{
"load_balancer_port": 80,
"load_balancer_protocol": "TCP",
"backend_port": 80,
"backend_protocol": "TCP",
}])
load_balancer_policy02 = outscale.LoadBalancerPolicy("loadBalancerPolicy02",
load_balancer_name=load_balancer02.load_balancer_name,
policy_name="terraform-lb-app-policy",
policy_type="app",
cookie_name="cookie01",
opts = pulumi.ResourceOptions(depends_on=[load_balancer02]))
package main
import (
"fmt"
"github.com/pulumi/pulumi-terraform-provider/sdks/go/outscale/outscale"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
loadBalancer02, err := outscale.NewLoadBalancer(ctx, "loadBalancer02", &outscale.LoadBalancerArgs{
LoadBalancerName: pulumi.String("terraform-lb-for-app-policy"),
SubregionNames: pulumi.StringArray{
pulumi.Sprintf("%vb", _var.Region),
},
Listeners: outscale.LoadBalancerListenerArray{
&outscale.LoadBalancerListenerArgs{
LoadBalancerPort: pulumi.Float64(80),
LoadBalancerProtocol: pulumi.String("TCP"),
BackendPort: pulumi.Float64(80),
BackendProtocol: pulumi.String("TCP"),
},
},
})
if err != nil {
return err
}
_, err = outscale.NewLoadBalancerPolicy(ctx, "loadBalancerPolicy02", &outscale.LoadBalancerPolicyArgs{
LoadBalancerName: loadBalancer02.LoadBalancerName,
PolicyName: pulumi.String("terraform-lb-app-policy"),
PolicyType: pulumi.String("app"),
CookieName: pulumi.String("cookie01"),
}, pulumi.DependsOn([]pulumi.Resource{
loadBalancer02,
}))
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Outscale = Pulumi.Outscale;
return await Deployment.RunAsync(() =>
{
var loadBalancer02 = new Outscale.LoadBalancer("loadBalancer02", new()
{
LoadBalancerName = "terraform-lb-for-app-policy",
SubregionNames = new[]
{
$"{@var.Region}b",
},
Listeners = new[]
{
new Outscale.Inputs.LoadBalancerListenerArgs
{
LoadBalancerPort = 80,
LoadBalancerProtocol = "TCP",
BackendPort = 80,
BackendProtocol = "TCP",
},
},
});
var loadBalancerPolicy02 = new Outscale.LoadBalancerPolicy("loadBalancerPolicy02", new()
{
LoadBalancerName = loadBalancer02.LoadBalancerName,
PolicyName = "terraform-lb-app-policy",
PolicyType = "app",
CookieName = "cookie01",
}, new CustomResourceOptions
{
DependsOn =
{
loadBalancer02,
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.outscale.LoadBalancer;
import com.pulumi.outscale.LoadBalancerArgs;
import com.pulumi.outscale.inputs.LoadBalancerListenerArgs;
import com.pulumi.outscale.LoadBalancerPolicy;
import com.pulumi.outscale.LoadBalancerPolicyArgs;
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 loadBalancer02 = new LoadBalancer("loadBalancer02", LoadBalancerArgs.builder()
.loadBalancerName("terraform-lb-for-app-policy")
.subregionNames(String.format("%sb", var_.region()))
.listeners(LoadBalancerListenerArgs.builder()
.loadBalancerPort(80)
.loadBalancerProtocol("TCP")
.backendPort(80)
.backendProtocol("TCP")
.build())
.build());
var loadBalancerPolicy02 = new LoadBalancerPolicy("loadBalancerPolicy02", LoadBalancerPolicyArgs.builder()
.loadBalancerName(loadBalancer02.loadBalancerName())
.policyName("terraform-lb-app-policy")
.policyType("app")
.cookieName("cookie01")
.build(), CustomResourceOptions.builder()
.dependsOn(loadBalancer02)
.build());
}
}
resources:
loadBalancer02:
type: outscale:LoadBalancer
properties:
loadBalancerName: terraform-lb-for-app-policy
subregionNames:
- ${var.region}b
listeners:
- loadBalancerPort: 80
loadBalancerProtocol: TCP
backendPort: 80
backendProtocol: TCP
loadBalancerPolicy02:
type: outscale:LoadBalancerPolicy
properties:
loadBalancerName: ${loadBalancer02.loadBalancerName}
policyName: terraform-lb-app-policy
policyType: app
cookieName: cookie01
options:
dependsOn:
- ${loadBalancer02}
Create LoadBalancerPolicy Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new LoadBalancerPolicy(name: string, args: LoadBalancerPolicyArgs, opts?: CustomResourceOptions);
@overload
def LoadBalancerPolicy(resource_name: str,
args: LoadBalancerPolicyArgs,
opts: Optional[ResourceOptions] = None)
@overload
def LoadBalancerPolicy(resource_name: str,
opts: Optional[ResourceOptions] = None,
load_balancer_name: Optional[str] = None,
policy_type: Optional[str] = None,
policy_name: Optional[str] = None,
load_balancer_type: Optional[str] = None,
cookie_name: Optional[str] = None,
load_balancer_policy_id: Optional[str] = None,
access_logs: Optional[Sequence[LoadBalancerPolicyAccessLogArgs]] = None,
cookie_expiration_period: Optional[float] = None,
backend_vm_ids: Optional[Sequence[str]] = None,
security_groups: Optional[Sequence[str]] = None,
subnets: Optional[Sequence[str]] = None,
subregion_names: Optional[Sequence[str]] = None,
tags: Optional[Sequence[LoadBalancerPolicyTagArgs]] = None)
func NewLoadBalancerPolicy(ctx *Context, name string, args LoadBalancerPolicyArgs, opts ...ResourceOption) (*LoadBalancerPolicy, error)
public LoadBalancerPolicy(string name, LoadBalancerPolicyArgs args, CustomResourceOptions? opts = null)
public LoadBalancerPolicy(String name, LoadBalancerPolicyArgs args)
public LoadBalancerPolicy(String name, LoadBalancerPolicyArgs args, CustomResourceOptions options)
type: outscale:LoadBalancerPolicy
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 LoadBalancerPolicyArgs
- 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 LoadBalancerPolicyArgs
- 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 LoadBalancerPolicyArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args LoadBalancerPolicyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args LoadBalancerPolicyArgs
- 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 loadBalancerPolicyResource = new Outscale.LoadBalancerPolicy("loadBalancerPolicyResource", new()
{
LoadBalancerName = "string",
PolicyType = "string",
PolicyName = "string",
LoadBalancerType = "string",
CookieName = "string",
LoadBalancerPolicyId = "string",
AccessLogs = new[]
{
new Outscale.Inputs.LoadBalancerPolicyAccessLogArgs
{
IsEnabled = false,
OsuBucketName = "string",
OsuBucketPrefix = "string",
PublicationInterval = 0,
},
},
CookieExpirationPeriod = 0,
BackendVmIds = new[]
{
"string",
},
SecurityGroups = new[]
{
"string",
},
Subnets = new[]
{
"string",
},
SubregionNames = new[]
{
"string",
},
Tags = new[]
{
new Outscale.Inputs.LoadBalancerPolicyTagArgs
{
Key = "string",
Value = "string",
},
},
});
example, err := outscale.NewLoadBalancerPolicy(ctx, "loadBalancerPolicyResource", &outscale.LoadBalancerPolicyArgs{
LoadBalancerName: pulumi.String("string"),
PolicyType: pulumi.String("string"),
PolicyName: pulumi.String("string"),
LoadBalancerType: pulumi.String("string"),
CookieName: pulumi.String("string"),
LoadBalancerPolicyId: pulumi.String("string"),
AccessLogs: .LoadBalancerPolicyAccessLogArray{
&.LoadBalancerPolicyAccessLogArgs{
IsEnabled: pulumi.Bool(false),
OsuBucketName: pulumi.String("string"),
OsuBucketPrefix: pulumi.String("string"),
PublicationInterval: pulumi.Float64(0),
},
},
CookieExpirationPeriod: pulumi.Float64(0),
BackendVmIds: pulumi.StringArray{
pulumi.String("string"),
},
SecurityGroups: pulumi.StringArray{
pulumi.String("string"),
},
Subnets: pulumi.StringArray{
pulumi.String("string"),
},
SubregionNames: pulumi.StringArray{
pulumi.String("string"),
},
Tags: .LoadBalancerPolicyTagArray{
&.LoadBalancerPolicyTagArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
})
var loadBalancerPolicyResource = new LoadBalancerPolicy("loadBalancerPolicyResource", LoadBalancerPolicyArgs.builder()
.loadBalancerName("string")
.policyType("string")
.policyName("string")
.loadBalancerType("string")
.cookieName("string")
.loadBalancerPolicyId("string")
.accessLogs(LoadBalancerPolicyAccessLogArgs.builder()
.isEnabled(false)
.osuBucketName("string")
.osuBucketPrefix("string")
.publicationInterval(0)
.build())
.cookieExpirationPeriod(0)
.backendVmIds("string")
.securityGroups("string")
.subnets("string")
.subregionNames("string")
.tags(LoadBalancerPolicyTagArgs.builder()
.key("string")
.value("string")
.build())
.build());
load_balancer_policy_resource = outscale.LoadBalancerPolicy("loadBalancerPolicyResource",
load_balancer_name="string",
policy_type="string",
policy_name="string",
load_balancer_type="string",
cookie_name="string",
load_balancer_policy_id="string",
access_logs=[{
"is_enabled": False,
"osu_bucket_name": "string",
"osu_bucket_prefix": "string",
"publication_interval": 0,
}],
cookie_expiration_period=0,
backend_vm_ids=["string"],
security_groups=["string"],
subnets=["string"],
subregion_names=["string"],
tags=[{
"key": "string",
"value": "string",
}])
const loadBalancerPolicyResource = new outscale.LoadBalancerPolicy("loadBalancerPolicyResource", {
loadBalancerName: "string",
policyType: "string",
policyName: "string",
loadBalancerType: "string",
cookieName: "string",
loadBalancerPolicyId: "string",
accessLogs: [{
isEnabled: false,
osuBucketName: "string",
osuBucketPrefix: "string",
publicationInterval: 0,
}],
cookieExpirationPeriod: 0,
backendVmIds: ["string"],
securityGroups: ["string"],
subnets: ["string"],
subregionNames: ["string"],
tags: [{
key: "string",
value: "string",
}],
});
type: outscale:LoadBalancerPolicy
properties:
accessLogs:
- isEnabled: false
osuBucketName: string
osuBucketPrefix: string
publicationInterval: 0
backendVmIds:
- string
cookieExpirationPeriod: 0
cookieName: string
loadBalancerName: string
loadBalancerPolicyId: string
loadBalancerType: string
policyName: string
policyType: string
securityGroups:
- string
subnets:
- string
subregionNames:
- string
tags:
- key: string
value: string
LoadBalancerPolicy 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 LoadBalancerPolicy resource accepts the following input properties:
- Load
Balancer stringName - The name of the load balancer for which you want to create a policy.
- Policy
Name string - The unique name of the policy, with a maximum length of 32 alphanumeric characters and dashes (
-
). - Policy
Type string - The type of stickiness policy you want to create:
app
orload_balancer
. - Access
Logs List<LoadBalancer Policy Access Log> - Information about access logs.
- Backend
Vm List<string>Ids - One or more IDs of backend VMs for the load balancer.
- double
- string
- The name of the application cookie used for stickiness. This parameter is required if you create a stickiness policy based on an application-generated cookie.
- Load
Balancer stringPolicy Id - Load
Balancer stringType - The type of load balancer. Valid only for load balancers in a Net.
If
load_balancer_type
isinternet-facing
, the load balancer has a public DNS name that resolves to a public IP. Ifload_balancer_type
isinternal
, the load balancer has a public DNS name that resolves to a private IP. - Security
Groups List<string> - One or more IDs of security groups for the load balancers. Valid only for load balancers in a Net.
- Subnets List<string>
- The ID of the Subnet in which the load balancer was created.
- Subregion
Names List<string> - The ID of the Subregion in which the load balancer was created.
- List<Load
Balancer Policy Tag> - One or more tags associated with the load balancer.
- Load
Balancer stringName - The name of the load balancer for which you want to create a policy.
- Policy
Name string - The unique name of the policy, with a maximum length of 32 alphanumeric characters and dashes (
-
). - Policy
Type string - The type of stickiness policy you want to create:
app
orload_balancer
. - Access
Logs []LoadBalancer Policy Access Log Args - Information about access logs.
- Backend
Vm []stringIds - One or more IDs of backend VMs for the load balancer.
- float64
- string
- The name of the application cookie used for stickiness. This parameter is required if you create a stickiness policy based on an application-generated cookie.
- Load
Balancer stringPolicy Id - Load
Balancer stringType - The type of load balancer. Valid only for load balancers in a Net.
If
load_balancer_type
isinternet-facing
, the load balancer has a public DNS name that resolves to a public IP. Ifload_balancer_type
isinternal
, the load balancer has a public DNS name that resolves to a private IP. - Security
Groups []string - One or more IDs of security groups for the load balancers. Valid only for load balancers in a Net.
- Subnets []string
- The ID of the Subnet in which the load balancer was created.
- Subregion
Names []string - The ID of the Subregion in which the load balancer was created.
- []Load
Balancer Policy Tag Args - One or more tags associated with the load balancer.
- load
Balancer StringName - The name of the load balancer for which you want to create a policy.
- policy
Name String - The unique name of the policy, with a maximum length of 32 alphanumeric characters and dashes (
-
). - policy
Type String - The type of stickiness policy you want to create:
app
orload_balancer
. - access
Logs List<LoadBalancer Policy Access Log> - Information about access logs.
- backend
Vm List<String>Ids - One or more IDs of backend VMs for the load balancer.
- Double
- String
- The name of the application cookie used for stickiness. This parameter is required if you create a stickiness policy based on an application-generated cookie.
- load
Balancer StringPolicy Id - load
Balancer StringType - The type of load balancer. Valid only for load balancers in a Net.
If
load_balancer_type
isinternet-facing
, the load balancer has a public DNS name that resolves to a public IP. Ifload_balancer_type
isinternal
, the load balancer has a public DNS name that resolves to a private IP. - security
Groups List<String> - One or more IDs of security groups for the load balancers. Valid only for load balancers in a Net.
- subnets List<String>
- The ID of the Subnet in which the load balancer was created.
- subregion
Names List<String> - The ID of the Subregion in which the load balancer was created.
- List<Load
Balancer Policy Tag> - One or more tags associated with the load balancer.
- load
Balancer stringName - The name of the load balancer for which you want to create a policy.
- policy
Name string - The unique name of the policy, with a maximum length of 32 alphanumeric characters and dashes (
-
). - policy
Type string - The type of stickiness policy you want to create:
app
orload_balancer
. - access
Logs LoadBalancer Policy Access Log[] - Information about access logs.
- backend
Vm string[]Ids - One or more IDs of backend VMs for the load balancer.
- number
- string
- The name of the application cookie used for stickiness. This parameter is required if you create a stickiness policy based on an application-generated cookie.
- load
Balancer stringPolicy Id - load
Balancer stringType - The type of load balancer. Valid only for load balancers in a Net.
If
load_balancer_type
isinternet-facing
, the load balancer has a public DNS name that resolves to a public IP. Ifload_balancer_type
isinternal
, the load balancer has a public DNS name that resolves to a private IP. - security
Groups string[] - One or more IDs of security groups for the load balancers. Valid only for load balancers in a Net.
- subnets string[]
- The ID of the Subnet in which the load balancer was created.
- subregion
Names string[] - The ID of the Subregion in which the load balancer was created.
- Load
Balancer Policy Tag[] - One or more tags associated with the load balancer.
- load_
balancer_ strname - The name of the load balancer for which you want to create a policy.
- policy_
name str - The unique name of the policy, with a maximum length of 32 alphanumeric characters and dashes (
-
). - policy_
type str - The type of stickiness policy you want to create:
app
orload_balancer
. - access_
logs Sequence[LoadBalancer Policy Access Log Args] - Information about access logs.
- backend_
vm_ Sequence[str]ids - One or more IDs of backend VMs for the load balancer.
- float
- str
- The name of the application cookie used for stickiness. This parameter is required if you create a stickiness policy based on an application-generated cookie.
- load_
balancer_ strpolicy_ id - load_
balancer_ strtype - The type of load balancer. Valid only for load balancers in a Net.
If
load_balancer_type
isinternet-facing
, the load balancer has a public DNS name that resolves to a public IP. Ifload_balancer_type
isinternal
, the load balancer has a public DNS name that resolves to a private IP. - security_
groups Sequence[str] - One or more IDs of security groups for the load balancers. Valid only for load balancers in a Net.
- subnets Sequence[str]
- The ID of the Subnet in which the load balancer was created.
- subregion_
names Sequence[str] - The ID of the Subregion in which the load balancer was created.
- Sequence[Load
Balancer Policy Tag Args] - One or more tags associated with the load balancer.
- load
Balancer StringName - The name of the load balancer for which you want to create a policy.
- policy
Name String - The unique name of the policy, with a maximum length of 32 alphanumeric characters and dashes (
-
). - policy
Type String - The type of stickiness policy you want to create:
app
orload_balancer
. - access
Logs List<Property Map> - Information about access logs.
- backend
Vm List<String>Ids - One or more IDs of backend VMs for the load balancer.
- Number
- String
- The name of the application cookie used for stickiness. This parameter is required if you create a stickiness policy based on an application-generated cookie.
- load
Balancer StringPolicy Id - load
Balancer StringType - The type of load balancer. Valid only for load balancers in a Net.
If
load_balancer_type
isinternet-facing
, the load balancer has a public DNS name that resolves to a public IP. Ifload_balancer_type
isinternal
, the load balancer has a public DNS name that resolves to a private IP. - security
Groups List<String> - One or more IDs of security groups for the load balancers. Valid only for load balancers in a Net.
- subnets List<String>
- The ID of the Subnet in which the load balancer was created.
- subregion
Names List<String> - The ID of the Subregion in which the load balancer was created.
- List<Property Map>
- One or more tags associated with the load balancer.
Outputs
All input properties are implicitly available as output properties. Additionally, the LoadBalancerPolicy resource produces the following output properties:
- List<Load
Balancer Policy Application Sticky Cookie Policy> - The stickiness policies defined for the load balancer.
- Dns
Name string - The DNS name of the load balancer.
- Health
Checks List<LoadBalancer Policy Health Check> - Information about the health check configuration.
- Id string
- The provider-assigned unique ID for this managed resource.
- Listeners
List<Load
Balancer Policy Listener> - The listeners for the load balancer.
- List<Load
Balancer Policy Load Balancer Sticky Cookie Policy> - The policies defined for the load balancer.
- Net
Id string - The ID of the Net for the load balancer.
- Public
Ip string - Request
Id string - bool
- Source
Security List<LoadGroups Balancer Policy Source Security Group> - Information about the source security group of the load balancer, which you can use as part of your inbound rules for your registered VMs. To only allow traffic from load balancers, add a security group rule that specifies this source security group as the inbound source.
- []Load
Balancer Policy Application Sticky Cookie Policy - The stickiness policies defined for the load balancer.
- Dns
Name string - The DNS name of the load balancer.
- Health
Checks []LoadBalancer Policy Health Check - Information about the health check configuration.
- Id string
- The provider-assigned unique ID for this managed resource.
- Listeners
[]Load
Balancer Policy Listener - The listeners for the load balancer.
- []Load
Balancer Policy Load Balancer Sticky Cookie Policy - The policies defined for the load balancer.
- Net
Id string - The ID of the Net for the load balancer.
- Public
Ip string - Request
Id string - bool
- Source
Security []LoadGroups Balancer Policy Source Security Group - Information about the source security group of the load balancer, which you can use as part of your inbound rules for your registered VMs. To only allow traffic from load balancers, add a security group rule that specifies this source security group as the inbound source.
- List<Load
Balancer Policy Application Sticky Cookie Policy> - The stickiness policies defined for the load balancer.
- dns
Name String - The DNS name of the load balancer.
- health
Checks List<LoadBalancer Policy Health Check> - Information about the health check configuration.
- id String
- The provider-assigned unique ID for this managed resource.
- listeners
List<Load
Balancer Policy Listener> - The listeners for the load balancer.
- List<Load
Balancer Policy Load Balancer Sticky Cookie Policy> - The policies defined for the load balancer.
- net
Id String - The ID of the Net for the load balancer.
- public
Ip String - request
Id String - Boolean
- source
Security List<LoadGroups Balancer Policy Source Security Group> - Information about the source security group of the load balancer, which you can use as part of your inbound rules for your registered VMs. To only allow traffic from load balancers, add a security group rule that specifies this source security group as the inbound source.
- Load
Balancer Policy Application Sticky Cookie Policy[] - The stickiness policies defined for the load balancer.
- dns
Name string - The DNS name of the load balancer.
- health
Checks LoadBalancer Policy Health Check[] - Information about the health check configuration.
- id string
- The provider-assigned unique ID for this managed resource.
- listeners
Load
Balancer Policy Listener[] - The listeners for the load balancer.
- Load
Balancer Policy Load Balancer Sticky Cookie Policy[] - The policies defined for the load balancer.
- net
Id string - The ID of the Net for the load balancer.
- public
Ip string - request
Id string - boolean
- source
Security LoadGroups Balancer Policy Source Security Group[] - Information about the source security group of the load balancer, which you can use as part of your inbound rules for your registered VMs. To only allow traffic from load balancers, add a security group rule that specifies this source security group as the inbound source.
- Sequence[Load
Balancer Policy Application Sticky Cookie Policy] - The stickiness policies defined for the load balancer.
- dns_
name str - The DNS name of the load balancer.
- health_
checks Sequence[LoadBalancer Policy Health Check] - Information about the health check configuration.
- id str
- The provider-assigned unique ID for this managed resource.
- listeners
Sequence[Load
Balancer Policy Listener] - The listeners for the load balancer.
- Sequence[Load
Balancer Policy Load Balancer Sticky Cookie Policy] - The policies defined for the load balancer.
- net_
id str - The ID of the Net for the load balancer.
- public_
ip str - request_
id str - bool
- source_
security_ Sequence[Loadgroups Balancer Policy Source Security Group] - Information about the source security group of the load balancer, which you can use as part of your inbound rules for your registered VMs. To only allow traffic from load balancers, add a security group rule that specifies this source security group as the inbound source.
- List<Property Map>
- The stickiness policies defined for the load balancer.
- dns
Name String - The DNS name of the load balancer.
- health
Checks List<Property Map> - Information about the health check configuration.
- id String
- The provider-assigned unique ID for this managed resource.
- listeners List<Property Map>
- The listeners for the load balancer.
- List<Property Map>
- The policies defined for the load balancer.
- net
Id String - The ID of the Net for the load balancer.
- public
Ip String - request
Id String - Boolean
- source
Security List<Property Map>Groups - Information about the source security group of the load balancer, which you can use as part of your inbound rules for your registered VMs. To only allow traffic from load balancers, add a security group rule that specifies this source security group as the inbound source.
Look up Existing LoadBalancerPolicy Resource
Get an existing LoadBalancerPolicy 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?: LoadBalancerPolicyState, opts?: CustomResourceOptions): LoadBalancerPolicy
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
access_logs: Optional[Sequence[LoadBalancerPolicyAccessLogArgs]] = None,
application_sticky_cookie_policies: Optional[Sequence[LoadBalancerPolicyApplicationStickyCookiePolicyArgs]] = None,
backend_vm_ids: Optional[Sequence[str]] = None,
cookie_expiration_period: Optional[float] = None,
cookie_name: Optional[str] = None,
dns_name: Optional[str] = None,
health_checks: Optional[Sequence[LoadBalancerPolicyHealthCheckArgs]] = None,
listeners: Optional[Sequence[LoadBalancerPolicyListenerArgs]] = None,
load_balancer_name: Optional[str] = None,
load_balancer_policy_id: Optional[str] = None,
load_balancer_sticky_cookie_policies: Optional[Sequence[LoadBalancerPolicyLoadBalancerStickyCookiePolicyArgs]] = None,
load_balancer_type: Optional[str] = None,
net_id: Optional[str] = None,
policy_name: Optional[str] = None,
policy_type: Optional[str] = None,
public_ip: Optional[str] = None,
request_id: Optional[str] = None,
secured_cookies: Optional[bool] = None,
security_groups: Optional[Sequence[str]] = None,
source_security_groups: Optional[Sequence[LoadBalancerPolicySourceSecurityGroupArgs]] = None,
subnets: Optional[Sequence[str]] = None,
subregion_names: Optional[Sequence[str]] = None,
tags: Optional[Sequence[LoadBalancerPolicyTagArgs]] = None) -> LoadBalancerPolicy
func GetLoadBalancerPolicy(ctx *Context, name string, id IDInput, state *LoadBalancerPolicyState, opts ...ResourceOption) (*LoadBalancerPolicy, error)
public static LoadBalancerPolicy Get(string name, Input<string> id, LoadBalancerPolicyState? state, CustomResourceOptions? opts = null)
public static LoadBalancerPolicy get(String name, Output<String> id, LoadBalancerPolicyState state, CustomResourceOptions options)
resources: _: type: outscale:LoadBalancerPolicy 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.
- Access
Logs List<LoadBalancer Policy Access Log> - Information about access logs.
- List<Load
Balancer Policy Application Sticky Cookie Policy> - The stickiness policies defined for the load balancer.
- Backend
Vm List<string>Ids - One or more IDs of backend VMs for the load balancer.
- double
- string
- The name of the application cookie used for stickiness. This parameter is required if you create a stickiness policy based on an application-generated cookie.
- Dns
Name string - The DNS name of the load balancer.
- Health
Checks List<LoadBalancer Policy Health Check> - Information about the health check configuration.
- Listeners
List<Load
Balancer Policy Listener> - The listeners for the load balancer.
- Load
Balancer stringName - The name of the load balancer for which you want to create a policy.
- Load
Balancer stringPolicy Id - List<Load
Balancer Policy Load Balancer Sticky Cookie Policy> - The policies defined for the load balancer.
- Load
Balancer stringType - The type of load balancer. Valid only for load balancers in a Net.
If
load_balancer_type
isinternet-facing
, the load balancer has a public DNS name that resolves to a public IP. Ifload_balancer_type
isinternal
, the load balancer has a public DNS name that resolves to a private IP. - Net
Id string - The ID of the Net for the load balancer.
- Policy
Name string - The unique name of the policy, with a maximum length of 32 alphanumeric characters and dashes (
-
). - Policy
Type string - The type of stickiness policy you want to create:
app
orload_balancer
. - Public
Ip string - Request
Id string - bool
- Security
Groups List<string> - One or more IDs of security groups for the load balancers. Valid only for load balancers in a Net.
- Source
Security List<LoadGroups Balancer Policy Source Security Group> - Information about the source security group of the load balancer, which you can use as part of your inbound rules for your registered VMs. To only allow traffic from load balancers, add a security group rule that specifies this source security group as the inbound source.
- Subnets List<string>
- The ID of the Subnet in which the load balancer was created.
- Subregion
Names List<string> - The ID of the Subregion in which the load balancer was created.
- List<Load
Balancer Policy Tag> - One or more tags associated with the load balancer.
- Access
Logs []LoadBalancer Policy Access Log Args - Information about access logs.
- []Load
Balancer Policy Application Sticky Cookie Policy Args - The stickiness policies defined for the load balancer.
- Backend
Vm []stringIds - One or more IDs of backend VMs for the load balancer.
- float64
- string
- The name of the application cookie used for stickiness. This parameter is required if you create a stickiness policy based on an application-generated cookie.
- Dns
Name string - The DNS name of the load balancer.
- Health
Checks []LoadBalancer Policy Health Check Args - Information about the health check configuration.
- Listeners
[]Load
Balancer Policy Listener Args - The listeners for the load balancer.
- Load
Balancer stringName - The name of the load balancer for which you want to create a policy.
- Load
Balancer stringPolicy Id - []Load
Balancer Policy Load Balancer Sticky Cookie Policy Args - The policies defined for the load balancer.
- Load
Balancer stringType - The type of load balancer. Valid only for load balancers in a Net.
If
load_balancer_type
isinternet-facing
, the load balancer has a public DNS name that resolves to a public IP. Ifload_balancer_type
isinternal
, the load balancer has a public DNS name that resolves to a private IP. - Net
Id string - The ID of the Net for the load balancer.
- Policy
Name string - The unique name of the policy, with a maximum length of 32 alphanumeric characters and dashes (
-
). - Policy
Type string - The type of stickiness policy you want to create:
app
orload_balancer
. - Public
Ip string - Request
Id string - bool
- Security
Groups []string - One or more IDs of security groups for the load balancers. Valid only for load balancers in a Net.
- Source
Security []LoadGroups Balancer Policy Source Security Group Args - Information about the source security group of the load balancer, which you can use as part of your inbound rules for your registered VMs. To only allow traffic from load balancers, add a security group rule that specifies this source security group as the inbound source.
- Subnets []string
- The ID of the Subnet in which the load balancer was created.
- Subregion
Names []string - The ID of the Subregion in which the load balancer was created.
- []Load
Balancer Policy Tag Args - One or more tags associated with the load balancer.
- access
Logs List<LoadBalancer Policy Access Log> - Information about access logs.
- List<Load
Balancer Policy Application Sticky Cookie Policy> - The stickiness policies defined for the load balancer.
- backend
Vm List<String>Ids - One or more IDs of backend VMs for the load balancer.
- Double
- String
- The name of the application cookie used for stickiness. This parameter is required if you create a stickiness policy based on an application-generated cookie.
- dns
Name String - The DNS name of the load balancer.
- health
Checks List<LoadBalancer Policy Health Check> - Information about the health check configuration.
- listeners
List<Load
Balancer Policy Listener> - The listeners for the load balancer.
- load
Balancer StringName - The name of the load balancer for which you want to create a policy.
- load
Balancer StringPolicy Id - List<Load
Balancer Policy Load Balancer Sticky Cookie Policy> - The policies defined for the load balancer.
- load
Balancer StringType - The type of load balancer. Valid only for load balancers in a Net.
If
load_balancer_type
isinternet-facing
, the load balancer has a public DNS name that resolves to a public IP. Ifload_balancer_type
isinternal
, the load balancer has a public DNS name that resolves to a private IP. - net
Id String - The ID of the Net for the load balancer.
- policy
Name String - The unique name of the policy, with a maximum length of 32 alphanumeric characters and dashes (
-
). - policy
Type String - The type of stickiness policy you want to create:
app
orload_balancer
. - public
Ip String - request
Id String - Boolean
- security
Groups List<String> - One or more IDs of security groups for the load balancers. Valid only for load balancers in a Net.
- source
Security List<LoadGroups Balancer Policy Source Security Group> - Information about the source security group of the load balancer, which you can use as part of your inbound rules for your registered VMs. To only allow traffic from load balancers, add a security group rule that specifies this source security group as the inbound source.
- subnets List<String>
- The ID of the Subnet in which the load balancer was created.
- subregion
Names List<String> - The ID of the Subregion in which the load balancer was created.
- List<Load
Balancer Policy Tag> - One or more tags associated with the load balancer.
- access
Logs LoadBalancer Policy Access Log[] - Information about access logs.
- Load
Balancer Policy Application Sticky Cookie Policy[] - The stickiness policies defined for the load balancer.
- backend
Vm string[]Ids - One or more IDs of backend VMs for the load balancer.
- number
- string
- The name of the application cookie used for stickiness. This parameter is required if you create a stickiness policy based on an application-generated cookie.
- dns
Name string - The DNS name of the load balancer.
- health
Checks LoadBalancer Policy Health Check[] - Information about the health check configuration.
- listeners
Load
Balancer Policy Listener[] - The listeners for the load balancer.
- load
Balancer stringName - The name of the load balancer for which you want to create a policy.
- load
Balancer stringPolicy Id - Load
Balancer Policy Load Balancer Sticky Cookie Policy[] - The policies defined for the load balancer.
- load
Balancer stringType - The type of load balancer. Valid only for load balancers in a Net.
If
load_balancer_type
isinternet-facing
, the load balancer has a public DNS name that resolves to a public IP. Ifload_balancer_type
isinternal
, the load balancer has a public DNS name that resolves to a private IP. - net
Id string - The ID of the Net for the load balancer.
- policy
Name string - The unique name of the policy, with a maximum length of 32 alphanumeric characters and dashes (
-
). - policy
Type string - The type of stickiness policy you want to create:
app
orload_balancer
. - public
Ip string - request
Id string - boolean
- security
Groups string[] - One or more IDs of security groups for the load balancers. Valid only for load balancers in a Net.
- source
Security LoadGroups Balancer Policy Source Security Group[] - Information about the source security group of the load balancer, which you can use as part of your inbound rules for your registered VMs. To only allow traffic from load balancers, add a security group rule that specifies this source security group as the inbound source.
- subnets string[]
- The ID of the Subnet in which the load balancer was created.
- subregion
Names string[] - The ID of the Subregion in which the load balancer was created.
- Load
Balancer Policy Tag[] - One or more tags associated with the load balancer.
- access_
logs Sequence[LoadBalancer Policy Access Log Args] - Information about access logs.
- Sequence[Load
Balancer Policy Application Sticky Cookie Policy Args] - The stickiness policies defined for the load balancer.
- backend_
vm_ Sequence[str]ids - One or more IDs of backend VMs for the load balancer.
- float
- str
- The name of the application cookie used for stickiness. This parameter is required if you create a stickiness policy based on an application-generated cookie.
- dns_
name str - The DNS name of the load balancer.
- health_
checks Sequence[LoadBalancer Policy Health Check Args] - Information about the health check configuration.
- listeners
Sequence[Load
Balancer Policy Listener Args] - The listeners for the load balancer.
- load_
balancer_ strname - The name of the load balancer for which you want to create a policy.
- load_
balancer_ strpolicy_ id - Sequence[Load
Balancer Policy Load Balancer Sticky Cookie Policy Args] - The policies defined for the load balancer.
- load_
balancer_ strtype - The type of load balancer. Valid only for load balancers in a Net.
If
load_balancer_type
isinternet-facing
, the load balancer has a public DNS name that resolves to a public IP. Ifload_balancer_type
isinternal
, the load balancer has a public DNS name that resolves to a private IP. - net_
id str - The ID of the Net for the load balancer.
- policy_
name str - The unique name of the policy, with a maximum length of 32 alphanumeric characters and dashes (
-
). - policy_
type str - The type of stickiness policy you want to create:
app
orload_balancer
. - public_
ip str - request_
id str - bool
- security_
groups Sequence[str] - One or more IDs of security groups for the load balancers. Valid only for load balancers in a Net.
- source_
security_ Sequence[Loadgroups Balancer Policy Source Security Group Args] - Information about the source security group of the load balancer, which you can use as part of your inbound rules for your registered VMs. To only allow traffic from load balancers, add a security group rule that specifies this source security group as the inbound source.
- subnets Sequence[str]
- The ID of the Subnet in which the load balancer was created.
- subregion_
names Sequence[str] - The ID of the Subregion in which the load balancer was created.
- Sequence[Load
Balancer Policy Tag Args] - One or more tags associated with the load balancer.
- access
Logs List<Property Map> - Information about access logs.
- List<Property Map>
- The stickiness policies defined for the load balancer.
- backend
Vm List<String>Ids - One or more IDs of backend VMs for the load balancer.
- Number
- String
- The name of the application cookie used for stickiness. This parameter is required if you create a stickiness policy based on an application-generated cookie.
- dns
Name String - The DNS name of the load balancer.
- health
Checks List<Property Map> - Information about the health check configuration.
- listeners List<Property Map>
- The listeners for the load balancer.
- load
Balancer StringName - The name of the load balancer for which you want to create a policy.
- load
Balancer StringPolicy Id - List<Property Map>
- The policies defined for the load balancer.
- load
Balancer StringType - The type of load balancer. Valid only for load balancers in a Net.
If
load_balancer_type
isinternet-facing
, the load balancer has a public DNS name that resolves to a public IP. Ifload_balancer_type
isinternal
, the load balancer has a public DNS name that resolves to a private IP. - net
Id String - The ID of the Net for the load balancer.
- policy
Name String - The unique name of the policy, with a maximum length of 32 alphanumeric characters and dashes (
-
). - policy
Type String - The type of stickiness policy you want to create:
app
orload_balancer
. - public
Ip String - request
Id String - Boolean
- security
Groups List<String> - One or more IDs of security groups for the load balancers. Valid only for load balancers in a Net.
- source
Security List<Property Map>Groups - Information about the source security group of the load balancer, which you can use as part of your inbound rules for your registered VMs. To only allow traffic from load balancers, add a security group rule that specifies this source security group as the inbound source.
- subnets List<String>
- The ID of the Subnet in which the load balancer was created.
- subregion
Names List<String> - The ID of the Subregion in which the load balancer was created.
- List<Property Map>
- One or more tags associated with the load balancer.
Supporting Types
LoadBalancerPolicyAccessLog, LoadBalancerPolicyAccessLogArgs
- Is
Enabled bool - If true, access logs are enabled for your load balancer. If false, they are not. If you set this to true in your request, the
osu_bucket_name
parameter is required. - Osu
Bucket stringName - The name of the OOS bucket for the access logs.
- Osu
Bucket stringPrefix - The path to the folder of the access logs in your OOS bucket (by default, the
root
level of your bucket). - Publication
Interval double - The time interval for the publication of access logs in the OOS bucket, in minutes. This value can be either
5
or60
(by default,60
).
- Is
Enabled bool - If true, access logs are enabled for your load balancer. If false, they are not. If you set this to true in your request, the
osu_bucket_name
parameter is required. - Osu
Bucket stringName - The name of the OOS bucket for the access logs.
- Osu
Bucket stringPrefix - The path to the folder of the access logs in your OOS bucket (by default, the
root
level of your bucket). - Publication
Interval float64 - The time interval for the publication of access logs in the OOS bucket, in minutes. This value can be either
5
or60
(by default,60
).
- is
Enabled Boolean - If true, access logs are enabled for your load balancer. If false, they are not. If you set this to true in your request, the
osu_bucket_name
parameter is required. - osu
Bucket StringName - The name of the OOS bucket for the access logs.
- osu
Bucket StringPrefix - The path to the folder of the access logs in your OOS bucket (by default, the
root
level of your bucket). - publication
Interval Double - The time interval for the publication of access logs in the OOS bucket, in minutes. This value can be either
5
or60
(by default,60
).
- is
Enabled boolean - If true, access logs are enabled for your load balancer. If false, they are not. If you set this to true in your request, the
osu_bucket_name
parameter is required. - osu
Bucket stringName - The name of the OOS bucket for the access logs.
- osu
Bucket stringPrefix - The path to the folder of the access logs in your OOS bucket (by default, the
root
level of your bucket). - publication
Interval number - The time interval for the publication of access logs in the OOS bucket, in minutes. This value can be either
5
or60
(by default,60
).
- is_
enabled bool - If true, access logs are enabled for your load balancer. If false, they are not. If you set this to true in your request, the
osu_bucket_name
parameter is required. - osu_
bucket_ strname - The name of the OOS bucket for the access logs.
- osu_
bucket_ strprefix - The path to the folder of the access logs in your OOS bucket (by default, the
root
level of your bucket). - publication_
interval float - The time interval for the publication of access logs in the OOS bucket, in minutes. This value can be either
5
or60
(by default,60
).
- is
Enabled Boolean - If true, access logs are enabled for your load balancer. If false, they are not. If you set this to true in your request, the
osu_bucket_name
parameter is required. - osu
Bucket StringName - The name of the OOS bucket for the access logs.
- osu
Bucket StringPrefix - The path to the folder of the access logs in your OOS bucket (by default, the
root
level of your bucket). - publication
Interval Number - The time interval for the publication of access logs in the OOS bucket, in minutes. This value can be either
5
or60
(by default,60
).
LoadBalancerPolicyApplicationStickyCookiePolicy, LoadBalancerPolicyApplicationStickyCookiePolicyArgs
- string
- The name of the application cookie used for stickiness. This parameter is required if you create a stickiness policy based on an application-generated cookie.
- Policy
Name string - The unique name of the policy, with a maximum length of 32 alphanumeric characters and dashes (
-
).
- string
- The name of the application cookie used for stickiness. This parameter is required if you create a stickiness policy based on an application-generated cookie.
- Policy
Name string - The unique name of the policy, with a maximum length of 32 alphanumeric characters and dashes (
-
).
- String
- The name of the application cookie used for stickiness. This parameter is required if you create a stickiness policy based on an application-generated cookie.
- policy
Name String - The unique name of the policy, with a maximum length of 32 alphanumeric characters and dashes (
-
).
- string
- The name of the application cookie used for stickiness. This parameter is required if you create a stickiness policy based on an application-generated cookie.
- policy
Name string - The unique name of the policy, with a maximum length of 32 alphanumeric characters and dashes (
-
).
- str
- The name of the application cookie used for stickiness. This parameter is required if you create a stickiness policy based on an application-generated cookie.
- policy_
name str - The unique name of the policy, with a maximum length of 32 alphanumeric characters and dashes (
-
).
- String
- The name of the application cookie used for stickiness. This parameter is required if you create a stickiness policy based on an application-generated cookie.
- policy
Name String - The unique name of the policy, with a maximum length of 32 alphanumeric characters and dashes (
-
).
LoadBalancerPolicyHealthCheck, LoadBalancerPolicyHealthCheckArgs
- Check
Interval double - The number of seconds between two requests (between
5
and600
both included). - Healthy
Threshold double - The number of consecutive successful requests before considering the VM as healthy (between
2
and10
both included). - Path string
- If you use the HTTP or HTTPS protocols, the request URL path.
- Port double
- The port number (between
1
and65535
, both included). - Protocol string
- The protocol for the URL of the VM (
HTTP
|HTTPS
|TCP
|SSL
). - Timeout double
- The maximum waiting time for a response before considering the VM as unhealthy, in seconds (between
2
and60
both included). - Unhealthy
Threshold double - The number of consecutive failed requests before considering the VM as unhealthy (between
2
and10
both included).
- Check
Interval float64 - The number of seconds between two requests (between
5
and600
both included). - Healthy
Threshold float64 - The number of consecutive successful requests before considering the VM as healthy (between
2
and10
both included). - Path string
- If you use the HTTP or HTTPS protocols, the request URL path.
- Port float64
- The port number (between
1
and65535
, both included). - Protocol string
- The protocol for the URL of the VM (
HTTP
|HTTPS
|TCP
|SSL
). - Timeout float64
- The maximum waiting time for a response before considering the VM as unhealthy, in seconds (between
2
and60
both included). - Unhealthy
Threshold float64 - The number of consecutive failed requests before considering the VM as unhealthy (between
2
and10
both included).
- check
Interval Double - The number of seconds between two requests (between
5
and600
both included). - healthy
Threshold Double - The number of consecutive successful requests before considering the VM as healthy (between
2
and10
both included). - path String
- If you use the HTTP or HTTPS protocols, the request URL path.
- port Double
- The port number (between
1
and65535
, both included). - protocol String
- The protocol for the URL of the VM (
HTTP
|HTTPS
|TCP
|SSL
). - timeout Double
- The maximum waiting time for a response before considering the VM as unhealthy, in seconds (between
2
and60
both included). - unhealthy
Threshold Double - The number of consecutive failed requests before considering the VM as unhealthy (between
2
and10
both included).
- check
Interval number - The number of seconds between two requests (between
5
and600
both included). - healthy
Threshold number - The number of consecutive successful requests before considering the VM as healthy (between
2
and10
both included). - path string
- If you use the HTTP or HTTPS protocols, the request URL path.
- port number
- The port number (between
1
and65535
, both included). - protocol string
- The protocol for the URL of the VM (
HTTP
|HTTPS
|TCP
|SSL
). - timeout number
- The maximum waiting time for a response before considering the VM as unhealthy, in seconds (between
2
and60
both included). - unhealthy
Threshold number - The number of consecutive failed requests before considering the VM as unhealthy (between
2
and10
both included).
- check_
interval float - The number of seconds between two requests (between
5
and600
both included). - healthy_
threshold float - The number of consecutive successful requests before considering the VM as healthy (between
2
and10
both included). - path str
- If you use the HTTP or HTTPS protocols, the request URL path.
- port float
- The port number (between
1
and65535
, both included). - protocol str
- The protocol for the URL of the VM (
HTTP
|HTTPS
|TCP
|SSL
). - timeout float
- The maximum waiting time for a response before considering the VM as unhealthy, in seconds (between
2
and60
both included). - unhealthy_
threshold float - The number of consecutive failed requests before considering the VM as unhealthy (between
2
and10
both included).
- check
Interval Number - The number of seconds between two requests (between
5
and600
both included). - healthy
Threshold Number - The number of consecutive successful requests before considering the VM as healthy (between
2
and10
both included). - path String
- If you use the HTTP or HTTPS protocols, the request URL path.
- port Number
- The port number (between
1
and65535
, both included). - protocol String
- The protocol for the URL of the VM (
HTTP
|HTTPS
|TCP
|SSL
). - timeout Number
- The maximum waiting time for a response before considering the VM as unhealthy, in seconds (between
2
and60
both included). - unhealthy
Threshold Number - The number of consecutive failed requests before considering the VM as unhealthy (between
2
and10
both included).
LoadBalancerPolicyListener, LoadBalancerPolicyListenerArgs
- Backend
Port double - The port on which the backend VM is listening (between
1
and65535
, both included). - Backend
Protocol string - The protocol for routing traffic to backend VMs (
HTTP
|HTTPS
|TCP
|SSL
). - Load
Balancer doublePort - The port on which the load balancer is listening (between
1
and65535
, both included). - Load
Balancer stringProtocol - The routing protocol (
HTTP
|HTTPS
|TCP
|SSL
). - Policy
Names List<string> - The names of the policies. If there are no policies enabled, the list is empty.
- Server
Certificate stringId - The OUTSCALE Resource Name (ORN) of the server certificate. For more information, see Resource Identifiers > OUTSCALE Resource Names (ORNs).
- Backend
Port float64 - The port on which the backend VM is listening (between
1
and65535
, both included). - Backend
Protocol string - The protocol for routing traffic to backend VMs (
HTTP
|HTTPS
|TCP
|SSL
). - Load
Balancer float64Port - The port on which the load balancer is listening (between
1
and65535
, both included). - Load
Balancer stringProtocol - The routing protocol (
HTTP
|HTTPS
|TCP
|SSL
). - Policy
Names []string - The names of the policies. If there are no policies enabled, the list is empty.
- Server
Certificate stringId - The OUTSCALE Resource Name (ORN) of the server certificate. For more information, see Resource Identifiers > OUTSCALE Resource Names (ORNs).
- backend
Port Double - The port on which the backend VM is listening (between
1
and65535
, both included). - backend
Protocol String - The protocol for routing traffic to backend VMs (
HTTP
|HTTPS
|TCP
|SSL
). - load
Balancer DoublePort - The port on which the load balancer is listening (between
1
and65535
, both included). - load
Balancer StringProtocol - The routing protocol (
HTTP
|HTTPS
|TCP
|SSL
). - policy
Names List<String> - The names of the policies. If there are no policies enabled, the list is empty.
- server
Certificate StringId - The OUTSCALE Resource Name (ORN) of the server certificate. For more information, see Resource Identifiers > OUTSCALE Resource Names (ORNs).
- backend
Port number - The port on which the backend VM is listening (between
1
and65535
, both included). - backend
Protocol string - The protocol for routing traffic to backend VMs (
HTTP
|HTTPS
|TCP
|SSL
). - load
Balancer numberPort - The port on which the load balancer is listening (between
1
and65535
, both included). - load
Balancer stringProtocol - The routing protocol (
HTTP
|HTTPS
|TCP
|SSL
). - policy
Names string[] - The names of the policies. If there are no policies enabled, the list is empty.
- server
Certificate stringId - The OUTSCALE Resource Name (ORN) of the server certificate. For more information, see Resource Identifiers > OUTSCALE Resource Names (ORNs).
- backend_
port float - The port on which the backend VM is listening (between
1
and65535
, both included). - backend_
protocol str - The protocol for routing traffic to backend VMs (
HTTP
|HTTPS
|TCP
|SSL
). - load_
balancer_ floatport - The port on which the load balancer is listening (between
1
and65535
, both included). - load_
balancer_ strprotocol - The routing protocol (
HTTP
|HTTPS
|TCP
|SSL
). - policy_
names Sequence[str] - The names of the policies. If there are no policies enabled, the list is empty.
- server_
certificate_ strid - The OUTSCALE Resource Name (ORN) of the server certificate. For more information, see Resource Identifiers > OUTSCALE Resource Names (ORNs).
- backend
Port Number - The port on which the backend VM is listening (between
1
and65535
, both included). - backend
Protocol String - The protocol for routing traffic to backend VMs (
HTTP
|HTTPS
|TCP
|SSL
). - load
Balancer NumberPort - The port on which the load balancer is listening (between
1
and65535
, both included). - load
Balancer StringProtocol - The routing protocol (
HTTP
|HTTPS
|TCP
|SSL
). - policy
Names List<String> - The names of the policies. If there are no policies enabled, the list is empty.
- server
Certificate StringId - The OUTSCALE Resource Name (ORN) of the server certificate. For more information, see Resource Identifiers > OUTSCALE Resource Names (ORNs).
LoadBalancerPolicyLoadBalancerStickyCookiePolicy, LoadBalancerPolicyLoadBalancerStickyCookiePolicyArgs
- Policy
Name string - The unique name of the policy, with a maximum length of 32 alphanumeric characters and dashes (
-
).
- Policy
Name string - The unique name of the policy, with a maximum length of 32 alphanumeric characters and dashes (
-
).
- policy
Name String - The unique name of the policy, with a maximum length of 32 alphanumeric characters and dashes (
-
).
- policy
Name string - The unique name of the policy, with a maximum length of 32 alphanumeric characters and dashes (
-
).
- policy_
name str - The unique name of the policy, with a maximum length of 32 alphanumeric characters and dashes (
-
).
- policy
Name String - The unique name of the policy, with a maximum length of 32 alphanumeric characters and dashes (
-
).
LoadBalancerPolicySourceSecurityGroup, LoadBalancerPolicySourceSecurityGroupArgs
- Security
Group stringAccount Id - The account ID of the owner of the security group.
- Security
Group stringName - The name of the security group.
- Security
Group stringAccount Id - The account ID of the owner of the security group.
- Security
Group stringName - The name of the security group.
- security
Group StringAccount Id - The account ID of the owner of the security group.
- security
Group StringName - The name of the security group.
- security
Group stringAccount Id - The account ID of the owner of the security group.
- security
Group stringName - The name of the security group.
- security_
group_ straccount_ id - The account ID of the owner of the security group.
- security_
group_ strname - The name of the security group.
- security
Group StringAccount Id - The account ID of the owner of the security group.
- security
Group StringName - The name of the security group.
LoadBalancerPolicyTag, LoadBalancerPolicyTagArgs
Package Details
- Repository
- outscale outscale/terraform-provider-outscale
- License
- Notes
- This Pulumi package is based on the
outscale
Terraform Provider.