Skip to content

sidick/terraform-aws-elb-ssl-negotiation

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

terraform-aws-elb-ssl-negotiation

AWS ELB SSL Negotiation Policy Terraform module

Terraform module which creates SSL Negotiation Configurations for Classic Load Balancers on AWS.

These types of resources are supported:

Features

This module aims to allow the implementation of ALL possible combinations of SSL ciphers and protocols which are supported by AWS and latest stable version of Terraform:

  • Generic module which allows the setting of any combination of ciphers and protocols.
  • Pre-written modules to implement all of the Amazon supplied default policies.
  • Allowing the customisation of default policies.

If there is a missing feature or a bug - open an issue.

Usage

There are two ways to create security groups using this module:

1. SSL Negotiation Policy with custom rules

module "elb_ssl_policy" {
  source = "sidick/elb-ssl-negotiation/aws"

  ssl_policy_name    = "default_policy"
  load_balancer_id   = "example_lb"
  load_balancer_port = "443"

  protocol_tlsv12             = "true"
  ecdhe_rsa_aes128_gcm_sha256 = "true"
  server_defined_cipher_order = "true"
}

2. SSL Negotiation Policy with pre-defined rules but with use of TLSv1 overridden and disabled

module "elb_ssl_policy" {
  source = "sidick/elb-ssl-negotiation/aws//modules/ELBSecurityPolicy-2016-08"

  ssl_policy_name    = "default_policy"
  load_balancer_id   = "example_lb"
  load_balancer_port = "443"

  protocol_tlsv1 = "false"
}

How to update the ciphers and protocols

The lists of all the protocols and ciphers are created dynamically using a python script in the examples/update_ciphers directory. If you run this script it will recreate all modules from the Jinja2 templates in that directory based on the output of aws describe-load-balancer-policies

Authors

Module managed by Simon Dick.

License

BSD 3-Clause License. See LICENSE for full details.