Skip to content

Instantly share code, notes, and snippets.

@finger-berlin
Created April 11, 2012 14:17
Show Gist options
  • Save finger-berlin/2359572 to your computer and use it in GitHub Desktop.
Save finger-berlin/2359572 to your computer and use it in GitHub Desktop.
Amazon AWS: Update SSL Cert. on existing LB
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