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
-**`use-pro` now defaults to `true`.** The action will use the `localstack/localstack-pro` image by default. Workflows that relied on the community image without setting `use-pro` will now get the Pro image, which requires a `LOCALSTACK_AUTH_TOKEN`. Set `use-pro: 'false'` explicitly if you need the community image. For newer versions of LocalStack these images are equivalent.
8
+
9
+
### Deprecated
10
+
11
+
-**`use-pro` input will be removed in a future release as we are consolidating our docker images**.
> **NOTE**: The `LOCALSTACK_AUTH_TOKEN` environment variable is required to be set if `use-pro` is set to `true`.
29
-
If the key is not found LocalStack by default falls back to the CE edition and displays a warning.
28
+
> **NOTE**: The `LOCALSTACK_AUTH_TOKEN` environment variable is required. Since `use-pro` now defaults to `true`, the action will use the Pro image by default.
29
+
> The `use-pro` input will be removed in a future release.
30
30
31
31
### Install only CLIs and startup later
32
32
```yml
33
33
- name: Install LocalStack CLIs
34
-
uses: LocalStack/setup-localstack@v0.2.5
34
+
uses: LocalStack/setup-localstack@v0.3.0
35
35
with:
36
36
skip-startup: 'true'
37
37
install-awslocal: 'true'
38
38
39
39
...
40
40
41
41
- name: Start LocalStack
42
-
uses: LocalStack/setup-localstack@v0.2.5
42
+
uses: LocalStack/setup-localstack@v0.3.0
43
43
with:
44
44
image-tag: 'latest'
45
45
env:
@@ -49,7 +49,7 @@ If the key is not found LocalStack by default falls back to the CE edition and d
49
49
### Save a state later on in the pipeline
50
50
```yml
51
51
- name: Save LocalStack State
52
-
uses: LocalStack/setup-localstack@v0.2.5
52
+
uses: LocalStack/setup-localstack@v0.3.0
53
53
with:
54
54
install-awslocal: 'true'
55
55
state-backend: cloud-pods
@@ -63,7 +63,7 @@ If the key is not found LocalStack by default falls back to the CE edition and d
63
63
### Load an already saved state
64
64
```yml
65
65
- name: Start LocalStack and Load State
66
-
uses: LocalStack/setup-localstack@v0.2.5
66
+
uses: LocalStack/setup-localstack@v0.3.0
67
67
with:
68
68
install-awslocal: 'true'
69
69
state-backend: cloud-pods
@@ -78,7 +78,7 @@ If the key is not found LocalStack by default falls back to the CE edition and d
78
78
79
79
### Manage Application Previews (on an Ephemeral Instance)
| `state-action` | Valid values are `load`, `save`, `start`, `stop`, `''` (empty, don't manage state). Values `start`/`stop` only usable with app previews. | `''` |
123
123
| `state-backend` | Either store the state of LocalStack locally, as a Cloud Pod or start an Ephemeral Instance. Valid values are `cloud-pods`, `ephemeral` or `local`. Use this option in unison with `state-action` to control behaviour. | `cloud-pods` |
124
124
| `state-name` | Name of the state artifact (without extension) | `false` |
125
-
| `use-pro` | Whether to use the Pro version of LocalStack (requires Auth Token to be configured)| `false` |
125
+
| `use-pro` | Whether to use the Pro version of LocalStack (requires Auth Token to be configured). Will be removed in a future release. | `true` |
0 commit comments