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/account.md
+15-17Lines changed: 15 additions & 17 deletions
Original file line number
Diff line number
Diff line change
@@ -1,24 +1,23 @@
1
1
---
2
2
title: "Account Management"
3
-
linkTitle: "Account Management"
4
3
description: Get started with AWS Account Management on LocalStack
5
4
tags: ["Ultimate"]
6
5
---
7
6
8
7
## Introduction
9
8
10
-
The Account service provides APIs to manage your AWS account.
9
+
Account service provides APIs to manage your AWS account.
11
10
You can use the Account APIs to retrieve information about your account, manage your contact information and alternate contacts.
12
11
Additionally, you can use the Account APIs to enable or disable a region for your account, and delete alternate contacts in your account.
13
12
14
13
LocalStack allows you to use the Account API to retrieve information about your account.
15
-
The supported APIs are available on our [API coverage page]({{< ref "coverage_account" >}}), which provides information on the extent of Account's integration with LocalStack.
14
+
The supported APIs are available on our [API coverage page](), which provides information on the extent of Account's integration with LocalStack.
16
15
17
-
{{< callout >}}
18
-
LocalStack's Account provider is mock-only and does not support any real AWS account.
16
+
:::note
17
+
LocalStack's Account provider is mock-only and does not support connecting to any real AWS account.
19
18
The Account APIs are only intended to demonstrate how you can use and mock the AWS Account APIs in your local environment.
20
19
It's important to note that LocalStack doesn't offer a programmatic interface to manage your AWS or your LocalStack account.
21
-
{{< /callout >}}
20
+
:::
22
21
23
22
## Getting started
24
23
@@ -32,8 +31,8 @@ We will demonstrate how to put contact information, fetch account details, and a
32
31
You can use the [`PutContactInformation`](https://docs.aws.amazon.com/accounts/latest/reference/API_PutContactInformation.html) API to add or update the contact information for your AWS account.
33
32
Run the following command to add contact information to your account:
You can use the [`GetContactInformation`](https://docs.aws.amazon.com/accounts/latest/reference/API_GetContactInformation.html) API to retrieve the contact information for your AWS account.
51
50
Run the following command to fetch the contact information for your account:
52
51
53
-
{{< command >}}
54
-
$ awslocal account get-contact-information
55
-
{{< /command >}}
52
+
```bash
53
+
awslocal account get-contact-information
54
+
```
56
55
57
56
The command will return the contact information for your account:
58
57
@@ -75,22 +74,21 @@ The command will return the contact information for your account:
75
74
You can attach an alternate contact using [`PutAlternateContact`](https://docs.aws.amazon.com/accounts/latest/reference/API_PutAlternateContact.html) API.
76
75
Run the following command to attach an alternate contact to your account:
The LocalStack Web Application provides a Resource Browser for managing contact information & alternate accounts for the Account service.
90
89
You can access the Resource Browser by opening the LocalStack Web Application in your browser, navigating to the Resources section, and then clicking on **Account** under the **Management & Governance** section.
Copy file name to clipboardExpand all lines: src/content/docs/aws/services/acm.md
+14-16Lines changed: 14 additions & 16 deletions
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.
Copy file name to clipboardExpand all lines: src/content/docs/aws/services/amplify.md
+13-15Lines changed: 13 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,5 @@
1
1
---
2
2
title: "Amplify"
3
-
linkTitle: "Amplify"
4
3
description: Get started with Amplify on LocalStack
5
4
tags: ["Ultimate"]
6
5
persistence: supported
@@ -12,12 +11,12 @@ Amplify is a JavaScript-based development framework with libraries, UI component
12
11
With Amplify, developers can build and host static websites, single-page applications, and full-stack serverless web applications using an abstraction layer over popular AWS services like DynamoDB, Cognito, AppSync, Lambda, S3, and more.
13
12
14
13
LocalStack allows you to use the Amplify APIs to build and test their Amplify applications locally.
15
-
The supported APIs are available on our [API coverage page]({{< ref "coverage_amplify" >}}), which provides information on the extent of Amplify's integration with LocalStack.
14
+
The supported APIs are available on our [API coverage page](), which provides information on the extent of Amplify's integration with LocalStack.
16
15
17
-
{{< callout "note" >}}
16
+
:::note
18
17
The `amplifylocal` CLI and the Amplify JS library have been deprecated and are no longer supported.
19
18
We recommend using the Amplify CLI with the Amplify LocalStack Plugin instead.
20
-
{{< /callout >}}
19
+
:::
21
20
22
21
## Amplify LocalStack Plugin
23
22
@@ -28,10 +27,10 @@ It achieves this by redirecting any requests to AWS to a LocalStack container ru
28
27
29
28
To install the Amplify LocalStack Plugin, install the [amplify-localstack](https://www.npmjs.com/package/amplify-localstack) package from the npm registry and add the plugin to your Amplify setup:
30
29
31
-
{{< command >}}
32
-
$ npm install -g amplify-localstack
33
-
$ amplify plugin add amplify-localstack
34
-
{{< /command >}}
30
+
```bash
31
+
npm install -g amplify-localstack
32
+
amplify plugin add amplify-localstack
33
+
```
35
34
36
35
### Configuration
37
36
@@ -53,19 +52,18 @@ The console will prompt you to select whether to deploy to LocalStack or AWS.
53
52
You can also add the parameter `--use-localstack true` to your commands to avoid being prompted and automatically use LocalStack.
54
53
Here is an example:
55
54
56
-
{{< command >}}
57
-
$ amplify init --use-localstack true
58
-
$ amplify add api
59
-
$ amplify push --use-localstack true
60
-
{{< /command >}}
55
+
```bash
56
+
amplify init --use-localstack true
57
+
amplify add api
58
+
amplify push --use-localstack true
59
+
```
61
60
62
61
## Resource Browser
63
62
64
63
The LocalStack Web Application provides a Resource Browser for managing Amplify applications.
65
64
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 **Amplify** under the **Front-end Web & Mobile** section.
0 commit comments