You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/content/docs/aws/services/acm.md
+14-16Lines changed: 14 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,5 @@
1
1
---
2
2
title: "Certificate Manager (ACM)"
3
-
linkTitle: "Certificate Manager (ACM)"
4
3
description: Get started with AWS Certificate Manager (ACM) on LocalStack
5
4
tags: ["Free"]
6
5
---
@@ -14,7 +13,7 @@ ACM supports securing multiple domain names and subdomains and can create wildca
14
13
You can also use ACM to import certificates from third-party certificate authorities or to generate private certificates for internal use.
15
14
16
15
LocalStack allows you to use the ACM APIs to create, list, and delete certificates.
17
-
The supported APIs are available on our [API coverage page]({{< ref "coverage_acm" >}}), which provides information on the extent of ACM's integration with LocalStack.
16
+
The supported APIs are available on our [API coverage page](), which provides information on the extent of ACM's integration with LocalStack.
18
17
19
18
## Getting started
20
19
@@ -26,13 +25,13 @@ Start your LocalStack container using your preferred method, then use the [Reque
26
25
Specify the domain name you want to request the certificate for, and any additional options you need.
This command will return the Amazon Resource Name (ARN) of the new certificate, which you can use in other ACM commands.
38
37
@@ -48,36 +47,35 @@ Use the [`ListCertificates` API](https://docs.aws.amazon.com/acm/latest/APIRefer
48
47
This command returns a list of the ARNs of all the certificates that have been requested or imported into ACM.
49
48
Here's an example command:
50
49
51
-
{{< command >}}
52
-
$ awslocal acm list-certificates --max-items 10
53
-
{{< /command >}}
50
+
```bash
51
+
awslocal acm list-certificates --max-items 10
52
+
```
54
53
55
54
### Describe the certificate
56
55
57
56
Use the [`DescribeCertificate` API](https://docs.aws.amazon.com/acm/latest/APIReference/API_DescribeCertificate.html) to view the details of a specific certificate.
58
57
Provide the ARN of the certificate you want to view, and this command will return information about the certificate's status, domain name, and other attributes.
Finally you can use the [`DeleteCertificate` API](https://docs.aws.amazon.com/acm/latest/APIReference/API_DeleteCertificate.html) to delete a certificate from ACM, by passing the ARN of the certificate you want to delete.
The LocalStack Web Application provides a Resource Browser for managing ACM Certificates.
77
76
You can access the Resource Browser by opening the LocalStack Web Application in your browser, navigating to the **Resource Browser** section, and then clicking on **Certificate Manager** under the **Security Identity Compliance** section.
0 commit comments