How to update the SSL negotiation policy in using the Troposhpere framework for an AWS classic load balancer 443 listener

This page summarizes the projects mentioned and recommended in the original post on /r/aws

Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
  • troposphere

    troposphere - Python library to create AWS CloudFormation descriptions

  • LoadBalancer = t.add_resource(LoadBalancer( #https://github.com/cloudtools/troposphere/blob/master/examples/Autoscaling.py "LoadBalancer", ConnectionDrainingPolicy=elb.ConnectionDrainingPolicy( Enabled=True, Timeout=120, ), ConnectionSettings=elb.ConnectionSettings( IdleTimeout=600 ), Subnets=[DMZSubnet1a, DMZSubnet1b], LBCookieStickinessPolicy=[elb.LBCookieStickinessPolicy( PolicyName="StickyPolicy", CookieExpirationPeriod="28800" ), ], HealthCheck=elb.HealthCheck( Target="TCP:80", HealthyThreshold="5", UnhealthyThreshold="5", Interval="30", Timeout="15", ), # Redirect http to https on classic load balancer - https://aws.amazon.com/premiumsupport/knowledge-center/redirect-http-https-elb/ Listeners=[ elb.Listener( LoadBalancerPort="80", InstancePort="80", Protocol="TCP", InstanceProtocol="TCP", ), elb.Listener( LoadBalancerPort="443", InstancePort="443", Protocol="https", InstanceProtocol="https", PolicyNames=["StickyPolicy", "My-SSLNegotiation-Policy"], SSLCertificateId=params.CA_SSL_CERT, ), ], Policies=[ elb.Policy( PolicyType="SSLNegotiationPolicyType", PolicyName="My-SSLNegotiation-Policy", Attributes=[{ "Name": "Reference-Security-Policy", "Value": "ELBSecurityPolicy-TLS-1-1-2017-01" }] ) ],

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts