vultr.LoadBalancer
Explore with Pulumi AI
Get information about a Vultr load balancer.
Example Usage
Create a new load balancer:
import * as pulumi from "@pulumi/pulumi";
import * as vultr from "@ediri/vultr";
const lb = new vultr.LoadBalancer("lb", {
balancingAlgorithm: "roundrobin",
forwardingRules: [{
backendPort: 81,
backendProtocol: "http",
frontendPort: 82,
frontendProtocol: "http",
}],
healthCheck: {
checkInterval: 3,
healthyThreshold: 4,
path: "/test",
port: 8080,
protocol: "http",
responseTimeout: 1,
unhealthyThreshold: 2,
},
label: "vultr-load-balancer",
region: "ewr",
});
import pulumi
import ediri_vultr as vultr
lb = vultr.LoadBalancer("lb",
balancing_algorithm="roundrobin",
forwarding_rules=[vultr.LoadBalancerForwardingRuleArgs(
backend_port=81,
backend_protocol="http",
frontend_port=82,
frontend_protocol="http",
)],
health_check=vultr.LoadBalancerHealthCheckArgs(
check_interval=3,
healthy_threshold=4,
path="/test",
port=8080,
protocol="http",
response_timeout=1,
unhealthy_threshold=2,
),
label="vultr-load-balancer",
region="ewr")
package main
import (
"github.com/dirien/pulumi-vultr/sdk/v2/go/vultr"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := vultr.NewLoadBalancer(ctx, "lb", &vultr.LoadBalancerArgs{
BalancingAlgorithm: pulumi.String("roundrobin"),
ForwardingRules: vultr.LoadBalancerForwardingRuleArray{
&vultr.LoadBalancerForwardingRuleArgs{
BackendPort: pulumi.Int(81),
BackendProtocol: pulumi.String("http"),
FrontendPort: pulumi.Int(82),
FrontendProtocol: pulumi.String("http"),
},
},
HealthCheck: &vultr.LoadBalancerHealthCheckArgs{
CheckInterval: pulumi.Int(3),
HealthyThreshold: pulumi.Int(4),
Path: pulumi.String("/test"),
Port: pulumi.Int(8080),
Protocol: pulumi.String("http"),
ResponseTimeout: pulumi.Int(1),
UnhealthyThreshold: pulumi.Int(2),
},
Label: pulumi.String("vultr-load-balancer"),
Region: pulumi.String("ewr"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Vultr = ediri.Vultr;
return await Deployment.RunAsync(() =>
{
var lb = new Vultr.LoadBalancer("lb", new()
{
BalancingAlgorithm = "roundrobin",
ForwardingRules = new[]
{
new Vultr.Inputs.LoadBalancerForwardingRuleArgs
{
BackendPort = 81,
BackendProtocol = "http",
FrontendPort = 82,
FrontendProtocol = "http",
},
},
HealthCheck = new Vultr.Inputs.LoadBalancerHealthCheckArgs
{
CheckInterval = 3,
HealthyThreshold = 4,
Path = "/test",
Port = 8080,
Protocol = "http",
ResponseTimeout = 1,
UnhealthyThreshold = 2,
},
Label = "vultr-load-balancer",
Region = "ewr",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.vultr.LoadBalancer;
import com.pulumi.vultr.LoadBalancerArgs;
import com.pulumi.vultr.inputs.LoadBalancerForwardingRuleArgs;
import com.pulumi.vultr.inputs.LoadBalancerHealthCheckArgs;
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 lb = new LoadBalancer("lb", LoadBalancerArgs.builder()
.balancingAlgorithm("roundrobin")
.forwardingRules(LoadBalancerForwardingRuleArgs.builder()
.backendPort(81)
.backendProtocol("http")
.frontendPort(82)
.frontendProtocol("http")
.build())
.healthCheck(LoadBalancerHealthCheckArgs.builder()
.checkInterval(3)
.healthyThreshold(4)
.path("/test")
.port(8080)
.protocol("http")
.responseTimeout(1)
.unhealthyThreshold(2)
.build())
.label("vultr-load-balancer")
.region("ewr")
.build());
}
}
resources:
lb:
type: vultr:LoadBalancer
properties:
balancingAlgorithm: roundrobin
forwardingRules:
- backendPort: 81
backendProtocol: http
frontendPort: 82
frontendProtocol: http
healthCheck:
checkInterval: 3
healthyThreshold: 4
path: /test
port: 8080
protocol: http
responseTimeout: 1
unhealthyThreshold: 2
label: vultr-load-balancer
region: ewr
Create LoadBalancer Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new LoadBalancer(name: string, args: LoadBalancerArgs, opts?: CustomResourceOptions);
@overload
def LoadBalancer(resource_name: str,
args: LoadBalancerArgs,
opts: Optional[ResourceOptions] = None)
@overload
def LoadBalancer(resource_name: str,
opts: Optional[ResourceOptions] = None,
forwarding_rules: Optional[Sequence[LoadBalancerForwardingRuleArgs]] = None,
region: Optional[str] = None,
attached_instances: Optional[Sequence[str]] = None,
balancing_algorithm: Optional[str] = None,
cookie_name: Optional[str] = None,
firewall_rules: Optional[Sequence[LoadBalancerFirewallRuleArgs]] = None,
health_check: Optional[LoadBalancerHealthCheckArgs] = None,
label: Optional[str] = None,
proxy_protocol: Optional[bool] = None,
ssl: Optional[LoadBalancerSslArgs] = None,
ssl_redirect: Optional[bool] = None,
vpc: Optional[str] = None)
func NewLoadBalancer(ctx *Context, name string, args LoadBalancerArgs, opts ...ResourceOption) (*LoadBalancer, error)
public LoadBalancer(string name, LoadBalancerArgs args, CustomResourceOptions? opts = null)
public LoadBalancer(String name, LoadBalancerArgs args)
public LoadBalancer(String name, LoadBalancerArgs args, CustomResourceOptions options)
type: vultr:LoadBalancer
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 LoadBalancerArgs
- 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 LoadBalancerArgs
- 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 LoadBalancerArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args LoadBalancerArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args LoadBalancerArgs
- 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 loadBalancerResource = new Vultr.LoadBalancer("loadBalancerResource", new()
{
ForwardingRules = new[]
{
new Vultr.Inputs.LoadBalancerForwardingRuleArgs
{
BackendPort = 0,
BackendProtocol = "string",
FrontendPort = 0,
FrontendProtocol = "string",
RuleId = "string",
},
},
Region = "string",
AttachedInstances = new[]
{
"string",
},
BalancingAlgorithm = "string",
CookieName = "string",
FirewallRules = new[]
{
new Vultr.Inputs.LoadBalancerFirewallRuleArgs
{
IpType = "string",
Port = 0,
Source = "string",
Id = "string",
},
},
HealthCheck = new Vultr.Inputs.LoadBalancerHealthCheckArgs
{
Port = 0,
Protocol = "string",
CheckInterval = 0,
HealthyThreshold = 0,
Path = "string",
ResponseTimeout = 0,
UnhealthyThreshold = 0,
},
Label = "string",
ProxyProtocol = false,
Ssl = new Vultr.Inputs.LoadBalancerSslArgs
{
Certificate = "string",
PrivateKey = "string",
Chain = "string",
},
SslRedirect = false,
Vpc = "string",
});
example, err := vultr.NewLoadBalancer(ctx, "loadBalancerResource", &vultr.LoadBalancerArgs{
ForwardingRules: vultr.LoadBalancerForwardingRuleArray{
&vultr.LoadBalancerForwardingRuleArgs{
BackendPort: pulumi.Int(0),
BackendProtocol: pulumi.String("string"),
FrontendPort: pulumi.Int(0),
FrontendProtocol: pulumi.String("string"),
RuleId: pulumi.String("string"),
},
},
Region: pulumi.String("string"),
AttachedInstances: pulumi.StringArray{
pulumi.String("string"),
},
BalancingAlgorithm: pulumi.String("string"),
CookieName: pulumi.String("string"),
FirewallRules: vultr.LoadBalancerFirewallRuleArray{
&vultr.LoadBalancerFirewallRuleArgs{
IpType: pulumi.String("string"),
Port: pulumi.Int(0),
Source: pulumi.String("string"),
Id: pulumi.String("string"),
},
},
HealthCheck: &vultr.LoadBalancerHealthCheckArgs{
Port: pulumi.Int(0),
Protocol: pulumi.String("string"),
CheckInterval: pulumi.Int(0),
HealthyThreshold: pulumi.Int(0),
Path: pulumi.String("string"),
ResponseTimeout: pulumi.Int(0),
UnhealthyThreshold: pulumi.Int(0),
},
Label: pulumi.String("string"),
ProxyProtocol: pulumi.Bool(false),
Ssl: &vultr.LoadBalancerSslArgs{
Certificate: pulumi.String("string"),
PrivateKey: pulumi.String("string"),
Chain: pulumi.String("string"),
},
SslRedirect: pulumi.Bool(false),
Vpc: pulumi.String("string"),
})
var loadBalancerResource = new LoadBalancer("loadBalancerResource", LoadBalancerArgs.builder()
.forwardingRules(LoadBalancerForwardingRuleArgs.builder()
.backendPort(0)
.backendProtocol("string")
.frontendPort(0)
.frontendProtocol("string")
.ruleId("string")
.build())
.region("string")
.attachedInstances("string")
.balancingAlgorithm("string")
.cookieName("string")
.firewallRules(LoadBalancerFirewallRuleArgs.builder()
.ipType("string")
.port(0)
.source("string")
.id("string")
.build())
.healthCheck(LoadBalancerHealthCheckArgs.builder()
.port(0)
.protocol("string")
.checkInterval(0)
.healthyThreshold(0)
.path("string")
.responseTimeout(0)
.unhealthyThreshold(0)
.build())
.label("string")
.proxyProtocol(false)
.ssl(LoadBalancerSslArgs.builder()
.certificate("string")
.privateKey("string")
.chain("string")
.build())
.sslRedirect(false)
.vpc("string")
.build());
load_balancer_resource = vultr.LoadBalancer("loadBalancerResource",
forwarding_rules=[vultr.LoadBalancerForwardingRuleArgs(
backend_port=0,
backend_protocol="string",
frontend_port=0,
frontend_protocol="string",
rule_id="string",
)],
region="string",
attached_instances=["string"],
balancing_algorithm="string",
cookie_name="string",
firewall_rules=[vultr.LoadBalancerFirewallRuleArgs(
ip_type="string",
port=0,
source="string",
id="string",
)],
health_check=vultr.LoadBalancerHealthCheckArgs(
port=0,
protocol="string",
check_interval=0,
healthy_threshold=0,
path="string",
response_timeout=0,
unhealthy_threshold=0,
),
label="string",
proxy_protocol=False,
ssl=vultr.LoadBalancerSslArgs(
certificate="string",
private_key="string",
chain="string",
),
ssl_redirect=False,
vpc="string")
const loadBalancerResource = new vultr.LoadBalancer("loadBalancerResource", {
forwardingRules: [{
backendPort: 0,
backendProtocol: "string",
frontendPort: 0,
frontendProtocol: "string",
ruleId: "string",
}],
region: "string",
attachedInstances: ["string"],
balancingAlgorithm: "string",
cookieName: "string",
firewallRules: [{
ipType: "string",
port: 0,
source: "string",
id: "string",
}],
healthCheck: {
port: 0,
protocol: "string",
checkInterval: 0,
healthyThreshold: 0,
path: "string",
responseTimeout: 0,
unhealthyThreshold: 0,
},
label: "string",
proxyProtocol: false,
ssl: {
certificate: "string",
privateKey: "string",
chain: "string",
},
sslRedirect: false,
vpc: "string",
});
type: vultr:LoadBalancer
properties:
attachedInstances:
- string
balancingAlgorithm: string
cookieName: string
firewallRules:
- id: string
ipType: string
port: 0
source: string
forwardingRules:
- backendPort: 0
backendProtocol: string
frontendPort: 0
frontendProtocol: string
ruleId: string
healthCheck:
checkInterval: 0
healthyThreshold: 0
path: string
port: 0
protocol: string
responseTimeout: 0
unhealthyThreshold: 0
label: string
proxyProtocol: false
region: string
ssl:
certificate: string
chain: string
privateKey: string
sslRedirect: false
vpc: string
LoadBalancer Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The LoadBalancer resource accepts the following input properties:
- Forwarding
Rules List<ediri.Vultr. Inputs. Load Balancer Forwarding Rule> - List of forwarding rules for a load balancer. The configuration of a
forwarding_rules
is listened below. - Region string
- The region your load balancer is deployed in.
- Attached
Instances List<string> - Array of instances that are currently attached to the load balancer.
- Balancing
Algorithm string - The balancing algorithm for your load balancer. Options are
roundrobin
orleastconn
. Default value isroundrobin
- string
- Name for your given sticky session.
- Firewall
Rules List<ediri.Vultr. Inputs. Load Balancer Firewall Rule> - Defines the firewall rules for a load balancer.
- Health
Check ediri.Vultr. Inputs. Load Balancer Health Check - A block that defines the way load balancers should check for health. The configuration of a
health_check
is listed below. - Label string
- The load balancer's label.
- Proxy
Protocol bool - Boolean value that indicates if Proxy Protocol is enabled.
- Ssl
ediri.
Vultr. Inputs. Load Balancer Ssl - A block that supplies your ssl configuration to be used with HTTPS. The configuration of a
ssl
is listed below. - Ssl
Redirect bool - Boolean value that indicates if HTTP calls will be redirected to HTTPS.
- Vpc string
- A VPC ID that the load balancer should be attached to.
- Forwarding
Rules []LoadBalancer Forwarding Rule Args - List of forwarding rules for a load balancer. The configuration of a
forwarding_rules
is listened below. - Region string
- The region your load balancer is deployed in.
- Attached
Instances []string - Array of instances that are currently attached to the load balancer.
- Balancing
Algorithm string - The balancing algorithm for your load balancer. Options are
roundrobin
orleastconn
. Default value isroundrobin
- string
- Name for your given sticky session.
- Firewall
Rules []LoadBalancer Firewall Rule Args - Defines the firewall rules for a load balancer.
- Health
Check LoadBalancer Health Check Args - A block that defines the way load balancers should check for health. The configuration of a
health_check
is listed below. - Label string
- The load balancer's label.
- Proxy
Protocol bool - Boolean value that indicates if Proxy Protocol is enabled.
- Ssl
Load
Balancer Ssl Args - A block that supplies your ssl configuration to be used with HTTPS. The configuration of a
ssl
is listed below. - Ssl
Redirect bool - Boolean value that indicates if HTTP calls will be redirected to HTTPS.
- Vpc string
- A VPC ID that the load balancer should be attached to.
- forwarding
Rules List<LoadBalancer Forwarding Rule> - List of forwarding rules for a load balancer. The configuration of a
forwarding_rules
is listened below. - region String
- The region your load balancer is deployed in.
- attached
Instances List<String> - Array of instances that are currently attached to the load balancer.
- balancing
Algorithm String - The balancing algorithm for your load balancer. Options are
roundrobin
orleastconn
. Default value isroundrobin
- String
- Name for your given sticky session.
- firewall
Rules List<LoadBalancer Firewall Rule> - Defines the firewall rules for a load balancer.
- health
Check LoadBalancer Health Check - A block that defines the way load balancers should check for health. The configuration of a
health_check
is listed below. - label String
- The load balancer's label.
- proxy
Protocol Boolean - Boolean value that indicates if Proxy Protocol is enabled.
- ssl
Load
Balancer Ssl - A block that supplies your ssl configuration to be used with HTTPS. The configuration of a
ssl
is listed below. - ssl
Redirect Boolean - Boolean value that indicates if HTTP calls will be redirected to HTTPS.
- vpc String
- A VPC ID that the load balancer should be attached to.
- forwarding
Rules LoadBalancer Forwarding Rule[] - List of forwarding rules for a load balancer. The configuration of a
forwarding_rules
is listened below. - region string
- The region your load balancer is deployed in.
- attached
Instances string[] - Array of instances that are currently attached to the load balancer.
- balancing
Algorithm string - The balancing algorithm for your load balancer. Options are
roundrobin
orleastconn
. Default value isroundrobin
- string
- Name for your given sticky session.
- firewall
Rules LoadBalancer Firewall Rule[] - Defines the firewall rules for a load balancer.
- health
Check LoadBalancer Health Check - A block that defines the way load balancers should check for health. The configuration of a
health_check
is listed below. - label string
- The load balancer's label.
- proxy
Protocol boolean - Boolean value that indicates if Proxy Protocol is enabled.
- ssl
Load
Balancer Ssl - A block that supplies your ssl configuration to be used with HTTPS. The configuration of a
ssl
is listed below. - ssl
Redirect boolean - Boolean value that indicates if HTTP calls will be redirected to HTTPS.
- vpc string
- A VPC ID that the load balancer should be attached to.
- forwarding_
rules Sequence[LoadBalancer Forwarding Rule Args] - List of forwarding rules for a load balancer. The configuration of a
forwarding_rules
is listened below. - region str
- The region your load balancer is deployed in.
- attached_
instances Sequence[str] - Array of instances that are currently attached to the load balancer.
- balancing_
algorithm str - The balancing algorithm for your load balancer. Options are
roundrobin
orleastconn
. Default value isroundrobin
- str
- Name for your given sticky session.
- firewall_
rules Sequence[LoadBalancer Firewall Rule Args] - Defines the firewall rules for a load balancer.
- health_
check LoadBalancer Health Check Args - A block that defines the way load balancers should check for health. The configuration of a
health_check
is listed below. - label str
- The load balancer's label.
- proxy_
protocol bool - Boolean value that indicates if Proxy Protocol is enabled.
- ssl
Load
Balancer Ssl Args - A block that supplies your ssl configuration to be used with HTTPS. The configuration of a
ssl
is listed below. - ssl_
redirect bool - Boolean value that indicates if HTTP calls will be redirected to HTTPS.
- vpc str
- A VPC ID that the load balancer should be attached to.
- forwarding
Rules List<Property Map> - List of forwarding rules for a load balancer. The configuration of a
forwarding_rules
is listened below. - region String
- The region your load balancer is deployed in.
- attached
Instances List<String> - Array of instances that are currently attached to the load balancer.
- balancing
Algorithm String - The balancing algorithm for your load balancer. Options are
roundrobin
orleastconn
. Default value isroundrobin
- String
- Name for your given sticky session.
- firewall
Rules List<Property Map> - Defines the firewall rules for a load balancer.
- health
Check Property Map - A block that defines the way load balancers should check for health. The configuration of a
health_check
is listed below. - label String
- The load balancer's label.
- proxy
Protocol Boolean - Boolean value that indicates if Proxy Protocol is enabled.
- ssl Property Map
- A block that supplies your ssl configuration to be used with HTTPS. The configuration of a
ssl
is listed below. - ssl
Redirect Boolean - Boolean value that indicates if HTTP calls will be redirected to HTTPS.
- vpc String
- A VPC ID that the load balancer should be attached to.
Outputs
All input properties are implicitly available as output properties. Additionally, the LoadBalancer resource produces the following output properties:
Look up Existing LoadBalancer Resource
Get an existing LoadBalancer 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?: LoadBalancerState, opts?: CustomResourceOptions): LoadBalancer
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
attached_instances: Optional[Sequence[str]] = None,
balancing_algorithm: Optional[str] = None,
cookie_name: Optional[str] = None,
firewall_rules: Optional[Sequence[LoadBalancerFirewallRuleArgs]] = None,
forwarding_rules: Optional[Sequence[LoadBalancerForwardingRuleArgs]] = None,
has_ssl: Optional[bool] = None,
health_check: Optional[LoadBalancerHealthCheckArgs] = None,
ipv4: Optional[str] = None,
ipv6: Optional[str] = None,
label: Optional[str] = None,
proxy_protocol: Optional[bool] = None,
region: Optional[str] = None,
ssl: Optional[LoadBalancerSslArgs] = None,
ssl_redirect: Optional[bool] = None,
status: Optional[str] = None,
vpc: Optional[str] = None) -> LoadBalancer
func GetLoadBalancer(ctx *Context, name string, id IDInput, state *LoadBalancerState, opts ...ResourceOption) (*LoadBalancer, error)
public static LoadBalancer Get(string name, Input<string> id, LoadBalancerState? state, CustomResourceOptions? opts = null)
public static LoadBalancer get(String name, Output<String> id, LoadBalancerState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Attached
Instances List<string> - Array of instances that are currently attached to the load balancer.
- Balancing
Algorithm string - The balancing algorithm for your load balancer. Options are
roundrobin
orleastconn
. Default value isroundrobin
- string
- Name for your given sticky session.
- Firewall
Rules List<ediri.Vultr. Inputs. Load Balancer Firewall Rule> - Defines the firewall rules for a load balancer.
- Forwarding
Rules List<ediri.Vultr. Inputs. Load Balancer Forwarding Rule> - List of forwarding rules for a load balancer. The configuration of a
forwarding_rules
is listened below. - Has
Ssl bool - Boolean value that indicates if SSL is enabled.
- Health
Check ediri.Vultr. Inputs. Load Balancer Health Check - A block that defines the way load balancers should check for health. The configuration of a
health_check
is listed below. - Ipv4 string
- IPv4 address for your load balancer.
- Ipv6 string
- IPv6 address for your load balancer.
- Label string
- The load balancer's label.
- Proxy
Protocol bool - Boolean value that indicates if Proxy Protocol is enabled.
- Region string
- The region your load balancer is deployed in.
- Ssl
ediri.
Vultr. Inputs. Load Balancer Ssl - A block that supplies your ssl configuration to be used with HTTPS. The configuration of a
ssl
is listed below. - Ssl
Redirect bool - Boolean value that indicates if HTTP calls will be redirected to HTTPS.
- Status string
- Current status for the load balancer
- Vpc string
- A VPC ID that the load balancer should be attached to.
- Attached
Instances []string - Array of instances that are currently attached to the load balancer.
- Balancing
Algorithm string - The balancing algorithm for your load balancer. Options are
roundrobin
orleastconn
. Default value isroundrobin
- string
- Name for your given sticky session.
- Firewall
Rules []LoadBalancer Firewall Rule Args - Defines the firewall rules for a load balancer.
- Forwarding
Rules []LoadBalancer Forwarding Rule Args - List of forwarding rules for a load balancer. The configuration of a
forwarding_rules
is listened below. - Has
Ssl bool - Boolean value that indicates if SSL is enabled.
- Health
Check LoadBalancer Health Check Args - A block that defines the way load balancers should check for health. The configuration of a
health_check
is listed below. - Ipv4 string
- IPv4 address for your load balancer.
- Ipv6 string
- IPv6 address for your load balancer.
- Label string
- The load balancer's label.
- Proxy
Protocol bool - Boolean value that indicates if Proxy Protocol is enabled.
- Region string
- The region your load balancer is deployed in.
- Ssl
Load
Balancer Ssl Args - A block that supplies your ssl configuration to be used with HTTPS. The configuration of a
ssl
is listed below. - Ssl
Redirect bool - Boolean value that indicates if HTTP calls will be redirected to HTTPS.
- Status string
- Current status for the load balancer
- Vpc string
- A VPC ID that the load balancer should be attached to.
- attached
Instances List<String> - Array of instances that are currently attached to the load balancer.
- balancing
Algorithm String - The balancing algorithm for your load balancer. Options are
roundrobin
orleastconn
. Default value isroundrobin
- String
- Name for your given sticky session.
- firewall
Rules List<LoadBalancer Firewall Rule> - Defines the firewall rules for a load balancer.
- forwarding
Rules List<LoadBalancer Forwarding Rule> - List of forwarding rules for a load balancer. The configuration of a
forwarding_rules
is listened below. - has
Ssl Boolean - Boolean value that indicates if SSL is enabled.
- health
Check LoadBalancer Health Check - A block that defines the way load balancers should check for health. The configuration of a
health_check
is listed below. - ipv4 String
- IPv4 address for your load balancer.
- ipv6 String
- IPv6 address for your load balancer.
- label String
- The load balancer's label.
- proxy
Protocol Boolean - Boolean value that indicates if Proxy Protocol is enabled.
- region String
- The region your load balancer is deployed in.
- ssl
Load
Balancer Ssl - A block that supplies your ssl configuration to be used with HTTPS. The configuration of a
ssl
is listed below. - ssl
Redirect Boolean - Boolean value that indicates if HTTP calls will be redirected to HTTPS.
- status String
- Current status for the load balancer
- vpc String
- A VPC ID that the load balancer should be attached to.
- attached
Instances string[] - Array of instances that are currently attached to the load balancer.
- balancing
Algorithm string - The balancing algorithm for your load balancer. Options are
roundrobin
orleastconn
. Default value isroundrobin
- string
- Name for your given sticky session.
- firewall
Rules LoadBalancer Firewall Rule[] - Defines the firewall rules for a load balancer.
- forwarding
Rules LoadBalancer Forwarding Rule[] - List of forwarding rules for a load balancer. The configuration of a
forwarding_rules
is listened below. - has
Ssl boolean - Boolean value that indicates if SSL is enabled.
- health
Check LoadBalancer Health Check - A block that defines the way load balancers should check for health. The configuration of a
health_check
is listed below. - ipv4 string
- IPv4 address for your load balancer.
- ipv6 string
- IPv6 address for your load balancer.
- label string
- The load balancer's label.
- proxy
Protocol boolean - Boolean value that indicates if Proxy Protocol is enabled.
- region string
- The region your load balancer is deployed in.
- ssl
Load
Balancer Ssl - A block that supplies your ssl configuration to be used with HTTPS. The configuration of a
ssl
is listed below. - ssl
Redirect boolean - Boolean value that indicates if HTTP calls will be redirected to HTTPS.
- status string
- Current status for the load balancer
- vpc string
- A VPC ID that the load balancer should be attached to.
- attached_
instances Sequence[str] - Array of instances that are currently attached to the load balancer.
- balancing_
algorithm str - The balancing algorithm for your load balancer. Options are
roundrobin
orleastconn
. Default value isroundrobin
- str
- Name for your given sticky session.
- firewall_
rules Sequence[LoadBalancer Firewall Rule Args] - Defines the firewall rules for a load balancer.
- forwarding_
rules Sequence[LoadBalancer Forwarding Rule Args] - List of forwarding rules for a load balancer. The configuration of a
forwarding_rules
is listened below. - has_
ssl bool - Boolean value that indicates if SSL is enabled.
- health_
check LoadBalancer Health Check Args - A block that defines the way load balancers should check for health. The configuration of a
health_check
is listed below. - ipv4 str
- IPv4 address for your load balancer.
- ipv6 str
- IPv6 address for your load balancer.
- label str
- The load balancer's label.
- proxy_
protocol bool - Boolean value that indicates if Proxy Protocol is enabled.
- region str
- The region your load balancer is deployed in.
- ssl
Load
Balancer Ssl Args - A block that supplies your ssl configuration to be used with HTTPS. The configuration of a
ssl
is listed below. - ssl_
redirect bool - Boolean value that indicates if HTTP calls will be redirected to HTTPS.
- status str
- Current status for the load balancer
- vpc str
- A VPC ID that the load balancer should be attached to.
- attached
Instances List<String> - Array of instances that are currently attached to the load balancer.
- balancing
Algorithm String - The balancing algorithm for your load balancer. Options are
roundrobin
orleastconn
. Default value isroundrobin
- String
- Name for your given sticky session.
- firewall
Rules List<Property Map> - Defines the firewall rules for a load balancer.
- forwarding
Rules List<Property Map> - List of forwarding rules for a load balancer. The configuration of a
forwarding_rules
is listened below. - has
Ssl Boolean - Boolean value that indicates if SSL is enabled.
- health
Check Property Map - A block that defines the way load balancers should check for health. The configuration of a
health_check
is listed below. - ipv4 String
- IPv4 address for your load balancer.
- ipv6 String
- IPv6 address for your load balancer.
- label String
- The load balancer's label.
- proxy
Protocol Boolean - Boolean value that indicates if Proxy Protocol is enabled.
- region String
- The region your load balancer is deployed in.
- ssl Property Map
- A block that supplies your ssl configuration to be used with HTTPS. The configuration of a
ssl
is listed below. - ssl
Redirect Boolean - Boolean value that indicates if HTTP calls will be redirected to HTTPS.
- status String
- Current status for the load balancer
- vpc String
- A VPC ID that the load balancer should be attached to.
Supporting Types
LoadBalancerFirewallRule, LoadBalancerFirewallRuleArgs
LoadBalancerForwardingRule, LoadBalancerForwardingRuleArgs
- Backend
Port int - Port on instance side.
- Backend
Protocol string - Protocol on instance side. Possible values: "http", "https", "tcp".
- Frontend
Port int - Port on load balancer side.
- Frontend
Protocol string - Protocol on load balancer side. Possible values: "http", "https", "tcp".
- Rule
Id string
- Backend
Port int - Port on instance side.
- Backend
Protocol string - Protocol on instance side. Possible values: "http", "https", "tcp".
- Frontend
Port int - Port on load balancer side.
- Frontend
Protocol string - Protocol on load balancer side. Possible values: "http", "https", "tcp".
- Rule
Id string
- backend
Port Integer - Port on instance side.
- backend
Protocol String - Protocol on instance side. Possible values: "http", "https", "tcp".
- frontend
Port Integer - Port on load balancer side.
- frontend
Protocol String - Protocol on load balancer side. Possible values: "http", "https", "tcp".
- rule
Id String
- backend
Port number - Port on instance side.
- backend
Protocol string - Protocol on instance side. Possible values: "http", "https", "tcp".
- frontend
Port number - Port on load balancer side.
- frontend
Protocol string - Protocol on load balancer side. Possible values: "http", "https", "tcp".
- rule
Id string
- backend_
port int - Port on instance side.
- backend_
protocol str - Protocol on instance side. Possible values: "http", "https", "tcp".
- frontend_
port int - Port on load balancer side.
- frontend_
protocol str - Protocol on load balancer side. Possible values: "http", "https", "tcp".
- rule_
id str
- backend
Port Number - Port on instance side.
- backend
Protocol String - Protocol on instance side. Possible values: "http", "https", "tcp".
- frontend
Port Number - Port on load balancer side.
- frontend
Protocol String - Protocol on load balancer side. Possible values: "http", "https", "tcp".
- rule
Id String
LoadBalancerHealthCheck, LoadBalancerHealthCheckArgs
- Port int
- The assigned port (integer) on the attached instances that the load balancer should check against. Default value is
80
. - Protocol string
- The protocol used to traffic requests to the load balancer. Possible values are
http
, ortcp
. Default value ishttp
. - Check
Interval int - Time in seconds to perform health check. Default value is 15.
- Healthy
Threshold int - Number of failed attempts encountered before failover. Default value is 5.
- Path string
- The path on the attached instances that the load balancer should check against. Default value is
/
- Response
Timeout int - Time in seconds to wait for a health check response. Default value is 5.
- Unhealthy
Threshold int - Number of failed attempts encountered before failover. Default value is 5.
- Port int
- The assigned port (integer) on the attached instances that the load balancer should check against. Default value is
80
. - Protocol string
- The protocol used to traffic requests to the load balancer. Possible values are
http
, ortcp
. Default value ishttp
. - Check
Interval int - Time in seconds to perform health check. Default value is 15.
- Healthy
Threshold int - Number of failed attempts encountered before failover. Default value is 5.
- Path string
- The path on the attached instances that the load balancer should check against. Default value is
/
- Response
Timeout int - Time in seconds to wait for a health check response. Default value is 5.
- Unhealthy
Threshold int - Number of failed attempts encountered before failover. Default value is 5.
- port Integer
- The assigned port (integer) on the attached instances that the load balancer should check against. Default value is
80
. - protocol String
- The protocol used to traffic requests to the load balancer. Possible values are
http
, ortcp
. Default value ishttp
. - check
Interval Integer - Time in seconds to perform health check. Default value is 15.
- healthy
Threshold Integer - Number of failed attempts encountered before failover. Default value is 5.
- path String
- The path on the attached instances that the load balancer should check against. Default value is
/
- response
Timeout Integer - Time in seconds to wait for a health check response. Default value is 5.
- unhealthy
Threshold Integer - Number of failed attempts encountered before failover. Default value is 5.
- port number
- The assigned port (integer) on the attached instances that the load balancer should check against. Default value is
80
. - protocol string
- The protocol used to traffic requests to the load balancer. Possible values are
http
, ortcp
. Default value ishttp
. - check
Interval number - Time in seconds to perform health check. Default value is 15.
- healthy
Threshold number - Number of failed attempts encountered before failover. Default value is 5.
- path string
- The path on the attached instances that the load balancer should check against. Default value is
/
- response
Timeout number - Time in seconds to wait for a health check response. Default value is 5.
- unhealthy
Threshold number - Number of failed attempts encountered before failover. Default value is 5.
- port int
- The assigned port (integer) on the attached instances that the load balancer should check against. Default value is
80
. - protocol str
- The protocol used to traffic requests to the load balancer. Possible values are
http
, ortcp
. Default value ishttp
. - check_
interval int - Time in seconds to perform health check. Default value is 15.
- healthy_
threshold int - Number of failed attempts encountered before failover. Default value is 5.
- path str
- The path on the attached instances that the load balancer should check against. Default value is
/
- response_
timeout int - Time in seconds to wait for a health check response. Default value is 5.
- unhealthy_
threshold int - Number of failed attempts encountered before failover. Default value is 5.
- port Number
- The assigned port (integer) on the attached instances that the load balancer should check against. Default value is
80
. - protocol String
- The protocol used to traffic requests to the load balancer. Possible values are
http
, ortcp
. Default value ishttp
. - check
Interval Number - Time in seconds to perform health check. Default value is 15.
- healthy
Threshold Number - Number of failed attempts encountered before failover. Default value is 5.
- path String
- The path on the attached instances that the load balancer should check against. Default value is
/
- response
Timeout Number - Time in seconds to wait for a health check response. Default value is 5.
- unhealthy
Threshold Number - Number of failed attempts encountered before failover. Default value is 5.
LoadBalancerSsl, LoadBalancerSslArgs
- Certificate string
- The SSL Certificate.
- Private
Key string - The SSL certificates private key.
- Chain string
- The SSL certificate chain.
- Certificate string
- The SSL Certificate.
- Private
Key string - The SSL certificates private key.
- Chain string
- The SSL certificate chain.
- certificate String
- The SSL Certificate.
- private
Key String - The SSL certificates private key.
- chain String
- The SSL certificate chain.
- certificate string
- The SSL Certificate.
- private
Key string - The SSL certificates private key.
- chain string
- The SSL certificate chain.
- certificate str
- The SSL Certificate.
- private_
key str - The SSL certificates private key.
- chain str
- The SSL certificate chain.
- certificate String
- The SSL Certificate.
- private
Key String - The SSL certificates private key.
- chain String
- The SSL certificate chain.
Import
Load Balancers can be imported using the load balancer ID
, e.g.
$ pulumi import vultr:index/loadBalancer:LoadBalancer lb b6a859c5-b299-49dd-8888-b1abbc517d08
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- vultr dirien/pulumi-vultr
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
vultr
Terraform Provider.