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/capabilities/chaos-engineering/chaos-api.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,7 @@ If you'd like to try it out, please [contact us](https://www.localstack.cloud/de
32
32
33
33
The prerequisites for this guide are:
34
34
35
-
- LocalStack Pro with [LocalStack CLI](https://docs.localstack.cloud/getting-started/installation/#localstack-cli) & [LocalStack Auth Token](https://docs.localstack.cloud/getting-started/auth-token/)
35
+
- LocalStack Pro with [LocalStack CLI](/aws/getting-started/installation/) & [LocalStack Auth Token](/aws/getting-started/auth-token/)
36
36
-[Docker](https://docs.docker.com/get-docker/) and [Docker Compose](https://docs.docker.com/compose/install/)
Copy file name to clipboardExpand all lines: src/content/docs/aws/capabilities/state-management/cli-commands.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -244,7 +244,7 @@ The CLI manual for the `version` command is as follows:
244
244
The `remote`command group lets you manage custom Cloud Pod remotes, to enable alternative storage backends in addition to the default LocalStack managed platform.
245
245
It offers 3 commands: `add`, `delete`, and `list`.
246
246
247
-
For more info about remote usage, check our [documentation](https://docs.localstack.cloud/user-guide/cloud-pods/remotes/).
247
+
For more info about remote usage, check our [documentation](/aws/capabilities/state-management/cloud-pods/#remotes).
248
248
249
249
```bash
250
250
Usage: pod remote [OPTIONS] COMMAND [ARGS]...
@@ -315,7 +315,7 @@ Usage: state [OPTIONS] COMMAND [ARGS]...
315
315
The state command group allows you to interact with LocalStack's state
Copy file name to clipboardExpand all lines: src/content/docs/aws/capabilities/state-management/cloud-pods.mdx
+37-7Lines changed: 37 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ You can save and load the persistent state of Cloud Pods, you can use the [Cloud
26
26
LocalStack provides a remote storage backend that can be used to store the state of your running application and share it with your team members.
27
27
You can interact with the Cloud Pods over the storage backend via the LocalStack Web Application.
28
28
29
-
Cloud Pods CLI is included in the [LocalStack CLI installation](https://docs.localstack.cloud/getting-started/installation/#localstack-cli), so there's no need for additional installations to begin using it.
29
+
Cloud Pods CLI is included in the [LocalStack CLI installation](/aws/getting-started/installation/#installing-localstack-cli), so there's no need for additional installations to begin using it.
30
30
If you're a licensed user, we suggest setting the `LOCALSTACK_AUTH_TOKEN` as an environment variable.
31
31
This enables you to access the complete range of LocalStack Cloud Pods features.
32
32
@@ -197,7 +197,7 @@ localstack state inspect --format json
197
197
}
198
198
```
199
199
200
-
For comprehensive instructions, navigate to our [Command-Line Interface (CLI) Guide](/aws/capabilities/state-management/cli-commands).
200
+
For comprehensive instructions, navigate to our [Command-Line Interface (CLI) Guide](/aws/capabilities/state-management/cli-commands/).
201
201
To access your Cloud Pods through the LocalStack Web Application, navigate to the [Cloud Pods browser](https://app.localstack.cloud/pods).
202
202
203
203
:::note
@@ -284,7 +284,7 @@ In addition to loading Cloud Pods through the Command-Line Interface (CLI) or th
284
284
285
285
### Environmental variables
286
286
287
-
To automatically load a Cloud Pod at startup, utilize the `AUTO_LOAD_POD`[configuration variable](https://docs.localstack.cloud/references/configuration/).
287
+
To automatically load a Cloud Pod at startup, utilize the `AUTO_LOAD_POD`[configuration variable](/aws/capabilities/config/configuration/).
288
288
289
289
`AUTO_LOAD_POD` can accept multiple Cloud Pod names separated by commas.
290
290
To autoload multiple Cloud Pods, such as `foo-pod` and `bar-pod`, use: `AUTO_LOAD_POD=foo-pod,bar-pod`.
@@ -448,7 +448,7 @@ localstack pod list s3-storage-aws
448
448
449
449
:::note
450
450
Full S3 remotes support is available in the CLI from version 3.2.0.
451
-
If you experience any difficulties, update your [LocalStack CLI](https://docs.localstack.cloud/getting-started/installation/#updating).
451
+
If you experience any difficulties, update your [LocalStack CLI](/aws/getting-started/installation/#updating-localstack-cli).
452
452
:::
453
453
454
454
### ORAS remote storage
@@ -519,7 +519,7 @@ services:
519
519
:::note
520
520
The Auto Load from remote feature does not automatically configure the remote.
521
521
This needs to be done with the `localstack pod remote add ...` command.
522
-
This commands creates a configuration file for the remote in the [LocalStack volume directory](https://docs.localstack.cloud/references/filesystem/#localstack-volume).
522
+
This commands creates a configuration file for the remote in the [LocalStack volume directory](/aws/capabilities/config/filesystem-layout/#localstack-volume-directory).
523
523
:::
524
524
525
525
## End-to-End Encryption (Enterprise)
@@ -572,7 +572,7 @@ The process is the following:
572
572
Unless explicitly specified, all Cloud Pods commands default to targeting the LocalStack Platform as the storage remote.
573
573
It's important to note that the CLI must be authenticated correctly with our Platform.
574
574
575
-
Custom remote configurations are stored within the [LocalStack volume directory](https://docs.localstack.cloud/references/filesystem/#localstack-volume-directory) and are managed by the LocalStack container.
575
+
Custom remote configurations are stored within the [LocalStack volume directory](/aws/capabilities/config/filesystem-layout/#localstack-volume-directory) and are managed by the LocalStack container.
576
576
Consequently, when sharing Cloud Pods among your team using a custom remote, each team member must define the identical remote configuration.
577
577
Once added, a remote persists even after LocalStack restarts.
578
578
@@ -710,4 +710,34 @@ An error occurred while checking remote management for pod "cloud-pod-product-ap
710
710
711
711
Check if your machine's clock is set incorrectly or if the certificate store is outdated.
712
712
This error can also occur if you use `localstack` as `LOCALSTACK_HOST`.
713
-
In this case, the DNS incorrectly resolves `api.localstack.cloud` to `localhost`, causing a certificate mismatch.
713
+
In this case, the DNS incorrectly resolves `api.localstack.cloud` to `localhost`, causing a certificate mismatch.
714
+
715
+
### `InvalidAccessKeyId` during `CreateBucket` API call
716
+
717
+
You may see this error:
718
+
719
+
```bash
720
+
An error occurred (InvalidAccessKeyId) when calling the CreateBucket operation: The AWS Access Key Id you provided does not exist in our records.
721
+
```
722
+
723
+
This usually means you're using temporary AWS credentials, but `AWS_SESSION_TOKEN` is missing from the environment.
724
+
725
+
To fix this, ensure that you export the `AWS_SESSION_TOKEN` environment variable:
726
+
727
+
```bash
728
+
export AWS_SESSION_TOKEN=...
729
+
```
730
+
731
+
Then, add `session_token` to the `pod remote add` URL:
732
+
733
+
```bash
734
+
localstack pod remote add s3-storage-aws 's3://ls-pods-bucket-test/?access_key_id={access_key_id}&secret_access_key={secret_access_key}&session_token={session_token}'
735
+
```
736
+
737
+
If you're still unable to connect to the S3 bucket, add the bucket hostname to the upstream DNS resolution list:
0 commit comments