{"id":65,"date":"2023-02-15T18:14:51","date_gmt":"2023-02-15T18:14:51","guid":{"rendered":"https:\/\/certerassl.com\/kb\/?p=65"},"modified":"2024-10-16T10:35:32","modified_gmt":"2024-10-16T10:35:32","slug":"how-to-install-ssl-certificate-on-aws","status":"publish","type":"post","link":"https:\/\/certera.com\/kb\/how-to-install-ssl-certificate-on-aws\/","title":{"rendered":"How To Install SSL Certificate on AWS (Amazon Web Services)?"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">This installation guide will help you learn the complete SSL certificate installation process on AWS in a step-by-step manner. Get a comprehensive and in-depth overview of how to install SSL certificates on AWS here. So, read till the end.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Nevertheless, the steps outlined in this SSL installation guide often work. But it\u2019s good to be prepared before you start with the installation. So, what do you need to install an SSL certificate on AWS? Check below.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Things You Need Before Installing an SSL Certificate on AWS<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Before installing the SSL certificate on AWS, you\u2019ll have to prepare and be ready with some files. Here is a checklist of all the things you need to get started with the installation procedure.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">1. Server Certificate<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">You receive a server certificate on your email for your website domain from the CA. Also, you can download it from the Account Dashboard without any hassle.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">2. Intermediate Certificate(s)<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">These certificate files enable your server-connected devices to find out the issuing CA. Also known as CA Bundle, you can find these files with the certificate you received in a ZIP folder. If not received, you can download it manually.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">3. Private Key<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">If you used any free tool to <a href=\"https:\/\/certera.com\/ssl-tools\/csr-generator\">generate your CSR<\/a>, you should have this under your possession or on your server. It\u2019s crucial to generate CSR and request an SSL certificate before installation. <strong>In the section below, we\u2019ve outlined <a href=\"https:\/\/certera.com\/kb\/how-to-generate-csr-on-aws\/\" target=\"_blank\" rel=\"noreferrer noopener\">steps to generate CSR on AWS<\/a><\/strong>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Installation of SSL Certificate on AWS<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Step 1: For AWS ACM (Amazon Certificate Manager)<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">To upload your certificate to AMC, run this command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>aws acm import-certificate\n--certificate file:\/\/abc.crt\n--private-key file:\/\/abc.key\n--certificate-chain file:\/\/abc-bundle.crt<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Simply interchange the \u2018abc\u2019 attribute with the real names of your files. Once uploaded successfully, an Amazon Resource Name (ARN) will be sent to you. This will allow you to handle and organize your SSL certificate seamlessly.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 2: For AWS IAM (Identity Access Manager)<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>To upload an SSL certificate on IAM, run this command:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>aws iam upload-server-certificate\n--server-certificate-name certificate-name\n--certificate-body file:\/\/abc.crt\n--certificate-chain file:\/\/abc-bundle.crt\n--private-key file:\/\/abc.key<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Replace the \u2018<strong>abc\u2019<\/strong> with actual file names and interchange the bolded values with the following:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Certificate Body File Parameter:<\/strong> Here, replace and add the actual name of your main SSL certificate file.<\/li>\n\n\n\n<li><strong>Certificate Name:<\/strong> Here, use any easy-to-remember custom name. You can use any value linked with your SSL certificate or your domain name.<\/li>\n\n\n\n<li><strong>Certificate Chain File Parameter:<\/strong> Use the actual name of your CA bundle file.<\/li>\n\n\n\n<li><strong>Private Key File Parameter:<\/strong> Use your private key file name here.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">Once you upload the cert successfully, the screen will display a server cert metadata comprising its name, ARN, ID, server path, upload and expiration date, and identifier.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 3: For ELB (Elastic Load Balancing)<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">If you\u2019re reading this section, we assume you uploaded the certificate in ACM or IAM. You\u2019re looking forward to updating or creating HTTPS listeners on the current application load balancers. To install the certificate in ELB, you\u2019ll require ARN and the existing balancer\u2019s ARN.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">\u2192 Classic Load Balancer<\/h4>\n\n\n\n<p class=\"wp-block-paragraph\">To generate an HTTP listener and allocate the SSL certificate to it, run this command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>aws elb create-load-balancer-listeners\n--load-balancer-name my-load-balancer\n--listeners \u201cProtocol=HTTPS,LoadBalancerPort=443,InstanceProtocol=HTTP,InstancePort=80,SSLCertificateId=ARN\u201d<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">The value of ARN is your SSL certificate\u2019s ARN. However, it may happen that you already have an HTTPS listener. In that case, you\u2019ll only have to update the certificate. Do so by running this command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>aws elb set\n--load-balancer-listener-ssl-certificate\n--load-balancer-name my-load-balancer\n--load-balancer-port 443\n--ssl-certificate-id NewARN<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">The new value of ARN is your new SSL certificate\u2019s ARN (the cert you need to import).<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">\u2192 Application Load Balancer<\/h4>\n\n\n\n<p class=\"wp-block-paragraph\">To generate an HTTP listener on the application load balancer, use this command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>aws elbv2 create-listener\n--load-balancer-arn my-load-balancer-arn\n--protocol HTTPS --port 443\n--certificates CertificateArn=my-certificate-arn\n--default-actions Type=forward,TargetGroupArn=my-target-group-arn<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">So, finalize the installation, and you\u2019re done!<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Testing Your AWS SSL Installation<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">To test the installation, perform a browser test. Browse your website domain\u2019s HTTPS version and see if there\u2019s any SSL padlock. To check your SSL certificate\u2019s info, click on it. You can also use our diagnostic <a href=\"https:\/\/certera.com\/ssl-tools\/ssl-checker\">SSL Checker Tool<\/a> for more in-depth evaluation.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This installation guide will help you learn the complete SSL certificate installation process on AWS in a step-by-step manner. Get a comprehensive and in-depth overview of how to install SSL certificates on AWS here. So, read till the end. Nevertheless, the steps outlined in this SSL installation guide often work. But it\u2019s good to be<span class=\"morelink d-block mt-3\"><a href=\"https:\/\/certera.com\/kb\/how-to-install-ssl-certificate-on-aws\/\">Read More<\/a><\/span><\/p>\n","protected":false},"author":1,"featured_media":1112,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[15],"tags":[21,18,19],"class_list":["post-65","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-ssl-installation","tag-aws","tag-ssl","tag-ssl-installation","entry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Install SSL Certificate on AWS - A Detailed Guide<\/title>\n<meta name=\"description\" content=\"Detailed process to install SSL Certificate on AWS (Amazon Web Service) with classic load balancer and application load balancer.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/certera.com\/kb\/how-to-install-ssl-certificate-on-aws\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install SSL Certificate on AWS - A Detailed Guide\" \/>\n<meta property=\"og:description\" content=\"Detailed process to install SSL Certificate on AWS (Amazon Web Service) with classic load balancer and application load balancer.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/certera.com\/kb\/how-to-install-ssl-certificate-on-aws\/\" \/>\n<meta property=\"og:site_name\" content=\"Knowledge Base - Certera.com\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/certeraLLC\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-02-15T18:14:51+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-10-16T10:35:32+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/certera.com\/kb\/wp-content\/uploads\/2023\/02\/install-ssl-certificate-on-AWS-1-jpg.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"960\" \/>\n\t<meta property=\"og:image:height\" content=\"620\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"certerakbdbuser\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/certera.com\/kb\/wp-content\/uploads\/2023\/02\/install-ssl-certificate-on-AWS-1-jpg.webp\" \/>\n<meta name=\"twitter:creator\" content=\"@certera_llc\" \/>\n<meta name=\"twitter:site\" content=\"@certera_llc\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"certerakbdbuser\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/how-to-install-ssl-certificate-on-aws\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/how-to-install-ssl-certificate-on-aws\\\/\"},\"author\":{\"name\":\"certerakbdbuser\",\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/#\\\/schema\\\/person\\\/c25e1519e333a817f30c805384cba014\"},\"headline\":\"How To Install SSL Certificate on AWS (Amazon Web Services)?\",\"datePublished\":\"2023-02-15T18:14:51+00:00\",\"dateModified\":\"2024-10-16T10:35:32+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/how-to-install-ssl-certificate-on-aws\\\/\"},\"wordCount\":637,\"publisher\":{\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/how-to-install-ssl-certificate-on-aws\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/certera.com\\\/kb\\\/wp-content\\\/uploads\\\/2023\\\/02\\\/install-ssl-certificate-on-AWS-1-jpg.webp\",\"keywords\":[\"AWS\",\"SSL\",\"SSL Installation\"],\"articleSection\":[\"SSL Installation\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/how-to-install-ssl-certificate-on-aws\\\/\",\"url\":\"https:\\\/\\\/certera.com\\\/kb\\\/how-to-install-ssl-certificate-on-aws\\\/\",\"name\":\"How to Install SSL Certificate on AWS - A Detailed Guide\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/how-to-install-ssl-certificate-on-aws\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/how-to-install-ssl-certificate-on-aws\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/certera.com\\\/kb\\\/wp-content\\\/uploads\\\/2023\\\/02\\\/install-ssl-certificate-on-AWS-1-jpg.webp\",\"datePublished\":\"2023-02-15T18:14:51+00:00\",\"dateModified\":\"2024-10-16T10:35:32+00:00\",\"description\":\"Detailed process to install SSL Certificate on AWS (Amazon Web Service) with classic load balancer and application load balancer.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/how-to-install-ssl-certificate-on-aws\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/certera.com\\\/kb\\\/how-to-install-ssl-certificate-on-aws\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/how-to-install-ssl-certificate-on-aws\\\/#primaryimage\",\"url\":\"https:\\\/\\\/certera.com\\\/kb\\\/wp-content\\\/uploads\\\/2023\\\/02\\\/install-ssl-certificate-on-AWS-1-jpg.webp\",\"contentUrl\":\"https:\\\/\\\/certera.com\\\/kb\\\/wp-content\\\/uploads\\\/2023\\\/02\\\/install-ssl-certificate-on-AWS-1-jpg.webp\",\"width\":960,\"height\":620,\"caption\":\"Install SSL On AWS\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/how-to-install-ssl-certificate-on-aws\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/certera.com\\\/kb\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How To Install SSL Certificate on AWS (Amazon Web Services)?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/#website\",\"url\":\"https:\\\/\\\/certera.com\\\/kb\\\/\",\"name\":\"Knowledge Base - Certera.com\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/#organization\"},\"alternateName\":\"Certera Knowledgebase\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/certera.com\\\/kb\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/#organization\",\"name\":\"Certera\",\"url\":\"https:\\\/\\\/certera.com\\\/kb\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/certera.com\\\/kb\\\/wp-content\\\/uploads\\\/2023\\\/01\\\/brand-certera.svg\",\"contentUrl\":\"https:\\\/\\\/certera.com\\\/kb\\\/wp-content\\\/uploads\\\/2023\\\/01\\\/brand-certera.svg\",\"caption\":\"Certera\"},\"image\":{\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/certeraLLC\\\/\",\"https:\\\/\\\/x.com\\\/certera_llc\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/certera-llc\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/#\\\/schema\\\/person\\\/c25e1519e333a817f30c805384cba014\",\"name\":\"certerakbdbuser\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/1fba817ef81065f1393461fc3a0d85c40f2cc826919819ea4df4b12d76566e62?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/1fba817ef81065f1393461fc3a0d85c40f2cc826919819ea4df4b12d76566e62?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/1fba817ef81065f1393461fc3a0d85c40f2cc826919819ea4df4b12d76566e62?s=96&d=mm&r=g\",\"caption\":\"certerakbdbuser\"},\"sameAs\":[\"https:\\\/\\\/certerakb.ssltoolsonline.com\"],\"url\":\"https:\\\/\\\/certera.com\\\/kb\\\/author\\\/certerakbdbuser\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install SSL Certificate on AWS - A Detailed Guide","description":"Detailed process to install SSL Certificate on AWS (Amazon Web Service) with classic load balancer and application load balancer.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/certera.com\/kb\/how-to-install-ssl-certificate-on-aws\/","og_locale":"en_US","og_type":"article","og_title":"How to Install SSL Certificate on AWS - A Detailed Guide","og_description":"Detailed process to install SSL Certificate on AWS (Amazon Web Service) with classic load balancer and application load balancer.","og_url":"https:\/\/certera.com\/kb\/how-to-install-ssl-certificate-on-aws\/","og_site_name":"Knowledge Base - Certera.com","article_publisher":"https:\/\/www.facebook.com\/certeraLLC\/","article_published_time":"2023-02-15T18:14:51+00:00","article_modified_time":"2024-10-16T10:35:32+00:00","og_image":[{"width":960,"height":620,"url":"https:\/\/certera.com\/kb\/wp-content\/uploads\/2023\/02\/install-ssl-certificate-on-AWS-1-jpg.webp","type":"image\/jpeg"}],"author":"certerakbdbuser","twitter_card":"summary_large_image","twitter_image":"https:\/\/certera.com\/kb\/wp-content\/uploads\/2023\/02\/install-ssl-certificate-on-AWS-1-jpg.webp","twitter_creator":"@certera_llc","twitter_site":"@certera_llc","twitter_misc":{"Written by":"certerakbdbuser","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/certera.com\/kb\/how-to-install-ssl-certificate-on-aws\/#article","isPartOf":{"@id":"https:\/\/certera.com\/kb\/how-to-install-ssl-certificate-on-aws\/"},"author":{"name":"certerakbdbuser","@id":"https:\/\/certera.com\/kb\/#\/schema\/person\/c25e1519e333a817f30c805384cba014"},"headline":"How To Install SSL Certificate on AWS (Amazon Web Services)?","datePublished":"2023-02-15T18:14:51+00:00","dateModified":"2024-10-16T10:35:32+00:00","mainEntityOfPage":{"@id":"https:\/\/certera.com\/kb\/how-to-install-ssl-certificate-on-aws\/"},"wordCount":637,"publisher":{"@id":"https:\/\/certera.com\/kb\/#organization"},"image":{"@id":"https:\/\/certera.com\/kb\/how-to-install-ssl-certificate-on-aws\/#primaryimage"},"thumbnailUrl":"https:\/\/certera.com\/kb\/wp-content\/uploads\/2023\/02\/install-ssl-certificate-on-AWS-1-jpg.webp","keywords":["AWS","SSL","SSL Installation"],"articleSection":["SSL Installation"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/certera.com\/kb\/how-to-install-ssl-certificate-on-aws\/","url":"https:\/\/certera.com\/kb\/how-to-install-ssl-certificate-on-aws\/","name":"How to Install SSL Certificate on AWS - A Detailed Guide","isPartOf":{"@id":"https:\/\/certera.com\/kb\/#website"},"primaryImageOfPage":{"@id":"https:\/\/certera.com\/kb\/how-to-install-ssl-certificate-on-aws\/#primaryimage"},"image":{"@id":"https:\/\/certera.com\/kb\/how-to-install-ssl-certificate-on-aws\/#primaryimage"},"thumbnailUrl":"https:\/\/certera.com\/kb\/wp-content\/uploads\/2023\/02\/install-ssl-certificate-on-AWS-1-jpg.webp","datePublished":"2023-02-15T18:14:51+00:00","dateModified":"2024-10-16T10:35:32+00:00","description":"Detailed process to install SSL Certificate on AWS (Amazon Web Service) with classic load balancer and application load balancer.","breadcrumb":{"@id":"https:\/\/certera.com\/kb\/how-to-install-ssl-certificate-on-aws\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/certera.com\/kb\/how-to-install-ssl-certificate-on-aws\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/certera.com\/kb\/how-to-install-ssl-certificate-on-aws\/#primaryimage","url":"https:\/\/certera.com\/kb\/wp-content\/uploads\/2023\/02\/install-ssl-certificate-on-AWS-1-jpg.webp","contentUrl":"https:\/\/certera.com\/kb\/wp-content\/uploads\/2023\/02\/install-ssl-certificate-on-AWS-1-jpg.webp","width":960,"height":620,"caption":"Install SSL On AWS"},{"@type":"BreadcrumbList","@id":"https:\/\/certera.com\/kb\/how-to-install-ssl-certificate-on-aws\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/certera.com\/kb\/"},{"@type":"ListItem","position":2,"name":"How To Install SSL Certificate on AWS (Amazon Web Services)?"}]},{"@type":"WebSite","@id":"https:\/\/certera.com\/kb\/#website","url":"https:\/\/certera.com\/kb\/","name":"Knowledge Base - Certera.com","description":"","publisher":{"@id":"https:\/\/certera.com\/kb\/#organization"},"alternateName":"Certera Knowledgebase","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/certera.com\/kb\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/certera.com\/kb\/#organization","name":"Certera","url":"https:\/\/certera.com\/kb\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/certera.com\/kb\/#\/schema\/logo\/image\/","url":"https:\/\/certera.com\/kb\/wp-content\/uploads\/2023\/01\/brand-certera.svg","contentUrl":"https:\/\/certera.com\/kb\/wp-content\/uploads\/2023\/01\/brand-certera.svg","caption":"Certera"},"image":{"@id":"https:\/\/certera.com\/kb\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/certeraLLC\/","https:\/\/x.com\/certera_llc","https:\/\/www.linkedin.com\/company\/certera-llc\/"]},{"@type":"Person","@id":"https:\/\/certera.com\/kb\/#\/schema\/person\/c25e1519e333a817f30c805384cba014","name":"certerakbdbuser","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/1fba817ef81065f1393461fc3a0d85c40f2cc826919819ea4df4b12d76566e62?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/1fba817ef81065f1393461fc3a0d85c40f2cc826919819ea4df4b12d76566e62?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/1fba817ef81065f1393461fc3a0d85c40f2cc826919819ea4df4b12d76566e62?s=96&d=mm&r=g","caption":"certerakbdbuser"},"sameAs":["https:\/\/certerakb.ssltoolsonline.com"],"url":"https:\/\/certera.com\/kb\/author\/certerakbdbuser\/"}]}},"_links":{"self":[{"href":"https:\/\/certera.com\/kb\/wp-json\/wp\/v2\/posts\/65","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/certera.com\/kb\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/certera.com\/kb\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/certera.com\/kb\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/certera.com\/kb\/wp-json\/wp\/v2\/comments?post=65"}],"version-history":[{"count":17,"href":"https:\/\/certera.com\/kb\/wp-json\/wp\/v2\/posts\/65\/revisions"}],"predecessor-version":[{"id":2647,"href":"https:\/\/certera.com\/kb\/wp-json\/wp\/v2\/posts\/65\/revisions\/2647"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/certera.com\/kb\/wp-json\/wp\/v2\/media\/1112"}],"wp:attachment":[{"href":"https:\/\/certera.com\/kb\/wp-json\/wp\/v2\/media?parent=65"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/certera.com\/kb\/wp-json\/wp\/v2\/categories?post=65"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/certera.com\/kb\/wp-json\/wp\/v2\/tags?post=65"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}