Class NodeBalancerConfigArgs
Inherited Members
Namespace: Pulumi.Linode
Assembly: Pulumi.Linode.dll
Syntax
public sealed class NodeBalancerConfigArgs : ResourceArgs
Constructors
View SourceNodeBalancerConfigArgs()
Declaration
public NodeBalancerConfigArgs()
Properties
View SourceAlgorithm
What algorithm this NodeBalancer should use for routing traffic to backends: roundrobin, leastconn, source
Declaration
public Input<string> Algorithm { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Check
The type of check to perform against backends to ensure they are serving requests. This is used to determine if backends are up or down. If none no check is performed. connection requires only a connection to the backend to succeed. http and http_body rely on the backend serving HTTP, and that the response returned matches what is expected.
Declaration
public Input<string> Check { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
CheckAttempts
How many times to attempt a check before considering a backend to be down. (1-30)
Declaration
public Input<int> CheckAttempts { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |
CheckBody
This value must be present in the response body of the check in order for it to pass. If this value is not present in the response body of a check request, the backend is considered to be down
Declaration
public Input<string> CheckBody { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
CheckInterval
How often, in seconds, to check that backends are up and serving requests.
Declaration
public Input<int> CheckInterval { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |
CheckPassive
If true, any response from this backend with a 5xx status code will be enough for it to be considered unhealthy and taken out of rotation.
Declaration
public Input<bool> CheckPassive { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Boolean> |
CheckPath
The URL path to check on each backend. If the backend does not respond to this request it is considered to be down.
Declaration
public Input<string> CheckPath { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
CheckTimeout
How long, in seconds, to wait for a check attempt before considering it failed. (1-30)
Declaration
public Input<int> CheckTimeout { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |
CipherSuite
What ciphers to use for SSL connections served by this NodeBalancer. legacy is considered insecure and should only be used if necessary.
Declaration
public Input<string> CipherSuite { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
NodebalancerId
The ID of the NodeBalancer to access.
Declaration
public Input<int> NodebalancerId { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |
Port
The TCP port this Config is for. These values must be unique across configs on a single NodeBalancer (you can't have two configs for port 80, for example). While some ports imply some protocols, no enforcement is done and you may configure your NodeBalancer however is useful to you. For example, while port 443 is generally used for HTTPS, you do not need SSL configured to have a NodeBalancer listening on port 443. (Defaults to 80)
Declaration
public Input<int> Port { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |
Protocol
The protocol this port is configured to serve. If this is set to https you must include an ssl_cert and an ssl_key. (Defaults to "http")
Declaration
public Input<string> Protocol { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
SslCert
The certificate this port is serving. This is not returned. If set, this field will come back as <REDACTED>. Please use the ssl_commonname and ssl_fingerprint to identify the certificate.
Declaration
public Input<string> SslCert { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
SslKey
The private key corresponding to this port's certificate. This is not returned. If set, this field will come back as <REDACTED>. Please use the ssl_commonname and ssl_fingerprint to identify the certificate.
Declaration
public Input<string> SslKey { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Stickiness
Controls how session stickiness is handled on this port: 'none', 'table', 'http_cookie'
Declaration
public Input<string> Stickiness { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |