Show / Hide Table of Contents

Class LoadBalancerForwardingRuleArgs

Inheritance
System.Object
InputArgs
ResourceArgs
LoadBalancerForwardingRuleArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.DigitalOcean.Inputs
Assembly: Pulumi.DigitalOcean.dll
Syntax
public sealed class LoadBalancerForwardingRuleArgs : ResourceArgs

Constructors

View Source

LoadBalancerForwardingRuleArgs()

Declaration
public LoadBalancerForwardingRuleArgs()

Properties

View Source

CertificateId

The ID of the TLS certificate to be used for SSL termination.

Declaration
public Input<string> CertificateId { get; set; }
Property Value
Type Description
Input<System.String>
View Source

EntryPort

An integer representing the port on which the Load Balancer instance will listen.

Declaration
public Input<int> EntryPort { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

EntryProtocol

The protocol used for traffic to the Load Balancer. The possible values are: http, https, http2 or tcp.

Declaration
public Input<string> EntryProtocol { get; set; }
Property Value
Type Description
Input<System.String>
View Source

TargetPort

An integer representing the port on the backend Droplets to which the Load Balancer will send traffic.

Declaration
public Input<int> TargetPort { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

TargetProtocol

The protocol used for traffic from the Load Balancer to the backend Droplets. The possible values are: http, https, http2 or tcp.

Declaration
public Input<string> TargetProtocol { get; set; }
Property Value
Type Description
Input<System.String>
View Source

TlsPassthrough

A boolean value indicating whether SSL encrypted traffic will be passed through to the backend Droplets. The default value is false.

Declaration
public Input<bool> TlsPassthrough { get; set; }
Property Value
Type Description
Input<System.Boolean>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.