Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/makefile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:

- name: Execute tests
env:
LOCALSTACK_API_KEY: ${{ secrets.TEST_LOCALSTACK_API_KEY }}
LOCALSTACK_AUTH_TOKEN: ${{ secrets.TEST_LOCALSTACK_AUTH_TOKEN }}
DNS_ADDRESS: 127.0.0.1
DEBUG: 1
timeout-minutes: 200
Expand Down
1 change: 0 additions & 1 deletion emr-serverless-python-dependencies/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ services:
environment:
# Activate LocalStack Pro: https://docs.localstack.cloud/getting-started/auth-token/
- LOCALSTACK_AUTH_TOKEN=${LOCALSTACK_AUTH_TOKEN:-} # required for Pro
- LOCALSTACK_API_KEY=${LOCALSTACK_API_KEY:-} # required for CI
# LocalStack configuration: https://docs.localstack.cloud/references/configuration/
- DEBUG=${DEBUG:-0}
- PERSISTENCE=${PERSISTENCE:-0}
Expand Down
2 changes: 1 addition & 1 deletion java-notification-app/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Resources are deployed via a CloudFormation template in `src/main/resources/emai

First, start LocalStack and the SMTP server with:

LOCALSTACK_AUTH_TOKEN=<your-api-key> docker-compose up -d
LOCALSTACK_AUTH_TOKEN=<your-auth-token> docker-compose up -d

Then deploy the cloudformation stack (can take a few seconds)

Expand Down
2 changes: 1 addition & 1 deletion route53-dns-failover/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ We suggest taking a look at [run.sh](run.sh) script to understand the setup.
To run the demo:

```
$ LOCALSTACK_AUTH_TOKEN=<your-api-key> docker-compose up -d
$ LOCALSTACK_AUTH_TOKEN=<your-auth-token> docker-compose up -d
```

```
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
LOCALSTACK_AUTH_TOKEN=<your-pro=api-key>
LOCALSTACK_AUTH_TOKEN=<your-auth-token>
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
public class TestRDS {

private DockerImageName localstackImage = DockerImageName.parse("localstack/localstack-pro:latest");
private String api_key = System.getenv("LOCALSTACK_AUTH_TOKEN");
private String authToken = System.getenv("LOCALSTACK_AUTH_TOKEN");

/**
* Start LocalStackContainer with exposed Ports. Those ports are used by services like RDS, where several databases can be started, running on different ports.
Expand All @@ -31,7 +31,7 @@ public class TestRDS {
@Rule
public LocalStackContainer localstack = new LocalStackContainer(localstackImage)
.withExposedPorts(4510, 4511, 4512, 4513, 4514) // TODO the port can have any value between 4510-4559, but LS starts from 4510
.withEnv("LOCALSTACK_AUTH_TOKEN", api_key) // TODO add your Auth Token here
.withEnv("LOCALSTACK_AUTH_TOKEN", authToken) // TODO add your Auth Token here
.withServices(LocalStackContainer.EnabledService.named("rds"));


Expand Down