Created
April 11, 2012 14:17
-
-
Save finger-berlin/2359572 to your computer and use it in GitHub Desktop.
Amazon AWS: Update SSL Cert. on existing LB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Which SSL certs are uploaded to Amazon: | |
$ iam-servercertlistbypath | |
Which LBs are running: | |
$ elb-describe-lbs --region eu-west-1 | |
Now update the LB: | |
$ elb-set-lb-listener-ssl-cert --lb LB_NAME \ | |
--region eu-west-1 \ | |
--lb-port 443 \ | |
--cert-id arn:aws:iam::123456789012:server-certificate/www.example.com | |
... works for me. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment