- はじめに
- エージェント
- インテグレーション
- Watchdog
- イベント
- ダッシュボード
- モバイルアプリケーション
- インフラストラクチャー
- サーバーレス
- メトリクス
- ノートブック
- アラート設定
- APM & Continuous Profiler
- CI Visibility
- RUM & セッションリプレイ
- データベース モニタリング
- ログ管理
- セキュリティプラットフォーム
- Synthetic モニタリング
- ネットワークモニタリング
- 開発者
- API
- アカウントの管理
- データセキュリティ
- ヘルプ
Classification:
compliance
Update your Elastic Load Balancer’s (ELB’s) SSL with a secure cipher.
SSL connections that use insecure or outdated ciphers are vulnerable to exploits.
Follow the SSL negotiation configurations Classic Load Balancers docs to learn how to configure a secure SSL cipher.
Run describe-load-balancer-policies
to list all predefined security policies.
describe-load-balancer-policy.sh
aws elb describe-load-balancer-policies
--output table
Run create-load-balancer-policy
to create a security policy with a secure cipher using one of the SSL configurations listed in the previous step.
create-load-balancer-policy.sh
aws elb create-load-balancer-policy
--load-balancer-name YourLoadBalancerName
--policy-name YourCustomSecurityPolicy
--policy-type-name YourPolicyTypeName
--policy-attributes AttributeName=Protocol-TLSv1.2,AttributeValue=true AttributeName=Protocol-TLSv1.1,AttributeValue=true AttributeName=ECDHE-RSA-AES128-SHA,AttributeValue=true AttributeName=Server-Defined-Cipher-Order,AttributeValue=true