outscale.LoadBalancerAttributes
Explore with Pulumi AI
Manages load balancer attributes.
For more information on this resource, see the User Guide.
For more information on this resource actions, see the API documentation.
Example Usage
Required resource
import * as pulumi from "@pulumi/pulumi";
import * as outscale from "@pulumi/outscale";
const loadBalancer01 = new outscale.LoadBalancer("loadBalancer01", {
listeners: [
{
backendPort: 80,
backendProtocol: "HTTP",
loadBalancerPort: 80,
loadBalancerProtocol: "HTTP",
},
{
backendPort: 8080,
backendProtocol: "HTTPS",
loadBalancerPort: 8080,
loadBalancerProtocol: "HTTPS",
serverCertificateId: "arn:aws:iam::012345678910:server-certificate/MyCertificates/Certificate",
},
{
backendPort: 1024,
backendProtocol: "TCP",
loadBalancerPort: 1024,
loadBalancerProtocol: "TCP",
},
],
loadBalancerName: "terraform-load-balancer",
subregionNames: ["eu-west-2a"],
tags: [
{
key: "name",
value: "terraform-load-balancer",
},
{
key: "platform",
value: "eu-west-2",
},
],
});
import pulumi
import pulumi_outscale as outscale
load_balancer01 = outscale.LoadBalancer("loadBalancer01",
listeners=[
{
"backend_port": 80,
"backend_protocol": "HTTP",
"load_balancer_port": 80,
"load_balancer_protocol": "HTTP",
},
{
"backend_port": 8080,
"backend_protocol": "HTTPS",
"load_balancer_port": 8080,
"load_balancer_protocol": "HTTPS",
"server_certificate_id": "arn:aws:iam::012345678910:server-certificate/MyCertificates/Certificate",
},
{
"backend_port": 1024,
"backend_protocol": "TCP",
"load_balancer_port": 1024,
"load_balancer_protocol": "TCP",
},
],
load_balancer_name="terraform-load-balancer",
subregion_names=["eu-west-2a"],
tags=[
{
"key": "name",
"value": "terraform-load-balancer",
},
{
"key": "platform",
"value": "eu-west-2",
},
])
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(80),
BackendProtocol: pulumi.String("HTTP"),
LoadBalancerPort: pulumi.Float64(80),
LoadBalancerProtocol: pulumi.String("HTTP"),
},
&outscale.LoadBalancerListenerArgs{
BackendPort: pulumi.Float64(8080),
BackendProtocol: pulumi.String("HTTPS"),
LoadBalancerPort: pulumi.Float64(8080),
LoadBalancerProtocol: pulumi.String("HTTPS"),
ServerCertificateId: pulumi.String("arn:aws:iam::012345678910:server-certificate/MyCertificates/Certificate"),
},
&outscale.LoadBalancerListenerArgs{
BackendPort: pulumi.Float64(1024),
BackendProtocol: pulumi.String("TCP"),
LoadBalancerPort: pulumi.Float64(1024),
LoadBalancerProtocol: pulumi.String("TCP"),
},
},
LoadBalancerName: pulumi.String("terraform-load-balancer"),
SubregionNames: pulumi.StringArray{
pulumi.String("eu-west-2a"),
},
Tags: outscale.LoadBalancerTagArray{
&outscale.LoadBalancerTagArgs{
Key: pulumi.String("name"),
Value: pulumi.String("terraform-load-balancer"),
},
&outscale.LoadBalancerTagArgs{
Key: pulumi.String("platform"),
Value: pulumi.String("eu-west-2"),
},
},
})
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 = 80,
BackendProtocol = "HTTP",
LoadBalancerPort = 80,
LoadBalancerProtocol = "HTTP",
},
new Outscale.Inputs.LoadBalancerListenerArgs
{
BackendPort = 8080,
BackendProtocol = "HTTPS",
LoadBalancerPort = 8080,
LoadBalancerProtocol = "HTTPS",
ServerCertificateId = "arn:aws:iam::012345678910:server-certificate/MyCertificates/Certificate",
},
new Outscale.Inputs.LoadBalancerListenerArgs
{
BackendPort = 1024,
BackendProtocol = "TCP",
LoadBalancerPort = 1024,
LoadBalancerProtocol = "TCP",
},
},
LoadBalancerName = "terraform-load-balancer",
SubregionNames = new[]
{
"eu-west-2a",
},
Tags = new[]
{
new Outscale.Inputs.LoadBalancerTagArgs
{
Key = "name",
Value = "terraform-load-balancer",
},
new Outscale.Inputs.LoadBalancerTagArgs
{
Key = "platform",
Value = "eu-west-2",
},
},
});
});
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.inputs.LoadBalancerTagArgs;
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(80)
.backendProtocol("HTTP")
.loadBalancerPort(80)
.loadBalancerProtocol("HTTP")
.build(),
LoadBalancerListenerArgs.builder()
.backendPort(8080)
.backendProtocol("HTTPS")
.loadBalancerPort(8080)
.loadBalancerProtocol("HTTPS")
.serverCertificateId("arn:aws:iam::012345678910:server-certificate/MyCertificates/Certificate")
.build(),
LoadBalancerListenerArgs.builder()
.backendPort(1024)
.backendProtocol("TCP")
.loadBalancerPort(1024)
.loadBalancerProtocol("TCP")
.build())
.loadBalancerName("terraform-load-balancer")
.subregionNames("eu-west-2a")
.tags(
LoadBalancerTagArgs.builder()
.key("name")
.value("terraform-load-balancer")
.build(),
LoadBalancerTagArgs.builder()
.key("platform")
.value("eu-west-2")
.build())
.build());
}
}
resources:
loadBalancer01:
type: outscale:LoadBalancer
properties:
listeners:
- backendPort: 80
backendProtocol: HTTP
loadBalancerPort: 80
loadBalancerProtocol: HTTP
- backendPort: 8080
backendProtocol: HTTPS
loadBalancerPort: 8080
loadBalancerProtocol: HTTPS
serverCertificateId: arn:aws:iam::012345678910:server-certificate/MyCertificates/Certificate
- backendPort: 1024
backendProtocol: TCP
loadBalancerPort: 1024
loadBalancerProtocol: TCP
loadBalancerName: terraform-load-balancer
subregionNames:
- eu-west-2a
tags:
- key: name
value: terraform-load-balancer
- key: platform
value: eu-west-2
Update health check
import * as pulumi from "@pulumi/pulumi";
import * as outscale from "@pulumi/outscale";
const attributes01 = new outscale.LoadBalancerAttributes("attributes01", {
loadBalancerName: outscale_load_balancer.load_balancer01.id,
healthCheck: {
healthyThreshold: 10,
checkInterval: 30,
path: "/index.html",
port: 8080,
protocol: "HTTPS",
timeout: 5,
unhealthyThreshold: 5,
},
});
import pulumi
import pulumi_outscale as outscale
attributes01 = outscale.LoadBalancerAttributes("attributes01",
load_balancer_name=outscale_load_balancer["load_balancer01"]["id"],
health_check={
"healthy_threshold": 10,
"check_interval": 30,
"path": "/index.html",
"port": 8080,
"protocol": "HTTPS",
"timeout": 5,
"unhealthy_threshold": 5,
})
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.NewLoadBalancerAttributes(ctx, "attributes01", &outscale.LoadBalancerAttributesArgs{
LoadBalancerName: pulumi.Any(outscale_load_balancer.Load_balancer01.Id),
HealthCheck: &outscale.LoadBalancerAttributesHealthCheckArgs{
HealthyThreshold: pulumi.Float64(10),
CheckInterval: pulumi.Float64(30),
Path: pulumi.String("/index.html"),
Port: pulumi.Float64(8080),
Protocol: pulumi.String("HTTPS"),
Timeout: pulumi.Float64(5),
UnhealthyThreshold: pulumi.Float64(5),
},
})
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 attributes01 = new Outscale.LoadBalancerAttributes("attributes01", new()
{
LoadBalancerName = outscale_load_balancer.Load_balancer01.Id,
HealthCheck = new Outscale.Inputs.LoadBalancerAttributesHealthCheckArgs
{
HealthyThreshold = 10,
CheckInterval = 30,
Path = "/index.html",
Port = 8080,
Protocol = "HTTPS",
Timeout = 5,
UnhealthyThreshold = 5,
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.outscale.LoadBalancerAttributes;
import com.pulumi.outscale.LoadBalancerAttributesArgs;
import com.pulumi.outscale.inputs.LoadBalancerAttributesHealthCheckArgs;
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 attributes01 = new LoadBalancerAttributes("attributes01", LoadBalancerAttributesArgs.builder()
.loadBalancerName(outscale_load_balancer.load_balancer01().id())
.healthCheck(LoadBalancerAttributesHealthCheckArgs.builder()
.healthyThreshold(10)
.checkInterval(30)
.path("/index.html")
.port(8080)
.protocol("HTTPS")
.timeout(5)
.unhealthyThreshold(5)
.build())
.build());
}
}
resources:
attributes01:
type: outscale:LoadBalancerAttributes
properties:
loadBalancerName: ${outscale_load_balancer.load_balancer01.id}
healthCheck:
healthyThreshold: 10
checkInterval: 30
path: /index.html
port: 8080
protocol: HTTPS
timeout: 5
unhealthyThreshold: 5
Update access log
import * as pulumi from "@pulumi/pulumi";
import * as outscale from "@pulumi/outscale";
const attributes02 = new outscale.LoadBalancerAttributes("attributes02", {
loadBalancerName: outscale_load_balancer.load_balancer01.id,
accessLog: {
publicationInterval: 5,
isEnabled: true,
osuBucketName: "terraform-access-logs",
osuBucketPrefix: "access-logs-01234",
},
});
import pulumi
import pulumi_outscale as outscale
attributes02 = outscale.LoadBalancerAttributes("attributes02",
load_balancer_name=outscale_load_balancer["load_balancer01"]["id"],
access_log={
"publication_interval": 5,
"is_enabled": True,
"osu_bucket_name": "terraform-access-logs",
"osu_bucket_prefix": "access-logs-01234",
})
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.NewLoadBalancerAttributes(ctx, "attributes02", &outscale.LoadBalancerAttributesArgs{
LoadBalancerName: pulumi.Any(outscale_load_balancer.Load_balancer01.Id),
AccessLog: &outscale.LoadBalancerAttributesAccessLogArgs{
PublicationInterval: pulumi.Float64(5),
IsEnabled: pulumi.Bool(true),
OsuBucketName: pulumi.String("terraform-access-logs"),
OsuBucketPrefix: pulumi.String("access-logs-01234"),
},
})
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 attributes02 = new Outscale.LoadBalancerAttributes("attributes02", new()
{
LoadBalancerName = outscale_load_balancer.Load_balancer01.Id,
AccessLog = new Outscale.Inputs.LoadBalancerAttributesAccessLogArgs
{
PublicationInterval = 5,
IsEnabled = true,
OsuBucketName = "terraform-access-logs",
OsuBucketPrefix = "access-logs-01234",
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.outscale.LoadBalancerAttributes;
import com.pulumi.outscale.LoadBalancerAttributesArgs;
import com.pulumi.outscale.inputs.LoadBalancerAttributesAccessLogArgs;
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 attributes02 = new LoadBalancerAttributes("attributes02", LoadBalancerAttributesArgs.builder()
.loadBalancerName(outscale_load_balancer.load_balancer01().id())
.accessLog(LoadBalancerAttributesAccessLogArgs.builder()
.publicationInterval(5)
.isEnabled(true)
.osuBucketName("terraform-access-logs")
.osuBucketPrefix("access-logs-01234")
.build())
.build());
}
}
resources:
attributes02:
type: outscale:LoadBalancerAttributes
properties:
loadBalancerName: ${outscale_load_balancer.load_balancer01.id}
accessLog:
publicationInterval: 5
isEnabled: true
osuBucketName: terraform-access-logs
osuBucketPrefix: access-logs-01234
Update policies
import * as pulumi from "@pulumi/pulumi";
import * as outscale from "@pulumi/outscale";
const attributes03 = new outscale.LoadBalancerAttributes("attributes03", {
loadBalancerName: outscale_load_balancer.load_balancer01.id,
loadBalancerPort: 80,
policyNames: ["policy-name-01"],
});
import pulumi
import pulumi_outscale as outscale
attributes03 = outscale.LoadBalancerAttributes("attributes03",
load_balancer_name=outscale_load_balancer["load_balancer01"]["id"],
load_balancer_port=80,
policy_names=["policy-name-01"])
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.NewLoadBalancerAttributes(ctx, "attributes03", &outscale.LoadBalancerAttributesArgs{
LoadBalancerName: pulumi.Any(outscale_load_balancer.Load_balancer01.Id),
LoadBalancerPort: pulumi.Float64(80),
PolicyNames: pulumi.StringArray{
pulumi.String("policy-name-01"),
},
})
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 attributes03 = new Outscale.LoadBalancerAttributes("attributes03", new()
{
LoadBalancerName = outscale_load_balancer.Load_balancer01.Id,
LoadBalancerPort = 80,
PolicyNames = new[]
{
"policy-name-01",
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.outscale.LoadBalancerAttributes;
import com.pulumi.outscale.LoadBalancerAttributesArgs;
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 attributes03 = new LoadBalancerAttributes("attributes03", LoadBalancerAttributesArgs.builder()
.loadBalancerName(outscale_load_balancer.load_balancer01().id())
.loadBalancerPort(80)
.policyNames("policy-name-01")
.build());
}
}
resources:
attributes03:
type: outscale:LoadBalancerAttributes
properties:
loadBalancerName: ${outscale_load_balancer.load_balancer01.id}
loadBalancerPort: 80
policyNames:
- policy-name-01
Update SSL certificate
import * as pulumi from "@pulumi/pulumi";
import * as outscale from "@pulumi/outscale";
const attributes04 = new outscale.LoadBalancerAttributes("attributes04", {
loadBalancerName: outscale_load_balancer.load_balancer01.id,
loadBalancerPort: 8080,
serverCertificateId: "arn:aws:iam::012345678910:server-certificate/MyCertificates/Certificate",
});
import pulumi
import pulumi_outscale as outscale
attributes04 = outscale.LoadBalancerAttributes("attributes04",
load_balancer_name=outscale_load_balancer["load_balancer01"]["id"],
load_balancer_port=8080,
server_certificate_id="arn:aws:iam::012345678910:server-certificate/MyCertificates/Certificate")
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.NewLoadBalancerAttributes(ctx, "attributes04", &outscale.LoadBalancerAttributesArgs{
LoadBalancerName: pulumi.Any(outscale_load_balancer.Load_balancer01.Id),
LoadBalancerPort: pulumi.Float64(8080),
ServerCertificateId: pulumi.String("arn:aws:iam::012345678910:server-certificate/MyCertificates/Certificate"),
})
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 attributes04 = new Outscale.LoadBalancerAttributes("attributes04", new()
{
LoadBalancerName = outscale_load_balancer.Load_balancer01.Id,
LoadBalancerPort = 8080,
ServerCertificateId = "arn:aws:iam::012345678910:server-certificate/MyCertificates/Certificate",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.outscale.LoadBalancerAttributes;
import com.pulumi.outscale.LoadBalancerAttributesArgs;
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 attributes04 = new LoadBalancerAttributes("attributes04", LoadBalancerAttributesArgs.builder()
.loadBalancerName(outscale_load_balancer.load_balancer01().id())
.loadBalancerPort(8080)
.serverCertificateId("arn:aws:iam::012345678910:server-certificate/MyCertificates/Certificate")
.build());
}
}
resources:
attributes04:
type: outscale:LoadBalancerAttributes
properties:
loadBalancerName: ${outscale_load_balancer.load_balancer01.id}
loadBalancerPort: 8080
serverCertificateId: arn:aws:iam::012345678910:server-certificate/MyCertificates/Certificate
Create LoadBalancerAttributes Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new LoadBalancerAttributes(name: string, args: LoadBalancerAttributesArgs, opts?: CustomResourceOptions);
@overload
def LoadBalancerAttributes(resource_name: str,
args: LoadBalancerAttributesArgs,
opts: Optional[ResourceOptions] = None)
@overload
def LoadBalancerAttributes(resource_name: str,
opts: Optional[ResourceOptions] = None,
load_balancer_name: Optional[str] = None,
access_log: Optional[LoadBalancerAttributesAccessLogArgs] = None,
health_check: Optional[LoadBalancerAttributesHealthCheckArgs] = None,
load_balancer_attributes_id: Optional[str] = None,
load_balancer_port: Optional[float] = None,
policy_names: Optional[Sequence[str]] = None,
server_certificate_id: Optional[str] = None,
tags: Optional[Sequence[LoadBalancerAttributesTagArgs]] = None)
func NewLoadBalancerAttributes(ctx *Context, name string, args LoadBalancerAttributesArgs, opts ...ResourceOption) (*LoadBalancerAttributes, error)
public LoadBalancerAttributes(string name, LoadBalancerAttributesArgs args, CustomResourceOptions? opts = null)
public LoadBalancerAttributes(String name, LoadBalancerAttributesArgs args)
public LoadBalancerAttributes(String name, LoadBalancerAttributesArgs args, CustomResourceOptions options)
type: outscale:LoadBalancerAttributes
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 LoadBalancerAttributesArgs
- 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 LoadBalancerAttributesArgs
- 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 LoadBalancerAttributesArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args LoadBalancerAttributesArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args LoadBalancerAttributesArgs
- 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 loadBalancerAttributesResource = new Outscale.LoadBalancerAttributes("loadBalancerAttributesResource", new()
{
LoadBalancerName = "string",
AccessLog = new Outscale.Inputs.LoadBalancerAttributesAccessLogArgs
{
IsEnabled = false,
OsuBucketName = "string",
OsuBucketPrefix = "string",
PublicationInterval = 0,
},
HealthCheck = new Outscale.Inputs.LoadBalancerAttributesHealthCheckArgs
{
Port = 0,
Protocol = "string",
CheckInterval = 0,
HealthyThreshold = 0,
Path = "string",
Timeout = 0,
UnhealthyThreshold = 0,
},
LoadBalancerAttributesId = "string",
LoadBalancerPort = 0,
PolicyNames = new[]
{
"string",
},
ServerCertificateId = "string",
Tags = new[]
{
new Outscale.Inputs.LoadBalancerAttributesTagArgs
{
Key = "string",
Value = "string",
},
},
});
example, err := outscale.NewLoadBalancerAttributes(ctx, "loadBalancerAttributesResource", &outscale.LoadBalancerAttributesArgs{
LoadBalancerName: pulumi.String("string"),
AccessLog: &.LoadBalancerAttributesAccessLogArgs{
IsEnabled: pulumi.Bool(false),
OsuBucketName: pulumi.String("string"),
OsuBucketPrefix: pulumi.String("string"),
PublicationInterval: pulumi.Float64(0),
},
HealthCheck: &.LoadBalancerAttributesHealthCheckArgs{
Port: pulumi.Float64(0),
Protocol: pulumi.String("string"),
CheckInterval: pulumi.Float64(0),
HealthyThreshold: pulumi.Float64(0),
Path: pulumi.String("string"),
Timeout: pulumi.Float64(0),
UnhealthyThreshold: pulumi.Float64(0),
},
LoadBalancerAttributesId: pulumi.String("string"),
LoadBalancerPort: pulumi.Float64(0),
PolicyNames: pulumi.StringArray{
pulumi.String("string"),
},
ServerCertificateId: pulumi.String("string"),
Tags: .LoadBalancerAttributesTagArray{
&.LoadBalancerAttributesTagArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
})
var loadBalancerAttributesResource = new LoadBalancerAttributes("loadBalancerAttributesResource", LoadBalancerAttributesArgs.builder()
.loadBalancerName("string")
.accessLog(LoadBalancerAttributesAccessLogArgs.builder()
.isEnabled(false)
.osuBucketName("string")
.osuBucketPrefix("string")
.publicationInterval(0)
.build())
.healthCheck(LoadBalancerAttributesHealthCheckArgs.builder()
.port(0)
.protocol("string")
.checkInterval(0)
.healthyThreshold(0)
.path("string")
.timeout(0)
.unhealthyThreshold(0)
.build())
.loadBalancerAttributesId("string")
.loadBalancerPort(0)
.policyNames("string")
.serverCertificateId("string")
.tags(LoadBalancerAttributesTagArgs.builder()
.key("string")
.value("string")
.build())
.build());
load_balancer_attributes_resource = outscale.LoadBalancerAttributes("loadBalancerAttributesResource",
load_balancer_name="string",
access_log={
"is_enabled": False,
"osu_bucket_name": "string",
"osu_bucket_prefix": "string",
"publication_interval": 0,
},
health_check={
"port": 0,
"protocol": "string",
"check_interval": 0,
"healthy_threshold": 0,
"path": "string",
"timeout": 0,
"unhealthy_threshold": 0,
},
load_balancer_attributes_id="string",
load_balancer_port=0,
policy_names=["string"],
server_certificate_id="string",
tags=[{
"key": "string",
"value": "string",
}])
const loadBalancerAttributesResource = new outscale.LoadBalancerAttributes("loadBalancerAttributesResource", {
loadBalancerName: "string",
accessLog: {
isEnabled: false,
osuBucketName: "string",
osuBucketPrefix: "string",
publicationInterval: 0,
},
healthCheck: {
port: 0,
protocol: "string",
checkInterval: 0,
healthyThreshold: 0,
path: "string",
timeout: 0,
unhealthyThreshold: 0,
},
loadBalancerAttributesId: "string",
loadBalancerPort: 0,
policyNames: ["string"],
serverCertificateId: "string",
tags: [{
key: "string",
value: "string",
}],
});
type: outscale:LoadBalancerAttributes
properties:
accessLog:
isEnabled: false
osuBucketName: string
osuBucketPrefix: string
publicationInterval: 0
healthCheck:
checkInterval: 0
healthyThreshold: 0
path: string
port: 0
protocol: string
timeout: 0
unhealthyThreshold: 0
loadBalancerAttributesId: string
loadBalancerName: string
loadBalancerPort: 0
policyNames:
- string
serverCertificateId: string
tags:
- key: string
value: string
LoadBalancerAttributes 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 LoadBalancerAttributes resource accepts the following input properties:
- Load
Balancer stringName - The name of the load balancer.
- Access
Log LoadBalancer Attributes Access Log - Information about access logs.
- Health
Check LoadBalancer Attributes Health Check - Information about the health check configuration.
- Load
Balancer stringAttributes Id - Load
Balancer doublePort - The port on which the load balancer is listening (between
1
and65535
, both included). This parameter is required if you want to update the server certificate. - Policy
Names List<string> - The name of the policy you want to enable for the listener.
- Server
Certificate stringId - The OUTSCALE Resource Name (ORN) of the server certificate. For more information, see Resource Identifiers > OUTSCALE Resource Names (ORNs). If this parameter is specified, you must also specify the
load_balancer_port
parameter. - List<Load
Balancer Attributes Tag> - One or more tags associated with the load balancer.
- Load
Balancer stringName - The name of the load balancer.
- Access
Log LoadBalancer Attributes Access Log Args - Information about access logs.
- Health
Check LoadBalancer Attributes Health Check Args - Information about the health check configuration.
- Load
Balancer stringAttributes Id - Load
Balancer float64Port - The port on which the load balancer is listening (between
1
and65535
, both included). This parameter is required if you want to update the server certificate. - Policy
Names []string - The name of the policy you want to enable for the listener.
- Server
Certificate stringId - The OUTSCALE Resource Name (ORN) of the server certificate. For more information, see Resource Identifiers > OUTSCALE Resource Names (ORNs). If this parameter is specified, you must also specify the
load_balancer_port
parameter. - []Load
Balancer Attributes Tag Args - One or more tags associated with the load balancer.
- load
Balancer StringName - The name of the load balancer.
- access
Log LoadBalancer Attributes Access Log - Information about access logs.
- health
Check LoadBalancer Attributes Health Check - Information about the health check configuration.
- load
Balancer StringAttributes Id - load
Balancer DoublePort - The port on which the load balancer is listening (between
1
and65535
, both included). This parameter is required if you want to update the server certificate. - policy
Names List<String> - The name of the policy you want to enable for the listener.
- server
Certificate StringId - The OUTSCALE Resource Name (ORN) of the server certificate. For more information, see Resource Identifiers > OUTSCALE Resource Names (ORNs). If this parameter is specified, you must also specify the
load_balancer_port
parameter. - List<Load
Balancer Attributes Tag> - One or more tags associated with the load balancer.
- load
Balancer stringName - The name of the load balancer.
- access
Log LoadBalancer Attributes Access Log - Information about access logs.
- health
Check LoadBalancer Attributes Health Check - Information about the health check configuration.
- load
Balancer stringAttributes Id - load
Balancer numberPort - The port on which the load balancer is listening (between
1
and65535
, both included). This parameter is required if you want to update the server certificate. - policy
Names string[] - The name of the policy you want to enable for the listener.
- server
Certificate stringId - The OUTSCALE Resource Name (ORN) of the server certificate. For more information, see Resource Identifiers > OUTSCALE Resource Names (ORNs). If this parameter is specified, you must also specify the
load_balancer_port
parameter. - Load
Balancer Attributes Tag[] - One or more tags associated with the load balancer.
- load_
balancer_ strname - The name of the load balancer.
- access_
log LoadBalancer Attributes Access Log Args - Information about access logs.
- health_
check LoadBalancer Attributes Health Check Args - Information about the health check configuration.
- load_
balancer_ strattributes_ id - load_
balancer_ floatport - The port on which the load balancer is listening (between
1
and65535
, both included). This parameter is required if you want to update the server certificate. - policy_
names Sequence[str] - The name of the policy you want to enable for the listener.
- server_
certificate_ strid - The OUTSCALE Resource Name (ORN) of the server certificate. For more information, see Resource Identifiers > OUTSCALE Resource Names (ORNs). If this parameter is specified, you must also specify the
load_balancer_port
parameter. - Sequence[Load
Balancer Attributes Tag Args] - One or more tags associated with the load balancer.
- load
Balancer StringName - The name of the load balancer.
- access
Log Property Map - Information about access logs.
- health
Check Property Map - Information about the health check configuration.
- load
Balancer StringAttributes Id - load
Balancer NumberPort - The port on which the load balancer is listening (between
1
and65535
, both included). This parameter is required if you want to update the server certificate. - policy
Names List<String> - The name of the policy you want to enable for the listener.
- server
Certificate StringId - The OUTSCALE Resource Name (ORN) of the server certificate. For more information, see Resource Identifiers > OUTSCALE Resource Names (ORNs). If this parameter is specified, you must also specify the
load_balancer_port
parameter. - List<Property Map>
- One or more tags associated with the load balancer.
Outputs
All input properties are implicitly available as output properties. Additionally, the LoadBalancerAttributes resource produces the following output properties:
- List<Load
Balancer Attributes 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.
- Dns
Name string - The DNS name of the load balancer.
- Id string
- The provider-assigned unique ID for this managed resource.
- Listeners
List<Load
Balancer Attributes Listener> - The listeners for the load balancer.
- List<Load
Balancer Attributes 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. - Request
Id string - 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 Attributes 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.
- []Load
Balancer Attributes Application Sticky Cookie Policy - The stickiness policies defined for the load balancer.
- Backend
Vm []stringIds - One or more IDs of backend VMs for the load balancer.
- Dns
Name string - The DNS name of the load balancer.
- Id string
- The provider-assigned unique ID for this managed resource.
- Listeners
[]Load
Balancer Attributes Listener - The listeners for the load balancer.
- []Load
Balancer Attributes 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. - Request
Id string - 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 Attributes 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.
- List<Load
Balancer Attributes 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.
- dns
Name String - The DNS name of the load balancer.
- id String
- The provider-assigned unique ID for this managed resource.
- listeners
List<Load
Balancer Attributes Listener> - The listeners for the load balancer.
- List<Load
Balancer Attributes 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. - request
Id String - 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 Attributes 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.
- Load
Balancer Attributes 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.
- dns
Name string - The DNS name of the load balancer.
- id string
- The provider-assigned unique ID for this managed resource.
- listeners
Load
Balancer Attributes Listener[] - The listeners for the load balancer.
- Load
Balancer Attributes 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. - request
Id string - 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 Attributes 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.
- Sequence[Load
Balancer Attributes Application Sticky Cookie Policy] - The stickiness policies defined for the load balancer.
- backend_
vm_ Sequence[str]ids - One or more IDs of backend VMs for the load balancer.
- dns_
name str - The DNS name of the load balancer.
- id str
- The provider-assigned unique ID for this managed resource.
- listeners
Sequence[Load
Balancer Attributes Listener] - The listeners for the load balancer.
- Sequence[Load
Balancer Attributes Load Balancer Sticky Cookie Policy] - 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. - request_
id str - 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 Attributes 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 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.
- 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.
- dns
Name String - The DNS name of the load balancer.
- 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.
- 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. - request
Id String - 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.
Look up Existing LoadBalancerAttributes Resource
Get an existing LoadBalancerAttributes 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?: LoadBalancerAttributesState, opts?: CustomResourceOptions): LoadBalancerAttributes
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
access_log: Optional[LoadBalancerAttributesAccessLogArgs] = None,
application_sticky_cookie_policies: Optional[Sequence[LoadBalancerAttributesApplicationStickyCookiePolicyArgs]] = None,
backend_vm_ids: Optional[Sequence[str]] = None,
dns_name: Optional[str] = None,
health_check: Optional[LoadBalancerAttributesHealthCheckArgs] = None,
listeners: Optional[Sequence[LoadBalancerAttributesListenerArgs]] = None,
load_balancer_attributes_id: Optional[str] = None,
load_balancer_name: Optional[str] = None,
load_balancer_port: Optional[float] = None,
load_balancer_sticky_cookie_policies: Optional[Sequence[LoadBalancerAttributesLoadBalancerStickyCookiePolicyArgs]] = None,
load_balancer_type: Optional[str] = None,
policy_names: Optional[Sequence[str]] = None,
request_id: Optional[str] = None,
security_groups: Optional[Sequence[str]] = None,
server_certificate_id: Optional[str] = None,
source_security_groups: Optional[Sequence[LoadBalancerAttributesSourceSecurityGroupArgs]] = None,
subnets: Optional[Sequence[str]] = None,
subregion_names: Optional[Sequence[str]] = None,
tags: Optional[Sequence[LoadBalancerAttributesTagArgs]] = None) -> LoadBalancerAttributes
func GetLoadBalancerAttributes(ctx *Context, name string, id IDInput, state *LoadBalancerAttributesState, opts ...ResourceOption) (*LoadBalancerAttributes, error)
public static LoadBalancerAttributes Get(string name, Input<string> id, LoadBalancerAttributesState? state, CustomResourceOptions? opts = null)
public static LoadBalancerAttributes get(String name, Output<String> id, LoadBalancerAttributesState state, CustomResourceOptions options)
resources: _: type: outscale:LoadBalancerAttributes 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
Log LoadBalancer Attributes Access Log - Information about access logs.
- List<Load
Balancer Attributes 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.
- Dns
Name string - The DNS name of the load balancer.
- Health
Check LoadBalancer Attributes Health Check - Information about the health check configuration.
- Listeners
List<Load
Balancer Attributes Listener> - The listeners for the load balancer.
- Load
Balancer stringAttributes Id - Load
Balancer stringName - The name of the load balancer.
- Load
Balancer doublePort - The port on which the load balancer is listening (between
1
and65535
, both included). This parameter is required if you want to update the server certificate. - List<Load
Balancer Attributes 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. - Policy
Names List<string> - The name of the policy you want to enable for the listener.
- Request
Id string - Security
Groups List<string> - One or more IDs of security groups for the load balancers. Valid only for load balancers in a Net.
- Server
Certificate stringId - The OUTSCALE Resource Name (ORN) of the server certificate. For more information, see Resource Identifiers > OUTSCALE Resource Names (ORNs). If this parameter is specified, you must also specify the
load_balancer_port
parameter. - Source
Security List<LoadGroups Balancer Attributes 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 Attributes Tag> - One or more tags associated with the load balancer.
- Access
Log LoadBalancer Attributes Access Log Args - Information about access logs.
- []Load
Balancer Attributes 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.
- Dns
Name string - The DNS name of the load balancer.
- Health
Check LoadBalancer Attributes Health Check Args - Information about the health check configuration.
- Listeners
[]Load
Balancer Attributes Listener Args - The listeners for the load balancer.
- Load
Balancer stringAttributes Id - Load
Balancer stringName - The name of the load balancer.
- Load
Balancer float64Port - The port on which the load balancer is listening (between
1
and65535
, both included). This parameter is required if you want to update the server certificate. - []Load
Balancer Attributes 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. - Policy
Names []string - The name of the policy you want to enable for the listener.
- Request
Id string - Security
Groups []string - One or more IDs of security groups for the load balancers. Valid only for load balancers in a Net.
- Server
Certificate stringId - The OUTSCALE Resource Name (ORN) of the server certificate. For more information, see Resource Identifiers > OUTSCALE Resource Names (ORNs). If this parameter is specified, you must also specify the
load_balancer_port
parameter. - Source
Security []LoadGroups Balancer Attributes 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 Attributes Tag Args - One or more tags associated with the load balancer.
- access
Log LoadBalancer Attributes Access Log - Information about access logs.
- List<Load
Balancer Attributes 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.
- dns
Name String - The DNS name of the load balancer.
- health
Check LoadBalancer Attributes Health Check - Information about the health check configuration.
- listeners
List<Load
Balancer Attributes Listener> - The listeners for the load balancer.
- load
Balancer StringAttributes Id - load
Balancer StringName - The name of the load balancer.
- load
Balancer DoublePort - The port on which the load balancer is listening (between
1
and65535
, both included). This parameter is required if you want to update the server certificate. - List<Load
Balancer Attributes 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. - policy
Names List<String> - The name of the policy you want to enable for the listener.
- request
Id String - security
Groups List<String> - One or more IDs of security groups for the load balancers. Valid only for load balancers in a Net.
- server
Certificate StringId - The OUTSCALE Resource Name (ORN) of the server certificate. For more information, see Resource Identifiers > OUTSCALE Resource Names (ORNs). If this parameter is specified, you must also specify the
load_balancer_port
parameter. - source
Security List<LoadGroups Balancer Attributes 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 Attributes Tag> - One or more tags associated with the load balancer.
- access
Log LoadBalancer Attributes Access Log - Information about access logs.
- Load
Balancer Attributes 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.
- dns
Name string - The DNS name of the load balancer.
- health
Check LoadBalancer Attributes Health Check - Information about the health check configuration.
- listeners
Load
Balancer Attributes Listener[] - The listeners for the load balancer.
- load
Balancer stringAttributes Id - load
Balancer stringName - The name of the load balancer.
- load
Balancer numberPort - The port on which the load balancer is listening (between
1
and65535
, both included). This parameter is required if you want to update the server certificate. - Load
Balancer Attributes 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. - policy
Names string[] - The name of the policy you want to enable for the listener.
- request
Id string - security
Groups string[] - One or more IDs of security groups for the load balancers. Valid only for load balancers in a Net.
- server
Certificate stringId - The OUTSCALE Resource Name (ORN) of the server certificate. For more information, see Resource Identifiers > OUTSCALE Resource Names (ORNs). If this parameter is specified, you must also specify the
load_balancer_port
parameter. - source
Security LoadGroups Balancer Attributes 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 Attributes Tag[] - One or more tags associated with the load balancer.
- access_
log LoadBalancer Attributes Access Log Args - Information about access logs.
- Sequence[Load
Balancer Attributes 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.
- dns_
name str - The DNS name of the load balancer.
- health_
check LoadBalancer Attributes Health Check Args - Information about the health check configuration.
- listeners
Sequence[Load
Balancer Attributes Listener Args] - The listeners for the load balancer.
- load_
balancer_ strattributes_ id - load_
balancer_ strname - The name of the load balancer.
- load_
balancer_ floatport - The port on which the load balancer is listening (between
1
and65535
, both included). This parameter is required if you want to update the server certificate. - Sequence[Load
Balancer Attributes 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. - policy_
names Sequence[str] - The name of the policy you want to enable for the listener.
- request_
id str - security_
groups Sequence[str] - One or more IDs of security groups for the load balancers. Valid only for load balancers in a Net.
- server_
certificate_ strid - The OUTSCALE Resource Name (ORN) of the server certificate. For more information, see Resource Identifiers > OUTSCALE Resource Names (ORNs). If this parameter is specified, you must also specify the
load_balancer_port
parameter. - source_
security_ Sequence[Loadgroups Balancer Attributes 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 Attributes Tag Args] - One or more tags associated with the load balancer.
- access
Log 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.
- dns
Name String - The DNS name of the load balancer.
- health
Check Property Map - Information about the health check configuration.
- listeners List<Property Map>
- The listeners for the load balancer.
- load
Balancer StringAttributes Id - load
Balancer StringName - The name of the load balancer.
- load
Balancer NumberPort - The port on which the load balancer is listening (between
1
and65535
, both included). This parameter is required if you want to update the server certificate. - 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. - policy
Names List<String> - The name of the policy you want to enable for the listener.
- request
Id String - security
Groups List<String> - One or more IDs of security groups for the load balancers. Valid only for load balancers in a Net.
- server
Certificate StringId - The OUTSCALE Resource Name (ORN) of the server certificate. For more information, see Resource Identifiers > OUTSCALE Resource Names (ORNs). If this parameter is specified, you must also specify the
load_balancer_port
parameter. - 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
LoadBalancerAttributesAccessLog, LoadBalancerAttributesAccessLogArgs
- 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
).
LoadBalancerAttributesApplicationStickyCookiePolicy, LoadBalancerAttributesApplicationStickyCookiePolicyArgs
- string
- The name of the application cookie used for stickiness.
- Policy
Name string - The name of the stickiness policy.
- string
- The name of the application cookie used for stickiness.
- Policy
Name string - The name of the stickiness policy.
- String
- The name of the application cookie used for stickiness.
- policy
Name String - The name of the stickiness policy.
- string
- The name of the application cookie used for stickiness.
- policy
Name string - The name of the stickiness policy.
- str
- The name of the application cookie used for stickiness.
- policy_
name str - The name of the stickiness policy.
- String
- The name of the application cookie used for stickiness.
- policy
Name String - The name of the stickiness policy.
LoadBalancerAttributesHealthCheck, LoadBalancerAttributesHealthCheckArgs
- Port double
- The port number (between
1
and65535
, both included). - Protocol string
- The protocol for the URL of the VM (
HTTP
|HTTPS
|TCP
|SSL
). - 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.
- 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).
- Port float64
- The port number (between
1
and65535
, both included). - Protocol string
- The protocol for the URL of the VM (
HTTP
|HTTPS
|TCP
|SSL
). - 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.
- 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).
- port Double
- The port number (between
1
and65535
, both included). - protocol String
- The protocol for the URL of the VM (
HTTP
|HTTPS
|TCP
|SSL
). - 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.
- 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).
- port number
- The port number (between
1
and65535
, both included). - protocol string
- The protocol for the URL of the VM (
HTTP
|HTTPS
|TCP
|SSL
). - 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.
- 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).
- port float
- The port number (between
1
and65535
, both included). - protocol str
- The protocol for the URL of the VM (
HTTP
|HTTPS
|TCP
|SSL
). - 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.
- 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).
- port Number
- The port number (between
1
and65535
, both included). - protocol String
- The protocol for the URL of the VM (
HTTP
|HTTPS
|TCP
|SSL
). - 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.
- 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).
LoadBalancerAttributesListener, LoadBalancerAttributesListenerArgs
- 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). This parameter is required if you want to update the server certificate. - Load
Balancer stringProtocol - The routing protocol (
HTTP
|HTTPS
|TCP
|SSL
). - Policy
Names List<string> - The name of the policy you want to enable for the listener.
- Server
Certificate stringId - The OUTSCALE Resource Name (ORN) of the server certificate. For more information, see Resource Identifiers > OUTSCALE Resource Names (ORNs). If this parameter is specified, you must also specify the
load_balancer_port
parameter.
- 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). This parameter is required if you want to update the server certificate. - Load
Balancer stringProtocol - The routing protocol (
HTTP
|HTTPS
|TCP
|SSL
). - Policy
Names []string - The name of the policy you want to enable for the listener.
- Server
Certificate stringId - The OUTSCALE Resource Name (ORN) of the server certificate. For more information, see Resource Identifiers > OUTSCALE Resource Names (ORNs). If this parameter is specified, you must also specify the
load_balancer_port
parameter.
- 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). This parameter is required if you want to update the server certificate. - load
Balancer StringProtocol - The routing protocol (
HTTP
|HTTPS
|TCP
|SSL
). - policy
Names List<String> - The name of the policy you want to enable for the listener.
- server
Certificate StringId - The OUTSCALE Resource Name (ORN) of the server certificate. For more information, see Resource Identifiers > OUTSCALE Resource Names (ORNs). If this parameter is specified, you must also specify the
load_balancer_port
parameter.
- 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). This parameter is required if you want to update the server certificate. - load
Balancer stringProtocol - The routing protocol (
HTTP
|HTTPS
|TCP
|SSL
). - policy
Names string[] - The name of the policy you want to enable for the listener.
- server
Certificate stringId - The OUTSCALE Resource Name (ORN) of the server certificate. For more information, see Resource Identifiers > OUTSCALE Resource Names (ORNs). If this parameter is specified, you must also specify the
load_balancer_port
parameter.
- 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). This parameter is required if you want to update the server certificate. - load_
balancer_ strprotocol - The routing protocol (
HTTP
|HTTPS
|TCP
|SSL
). - policy_
names Sequence[str] - The name of the policy you want to enable for the listener.
- server_
certificate_ strid - The OUTSCALE Resource Name (ORN) of the server certificate. For more information, see Resource Identifiers > OUTSCALE Resource Names (ORNs). If this parameter is specified, you must also specify the
load_balancer_port
parameter.
- 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). This parameter is required if you want to update the server certificate. - load
Balancer StringProtocol - The routing protocol (
HTTP
|HTTPS
|TCP
|SSL
). - policy
Names List<String> - The name of the policy you want to enable for the listener.
- server
Certificate StringId - The OUTSCALE Resource Name (ORN) of the server certificate. For more information, see Resource Identifiers > OUTSCALE Resource Names (ORNs). If this parameter is specified, you must also specify the
load_balancer_port
parameter.
LoadBalancerAttributesLoadBalancerStickyCookiePolicy, LoadBalancerAttributesLoadBalancerStickyCookiePolicyArgs
- Policy
Name string - The name of the stickiness policy.
- Policy
Name string - The name of the stickiness policy.
- policy
Name String - The name of the stickiness policy.
- policy
Name string - The name of the stickiness policy.
- policy_
name str - The name of the stickiness policy.
- policy
Name String - The name of the stickiness policy.
LoadBalancerAttributesSourceSecurityGroup, LoadBalancerAttributesSourceSecurityGroupArgs
- 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.
LoadBalancerAttributesTag, LoadBalancerAttributesTagArgs
Package Details
- Repository
- outscale outscale/terraform-provider-outscale
- License
- Notes
- This Pulumi package is based on the
outscale
Terraform Provider.