1

Is there a possibility to get or use a SSL certificate in AWS Certificate Manager for a public IP instead of a domain name?

I need a SSL certificate for my EC2 server on AWS, but I don't want to register it under a domain name right now.

Sir hennihau
  • 111
  • 1
  • 3
  • It's good to always have one domain name you can use (with infinite subdomains) for in-development sites like this. – ceejayoz May 13 '20 at 17:15

2 Answers2

0

You can generate a self-signed certificate to be used with specific applications within your server and this will necessarily show as such to anyone using that service but should work fine for many applications.

I believe that certs signed by a CA need to use the DNS name, not the IP for a public certificate so that is what you have to use with AWS.

Peleion
  • 303
  • 1
  • 7
0

SSL/TLS certificates do NOT work with IP addresses. They need to be attached to a DNS name.

This will work:

mydomain.amazonaws.com
thisismydomain.com
webserver-1.my.local.network

This will NOT work:

192.168.1.50
14.156.34.26
Chris
  • 318
  • 1
  • 5