Creating an ACM SSL Certificate

Learn to create an ACM certificate to use with TLS/SSL encryption.

To finalize our setup, we just need to enable HTTPS for our load balancer. Doing so involves a few more steps because we first need to create a certificate to use for HTTPS traffic, and this certificate must be validated against our custom domain name.

Let's create the certificate and validate it by following these steps.

Give permissions to access AWS Certificate Manager (ACM)

As usual, we first need to assign permissions to our wordpressadmins group. This time, we need to assign the AWSCertificateManagerFullAccess policy.

Please log in to the AWS Console with your root account, and add the AWSCertificateManagerFullAccess policy to the wordpressadmins group.

1.
Show Answer
Q1 / Q1
Did you find this helpful?

Note: If you get stuck somewhere, please take a look at the steps below.

Test permissions

The command below just lists available certificates. Most likely, there will be none if you haven’t created any.

Press + to interact
aws acm list-certificates

Run the command in the terminal below:

Terminal 1
Terminal
Loading...

If you get the following AccessDeniedException, then something went wrong with adding the permissions.

An error occurred (AccessDeniedException) when calling the ListCertificates operation: User: arn:aws:iam::970721244190:user/wordpress is not authorized to perform: acm:ListCertificates

Please go through the steps above again to make sure they are set correctly.

If the ...