Show / Hide Table of Contents

Class SslNegotiationPolicy

Provides a load balancer SSL negotiation policy, which allows an ELB to control the ciphers and protocols that are supported during SSL negotiations between a client and a load balancer.

Example Usage

using Pulumi;
using Aws = Pulumi.Aws;

class MyStack : Stack
{
public MyStack()
{
    var lb = new Aws.Elb.LoadBalancer("lb", new Aws.Elb.LoadBalancerArgs
    {
        AvailabilityZones = 
        {
            "us-east-1a",
        },
        Listeners = 
        {
            new Aws.Elb.Inputs.LoadBalancerListenerArgs
            {
                InstancePort = 8000,
                InstanceProtocol = "https",
                LbPort = 443,
                LbProtocol = "https",
                SslCertificateId = "arn:aws:iam::123456789012:server-certificate/certName",
            },
        },
    });
    var foo = new Aws.Elb.SslNegotiationPolicy("foo", new Aws.Elb.SslNegotiationPolicyArgs
    {
        Attributes = 
        {
            new Aws.Elb.Inputs.SslNegotiationPolicyAttributeArgs
            {
                Name = "Protocol-TLSv1",
                Value = "false",
            },
            new Aws.Elb.Inputs.SslNegotiationPolicyAttributeArgs
            {
                Name = "Protocol-TLSv1.1",
                Value = "false",
            },
            new Aws.Elb.Inputs.SslNegotiationPolicyAttributeArgs
            {
                Name = "Protocol-TLSv1.2",
                Value = "true",
            },
            new Aws.Elb.Inputs.SslNegotiationPolicyAttributeArgs
            {
                Name = "Server-Defined-Cipher-Order",
                Value = "true",
            },
            new Aws.Elb.Inputs.SslNegotiationPolicyAttributeArgs
            {
                Name = "ECDHE-RSA-AES128-GCM-SHA256",
                Value = "true",
            },
            new Aws.Elb.Inputs.SslNegotiationPolicyAttributeArgs
            {
                Name = "AES128-GCM-SHA256",
                Value = "true",
            },
            new Aws.Elb.Inputs.SslNegotiationPolicyAttributeArgs
            {
                Name = "EDH-RSA-DES-CBC3-SHA",
                Value = "false",
            },
        },
        LbPort = 443,
        LoadBalancer = lb.Id,
    });
}

}
Inheritance
System.Object
Resource
CustomResource
SslNegotiationPolicy
Inherited Members
CustomResource.Id
Resource.GetResourceType()
Resource.GetResourceName()
Resource.Urn
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.Aws.ElasticLoadBalancing
Assembly: Pulumi.Aws.dll
Syntax
[Obsolete("aws.elasticloadbalancing.SslNegotiationPolicy has been deprecated in favor of aws.elb.SslNegotiationPolicy")]
public class SslNegotiationPolicy : CustomResource

Constructors

View Source

SslNegotiationPolicy(String, SslNegotiationPolicyArgs, CustomResourceOptions)

Create a SslNegotiationPolicy resource with the given unique name, arguments, and options.

Declaration
public SslNegotiationPolicy(string name, SslNegotiationPolicyArgs args, CustomResourceOptions options = null)
Parameters
Type Name Description
System.String name

The unique name of the resource

SslNegotiationPolicyArgs args

The arguments used to populate this resource's properties

CustomResourceOptions options

A bag of options that control this resource's behavior

Properties

View Source

Attributes

An SSL Negotiation policy attribute. Each has two properties:

Declaration
public Output<ImmutableArray<SslNegotiationPolicyAttribute>> Attributes { get; }
Property Value
Type Description
Output<System.Collections.Immutable.ImmutableArray<SslNegotiationPolicyAttribute>>
View Source

LbPort

The load balancer port to which the policy should be applied. This must be an active listener on the load balancer.

Declaration
public Output<int> LbPort { get; }
Property Value
Type Description
Output<System.Int32>
View Source

LoadBalancer

The load balancer to which the policy should be attached.

Declaration
public Output<string> LoadBalancer { get; }
Property Value
Type Description
Output<System.String>
View Source

Name

The name of the attribute

Declaration
public Output<string> Name { get; }
Property Value
Type Description
Output<System.String>

Methods

View Source

Get(String, Input<String>, SslNegotiationPolicyState, CustomResourceOptions)

Get an existing SslNegotiationPolicy resource's state with the given name, ID, and optional extra properties used to qualify the lookup.

Declaration
public static SslNegotiationPolicy Get(string name, Input<string> id, SslNegotiationPolicyState state = null, CustomResourceOptions options = null)
Parameters
Type Name Description
System.String name

The unique name of the resulting resource.

Input<System.String> id

The unique provider ID of the resource to lookup.

SslNegotiationPolicyState state

Any extra arguments used during the lookup.

CustomResourceOptions options

A bag of options that control this resource's behavior

Returns
Type Description
SslNegotiationPolicy
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.