{"id":48509278,"url":"https://github.com/sidick/terraform-aws-elb-ssl-negotiation","last_synced_at":"2026-04-07T17:02:38.054Z","repository":{"id":79758063,"uuid":"114235001","full_name":"sidick/terraform-aws-elb-ssl-negotiation","owner":"sidick","description":"Terraform module which creates ELB SSL Negotiation Policy","archived":false,"fork":false,"pushed_at":"2024-05-03T14:27:37.000Z","size":43,"stargazers_count":1,"open_issues_count":2,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-03-02T01:33:29.581Z","etag":null,"topics":["elb","ssl","terraform","terraform-module","terraform-modules"],"latest_commit_sha":null,"homepage":"","language":"HCL","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sidick.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-12-14T10:11:59.000Z","updated_at":"2024-05-03T14:27:30.000Z","dependencies_parsed_at":"2024-05-03T16:04:54.612Z","dependency_job_id":null,"html_url":"https://github.com/sidick/terraform-aws-elb-ssl-negotiation","commit_stats":null,"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/sidick/terraform-aws-elb-ssl-negotiation","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sidick%2Fterraform-aws-elb-ssl-negotiation","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sidick%2Fterraform-aws-elb-ssl-negotiation/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sidick%2Fterraform-aws-elb-ssl-negotiation/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sidick%2Fterraform-aws-elb-ssl-negotiation/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sidick","download_url":"https://codeload.github.com/sidick/terraform-aws-elb-ssl-negotiation/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sidick%2Fterraform-aws-elb-ssl-negotiation/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31291338,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-01T13:12:26.723Z","status":"ssl_error","status_checked_at":"2026-04-01T13:12:25.102Z","response_time":53,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["elb","ssl","terraform","terraform-module","terraform-modules"],"created_at":"2026-04-07T17:02:37.313Z","updated_at":"2026-04-07T17:02:38.048Z","avatar_url":"https://github.com/sidick.png","language":"HCL","funding_links":[],"categories":[],"sub_categories":[],"readme":"# terraform-aws-elb-ssl-negotiation\n\n## AWS ELB SSL Negotiation Policy Terraform module\n\nTerraform module which creates [SSL Negotiation Configurations for Classic Load Balancers](http://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-ssl-security-policy.html) on AWS.\n\nThese types of resources are supported:\n\n*   [AWS Classic ELB SSL Negotiation Policy](https://www.terraform.io/docs/providers/aws/r/lb_ssl_negotiation_policy.html)\n\n### Features\n\nThis 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:\n*   Generic module which allows the setting of any combination of ciphers and protocols.\n*   Pre-written modules to implement all of the Amazon supplied default policies.\n*   Allowing the customisation of default policies.\n\nIf there is a missing feature or a bug - [open an issue](https://github.com/sidick/terraform-aws-elb-ssl-negotiation/issues/new).\n\n### Usage\n\nThere are two ways to create security groups using this module:\n\n#### 1. SSL Negotiation Policy with custom rules\n\n```hcl\nmodule \"elb_ssl_policy\" {\n  source = \"sidick/elb-ssl-negotiation/aws\"\n\n  ssl_policy_name    = \"default_policy\"\n  load_balancer_id   = \"example_lb\"\n  load_balancer_port = \"443\"\n\n  protocol_tlsv12             = \"true\"\n  ecdhe_rsa_aes128_gcm_sha256 = \"true\"\n  server_defined_cipher_order = \"true\"\n}\n\n```\n\n\n#### 2. SSL Negotiation Policy with pre-defined rules but with use of TLSv1 overridden and disabled\n\n```hcl\nmodule \"elb_ssl_policy\" {\n  source = \"sidick/elb-ssl-negotiation/aws//modules/ELBSecurityPolicy-2016-08\"\n\n  ssl_policy_name    = \"default_policy\"\n  load_balancer_id   = \"example_lb\"\n  load_balancer_port = \"443\"\n\n  protocol_tlsv1 = \"false\"\n}\n```\n\n\n### How to update the ciphers and protocols\n\nThe 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`\n\n### Authors\n\nModule managed by [Simon Dick](https://github.com/sidick).\n\n### License\n\nBSD 3-Clause License. See LICENSE for full details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsidick%2Fterraform-aws-elb-ssl-negotiation","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsidick%2Fterraform-aws-elb-ssl-negotiation","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsidick%2Fterraform-aws-elb-ssl-negotiation/lists"}