Empire :: SSL Certs

Empire allows you to attach IAM server certificates to an applications web process. Follow these steps to attach an SSL certificate.

First, upload a certificate to IAM:

$ aws iam upload-server-certificate --server-certificate-name myServerCertificate --certificate-body file://public_key_cert_file.pem --private-key file://my_private_key.pem --certificate-chain file://my_certificate_chain_file.pem

Then attach it to the application:

$ emp certs-attach myServerCertificate -a <app>