AWS Elastic Load Balancing V2 SSL Negotiation Policy

This page shows how to write Terraform and CloudFormation for Elastic Load Balancing V2 SSL Negotiation Policy and write them securely.

aws_lb_ssl_negotiation_policy (Terraform)

The SSL Negotiation Policy in Elastic Load Balancing V2 can be configured in Terraform with the resource name aws_lb_ssl_negotiation_policy. The following sections describe 1 example of how to use the resource and its parameters.

Example Usage from GitHub

main.tf#L7
resource "aws_lb_ssl_negotiation_policy" "this" {
  lb_port       = var.lb_port
  load_balancer = var.load_balancer
  name          = var.name

  dynamic "attribute" {

Review your Terraform file for AWS best practices

Shisho Cloud, our free checker to make sure your Terraform configuration follows best practices, is available (beta).

Parameters

Explanation in Terraform Registry

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.

AWS::ElasticLoadBalancingV2::Listener Certificate (CloudFormation)

The Listener Certificate in ElasticLoadBalancingV2 can be configured in CloudFormation with the resource name AWS::ElasticLoadBalancingV2::Listener Certificate. The following sections describe how to use the resource and its parameters.

Example Usage from GitHub

An example could not be found in GitHub.

Parameters

CertificateArn The Amazon Resource Name (ARN) of the certificate.
Required: No
Type: String
Update requires: No interruption

Explanation in CloudFormation Registry

Specifies an SSL server certificate to use as the default certificate for a secure listener.

Frequently asked questions

What is AWS Elastic Load Balancing V2 SSL Negotiation Policy?

AWS Elastic Load Balancing V2 SSL Negotiation Policy is a resource for Elastic Load Balancing V2 of Amazon Web Service. Settings can be wrote in Terraform and CloudFormation.

Where can I find the example code for the AWS Elastic Load Balancing V2 SSL Negotiation Policy?

For Terraform, the niveklabs/aws source code example is useful. See the Terraform Example section for further details.