From 4ae89587f24a31b524efe2d753d07edc188664aa Mon Sep 17 00:00:00 2001 From: "Dris.S" <53239451+DrisDary@users.noreply.github.com> Date: Mon, 1 Jun 2026 16:27:10 +0100 Subject: [PATCH] Migrate samples to localstack/localstack-azure image The Azure emulator image was renamed from localstack/localstack-azure-alpha to localstack/localstack-azure (localstack-pro SMF-642). Update all sample READMEs, docs/LOCALSTACK.md, run-samples.sh, and the CI workflow to pull/run the new name. The old name is still published in parallel during the grace period, so this can land independently. --- .github/workflows/run-samples.yml | 2 +- docs/LOCALSTACK.md | 8 ++++---- run-samples.sh | 2 +- samples/aci-blob-storage/python/README.md | 2 +- samples/function-app-front-door/python/README.md | 2 +- samples/function-app-managed-identity/python/README.md | 6 +++--- .../function-app-managed-identity/python/bicep/README.md | 6 +++--- .../python/scripts/README.md | 6 +++--- .../python/terraform/README.md | 6 +++--- samples/function-app-service-bus/dotnet/README.md | 6 +++--- samples/function-app-service-bus/dotnet/bicep/README.md | 6 +++--- samples/function-app-service-bus/dotnet/scripts/README.md | 6 +++--- .../function-app-service-bus/dotnet/terraform/README.md | 6 +++--- samples/function-app-storage-http/dotnet/README.md | 6 +++--- samples/function-app-storage-http/dotnet/bicep/README.md | 6 +++--- .../function-app-storage-http/dotnet/scripts/README.md | 6 +++--- .../function-app-storage-http/dotnet/terraform/README.md | 6 +++--- samples/servicebus/java/README.md | 6 +++--- samples/servicebus/java/bicep/README.md | 6 +++--- samples/servicebus/java/scripts/README.md | 6 +++--- samples/servicebus/java/terraform/README.md | 6 +++--- samples/web-app-cosmosdb-mongodb-api/python/README.md | 6 +++--- .../web-app-cosmosdb-mongodb-api/python/bicep/README.md | 6 +++--- .../web-app-cosmosdb-mongodb-api/python/scripts/README.md | 6 +++--- .../python/terraform/README.md | 6 +++--- samples/web-app-cosmosdb-nosql-api/python/README.md | 6 +++--- .../web-app-cosmosdb-nosql-api/python/scripts/README.md | 6 +++--- samples/web-app-custom-image/python/README.md | 6 +++--- samples/web-app-custom-image/python/bicep/README.md | 6 +++--- samples/web-app-custom-image/python/scripts/README.md | 6 +++--- samples/web-app-custom-image/python/terraform/README.md | 6 +++--- samples/web-app-managed-identity/python/README.md | 6 +++--- samples/web-app-managed-identity/python/bicep/README.md | 6 +++--- samples/web-app-managed-identity/python/scripts/README.md | 6 +++--- .../web-app-managed-identity/python/terraform/README.md | 6 +++--- .../web-app-postgresql-flexible-server/python/README.md | 4 ++-- samples/web-app-sql-database/python/README.md | 6 +++--- samples/web-app-sql-database/python/bicep/README.md | 6 +++--- samples/web-app-sql-database/python/scripts/README.md | 6 +++--- samples/web-app-sql-database/python/terraform/README.md | 6 +++--- 40 files changed, 112 insertions(+), 112 deletions(-) diff --git a/.github/workflows/run-samples.yml b/.github/workflows/run-samples.yml index dd783f6..a144a3e 100644 --- a/.github/workflows/run-samples.yml +++ b/.github/workflows/run-samples.yml @@ -85,7 +85,7 @@ jobs: contents: read env: - IMAGE_NAME: localstack/localstack-azure-alpha + IMAGE_NAME: localstack/localstack-azure DEFAULT_TAG: latest steps: diff --git a/docs/LOCALSTACK.md b/docs/LOCALSTACK.md index 7f1af9a..d83f285 100644 --- a/docs/LOCALSTACK.md +++ b/docs/LOCALSTACK.md @@ -12,7 +12,7 @@ Refer to the LocalStack Auth Token documentation (e.g. the [Auth Token guide](ht ## 1. Pull the Azure Image ```bash -docker pull localstack/localstack-azure-alpha +docker pull localstack/localstack-azure ``` ## 2. Choose a Startup Method @@ -32,7 +32,7 @@ Make sure the `localstack` CLI is installed (`pip install localstack` or `brew i export LOCALSTACK_AUTH_TOKEN= # Start the LocalStack Azure emulator -IMAGE_NAME=localstack/localstack-azure-alpha localstack start -d +IMAGE_NAME=localstack/localstack-azure localstack start -d localstack wait -t 60 # Route all Azure CLI calls to the LocalStack Azure emulator @@ -61,7 +61,7 @@ docker run \ -v /var/run/docker.sock:/var/run/docker.sock \ -v ~/.localstack/volume:/var/lib/localstack \ -e LOCALSTACK_AUTH_TOKEN=${LOCALSTACK_AUTH_TOKEN:?} \ - localstack/localstack-azure-alpha + localstack/localstack-azure ``` Notes: @@ -81,7 +81,7 @@ version: "3.8" services: localstack: container_name: localstack-main - image: localstack/localstack-azure-alpha + image: localstack/localstack-azure ports: - "127.0.0.1:4566:4566" environment: diff --git a/run-samples.sh b/run-samples.sh index b59670a..6595923 100755 --- a/run-samples.sh +++ b/run-samples.sh @@ -109,7 +109,7 @@ fi # 4. Start LocalStack if ! localstack status | grep -q "running"; then echo "Starting LocalStack Azure emulator..." - IMAGE_NAME=localstack/localstack-azure-alpha localstack start -d + IMAGE_NAME=localstack/localstack-azure localstack start -d localstack wait -t 60 else echo "LocalStack is already running." diff --git a/samples/aci-blob-storage/python/README.md b/samples/aci-blob-storage/python/README.md index a44917f..e3a9fd2 100644 --- a/samples/aci-blob-storage/python/README.md +++ b/samples/aci-blob-storage/python/README.md @@ -28,7 +28,7 @@ The following diagram illustrates the architecture of the solution: ```bash # Start the LocalStack Azure emulator -IMAGE_NAME=localstack/localstack-azure-alpha localstack start -d +IMAGE_NAME=localstack/localstack-azure localstack start -d localstack wait -t 60 # Route all Azure CLI calls to the LocalStack Azure emulator diff --git a/samples/function-app-front-door/python/README.md b/samples/function-app-front-door/python/README.md index 113e1f0..dd82454 100644 --- a/samples/function-app-front-door/python/README.md +++ b/samples/function-app-front-door/python/README.md @@ -69,7 +69,7 @@ The following diagrams visualize each scenario provisioned by `deploy_all.sh`. T 1. **Start the LocalStack Azure emulator** ```bash # Start the LocalStack Azure emulator - IMAGE_NAME=localstack/localstack-azure-alpha localstack start -d + IMAGE_NAME=localstack/localstack-azure localstack start -d localstack wait -t 60 # Route all Azure CLI calls to the LocalStack Azure emulator diff --git a/samples/function-app-managed-identity/python/README.md b/samples/function-app-managed-identity/python/README.md index 4c84ad9..ac13079 100644 --- a/samples/function-app-managed-identity/python/README.md +++ b/samples/function-app-managed-identity/python/README.md @@ -53,10 +53,10 @@ The LocalStack emulator emulates the following services, which are necessary at ## Deployment -Set up the Azure emulator using the LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and set it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure-alpha). To pull the image, execute: +Set up the Azure emulator using the LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and set it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure). To pull the image, execute: ```bash -docker pull localstack/localstack-azure-alpha +docker pull localstack/localstack-azure ``` Start the LocalStack Azure emulator by running: @@ -66,7 +66,7 @@ Start the LocalStack Azure emulator by running: export LOCALSTACK_AUTH_TOKEN= # Start the LocalStack Azure emulator -IMAGE_NAME=localstack/localstack-azure-alpha localstack start -d +IMAGE_NAME=localstack/localstack-azure localstack start -d localstack wait -t 60 # Route all Azure CLI calls to the LocalStack Azure emulator diff --git a/samples/function-app-managed-identity/python/bicep/README.md b/samples/function-app-managed-identity/python/bicep/README.md index ec822ba..af6ad6f 100644 --- a/samples/function-app-managed-identity/python/bicep/README.md +++ b/samples/function-app-managed-identity/python/bicep/README.md @@ -74,10 +74,10 @@ The [deploy.sh](deploy.sh) script executes the following steps: ## Deployment -You can set up the Azure emulator by utilizing LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and specify it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure-alpha). To pull the Azure Docker image, execute the following command: +You can set up the Azure emulator by utilizing LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and specify it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure). To pull the Azure Docker image, execute the following command: ```bash -docker pull localstack/localstack-azure-alpha +docker pull localstack/localstack-azure ``` Start the LocalStack Azure emulator using the localstack CLI, execute the following command: @@ -87,7 +87,7 @@ Start the LocalStack Azure emulator using the localstack CLI, execute the follow export LOCALSTACK_AUTH_TOKEN= # Start the LocalStack Azure emulator -IMAGE_NAME=localstack/localstack-azure-alpha localstack start -d +IMAGE_NAME=localstack/localstack-azure localstack start -d localstack wait -t 60 # Route all Azure CLI calls to the LocalStack Azure emulator diff --git a/samples/function-app-managed-identity/python/scripts/README.md b/samples/function-app-managed-identity/python/scripts/README.md index 30aba0d..3a7f1a0 100644 --- a/samples/function-app-managed-identity/python/scripts/README.md +++ b/samples/function-app-managed-identity/python/scripts/README.md @@ -51,10 +51,10 @@ These scripts eliminate manual configuration steps and enable one-command deploy ## Deployment -You can set up the Azure emulator by utilizing LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and specify it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure-alpha). To pull the Azure Docker image, execute the following command: +You can set up the Azure emulator by utilizing LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and specify it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure). To pull the Azure Docker image, execute the following command: ```bash -docker pull localstack/localstack-azure-alpha +docker pull localstack/localstack-azure ``` Start the LocalStack Azure emulator using the localstack CLI, execute the following command: @@ -64,7 +64,7 @@ Start the LocalStack Azure emulator using the localstack CLI, execute the follow export LOCALSTACK_AUTH_TOKEN= # Start the LocalStack Azure emulator -IMAGE_NAME=localstack/localstack-azure-alpha localstack start -d +IMAGE_NAME=localstack/localstack-azure localstack start -d localstack wait -t 60 # Route all Azure CLI calls to the LocalStack Azure emulator diff --git a/samples/function-app-managed-identity/python/terraform/README.md b/samples/function-app-managed-identity/python/terraform/README.md index a89f929..26d3733 100644 --- a/samples/function-app-managed-identity/python/terraform/README.md +++ b/samples/function-app-managed-identity/python/terraform/README.md @@ -79,10 +79,10 @@ provider "azurerm" { ## Deployment -You can set up the Azure emulator by utilizing LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and specify it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure-alpha). To pull the Azure Docker image, execute the following command: +You can set up the Azure emulator by utilizing LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and specify it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure). To pull the Azure Docker image, execute the following command: ```bash -docker pull localstack/localstack-azure-alpha +docker pull localstack/localstack-azure ``` Start the LocalStack Azure emulator using the localstack CLI, execute the following command: @@ -92,7 +92,7 @@ Start the LocalStack Azure emulator using the localstack CLI, execute the follow export LOCALSTACK_AUTH_TOKEN= # Start the LocalStack Azure emulator -IMAGE_NAME=localstack/localstack-azure-alpha localstack start -d +IMAGE_NAME=localstack/localstack-azure localstack start -d localstack wait -t 60 # Route all Azure CLI calls to the LocalStack Azure emulator diff --git a/samples/function-app-service-bus/dotnet/README.md b/samples/function-app-service-bus/dotnet/README.md index eb17668..08dd7a9 100644 --- a/samples/function-app-service-bus/dotnet/README.md +++ b/samples/function-app-service-bus/dotnet/README.md @@ -55,10 +55,10 @@ The solution is composed of the following Azure resources: ## Deployment -Set up the Azure emulator using the LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and set it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure-alpha). To pull the image, execute: +Set up the Azure emulator using the LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and set it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure). To pull the image, execute: ```bash -docker pull localstack/localstack-azure-alpha +docker pull localstack/localstack-azure ``` Start the LocalStack Azure emulator by running: @@ -68,7 +68,7 @@ Start the LocalStack Azure emulator by running: export LOCALSTACK_AUTH_TOKEN= # Start the LocalStack Azure emulator -IMAGE_NAME=localstack/localstack-azure-alpha localstack start -d +IMAGE_NAME=localstack/localstack-azure localstack start -d localstack wait -t 60 # Route all Azure CLI calls to the LocalStack Azure emulator diff --git a/samples/function-app-service-bus/dotnet/bicep/README.md b/samples/function-app-service-bus/dotnet/bicep/README.md index cb2df22..8db8741 100644 --- a/samples/function-app-service-bus/dotnet/bicep/README.md +++ b/samples/function-app-service-bus/dotnet/bicep/README.md @@ -92,10 +92,10 @@ See [deploy.sh](deploy.sh) for the complete deployment automation. The script pe ## Deployment -You can set up the Azure emulator by utilizing LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and specify it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure-alpha). To pull the Azure Docker image, execute the following command: +You can set up the Azure emulator by utilizing LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and specify it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure). To pull the Azure Docker image, execute the following command: ```bash -docker pull localstack/localstack-azure-alpha +docker pull localstack/localstack-azure ``` Start the LocalStack Azure emulator using the localstack CLI, execute the following command: @@ -105,7 +105,7 @@ Start the LocalStack Azure emulator using the localstack CLI, execute the follow export LOCALSTACK_AUTH_TOKEN= # Start the LocalStack Azure emulator -IMAGE_NAME=localstack/localstack-azure-alpha localstack start -d +IMAGE_NAME=localstack/localstack-azure localstack start -d localstack wait -t 60 # Route all Azure CLI calls to the LocalStack Azure emulator diff --git a/samples/function-app-service-bus/dotnet/scripts/README.md b/samples/function-app-service-bus/dotnet/scripts/README.md index 0bcb818..f48dc57 100644 --- a/samples/function-app-service-bus/dotnet/scripts/README.md +++ b/samples/function-app-service-bus/dotnet/scripts/README.md @@ -61,10 +61,10 @@ For more information on the sample application, see [Azure Functions App with Se ## Deployment -You can set up the Azure emulator by utilizing LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and specify it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure-alpha). To pull the Azure Docker image, execute the following command: +You can set up the Azure emulator by utilizing LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and specify it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure). To pull the Azure Docker image, execute the following command: ```bash -docker pull localstack/localstack-azure-alpha +docker pull localstack/localstack-azure ``` Start the LocalStack Azure emulator using the localstack CLI, execute the following command: @@ -74,7 +74,7 @@ Start the LocalStack Azure emulator using the localstack CLI, execute the follow export LOCALSTACK_AUTH_TOKEN= # Start the LocalStack Azure emulator -IMAGE_NAME=localstack/localstack-azure-alpha localstack start -d +IMAGE_NAME=localstack/localstack-azure localstack start -d localstack wait -t 60 # Route all Azure CLI calls to the LocalStack Azure emulator diff --git a/samples/function-app-service-bus/dotnet/terraform/README.md b/samples/function-app-service-bus/dotnet/terraform/README.md index f278281..075ae28 100644 --- a/samples/function-app-service-bus/dotnet/terraform/README.md +++ b/samples/function-app-service-bus/dotnet/terraform/README.md @@ -97,10 +97,10 @@ provider "azurerm" { ## Deployment -You can set up the Azure emulator by utilizing LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and specify it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure-alpha). To pull the Azure Docker image, execute the following command: +You can set up the Azure emulator by utilizing LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and specify it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure). To pull the Azure Docker image, execute the following command: ```bash -docker pull localstack/localstack-azure-alpha +docker pull localstack/localstack-azure ``` Start the LocalStack Azure emulator using the localstack CLI, execute the following command: @@ -110,7 +110,7 @@ Start the LocalStack Azure emulator using the localstack CLI, execute the follow export LOCALSTACK_AUTH_TOKEN= # Start the LocalStack Azure emulator -IMAGE_NAME=localstack/localstack-azure-alpha localstack start -d +IMAGE_NAME=localstack/localstack-azure localstack start -d localstack wait -t 60 # Route all Azure CLI calls to the LocalStack Azure emulator diff --git a/samples/function-app-storage-http/dotnet/README.md b/samples/function-app-storage-http/dotnet/README.md index 3cd8424..df835c2 100644 --- a/samples/function-app-storage-http/dotnet/README.md +++ b/samples/function-app-storage-http/dotnet/README.md @@ -135,17 +135,17 @@ The sample uses the following configurable settings in `local.settings.json`: ## Deployment -1. You can set up the Azure emulator by utilizing LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and specify it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure-alpha). To pull the Azure Docker image, execute the following command: +1. You can set up the Azure emulator by utilizing LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and specify it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure). To pull the Azure Docker image, execute the following command: ```bash - docker pull localstack/localstack-azure-alpha + docker pull localstack/localstack-azure ``` 2. Start the LocalStack Azure emulator using the localstack CLI, execute the following command: ```bash export LOCALSTACK_AUTH_TOKEN= - IMAGE_NAME=localstack/localstack-azure-alpha localstack start + IMAGE_NAME=localstack/localstack-azure localstack start ``` 3. Deploy the application to LocalStack for Azure using one of the following methods: diff --git a/samples/function-app-storage-http/dotnet/bicep/README.md b/samples/function-app-storage-http/dotnet/bicep/README.md index 9594052..9d738a2 100644 --- a/samples/function-app-storage-http/dotnet/bicep/README.md +++ b/samples/function-app-storage-http/dotnet/bicep/README.md @@ -56,17 +56,17 @@ See [deploy.sh](deploy.sh) for the complete deployment automation script. The sc ## Deployment -1. You can set up the Azure emulator by utilizing LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and specify it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure-alpha). To pull the Azure Docker image, execute the following command: +1. You can set up the Azure emulator by utilizing LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and specify it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure). To pull the Azure Docker image, execute the following command: ```bash - docker pull localstack/localstack-azure-alpha + docker pull localstack/localstack-azure ``` 2. Start the LocalStack Azure emulator using the localstack CLI, execute the following command: ```bash export LOCALSTACK_AUTH_TOKEN= - IMAGE_NAME=localstack/localstack-azure-alpha localstack start + IMAGE_NAME=localstack/localstack-azure localstack start ``` 3. Navigate to the scripts directory diff --git a/samples/function-app-storage-http/dotnet/scripts/README.md b/samples/function-app-storage-http/dotnet/scripts/README.md index 79312a3..d504480 100644 --- a/samples/function-app-storage-http/dotnet/scripts/README.md +++ b/samples/function-app-storage-http/dotnet/scripts/README.md @@ -49,17 +49,17 @@ See [deploy.sh](deploy.sh) for the complete deployment script. The script perfor ## Deployment -1. You can set up the Azure emulator by utilizing LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and specify it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure-alpha). To pull the Azure Docker image, execute the following command: +1. You can set up the Azure emulator by utilizing LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and specify it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure). To pull the Azure Docker image, execute the following command: ```bash - docker pull localstack/localstack-azure-alpha + docker pull localstack/localstack-azure ``` 2. Start the LocalStack Azure emulator using the localstack CLI, execute the following command: ```bash export LOCALSTACK_AUTH_TOKEN= - IMAGE_NAME=localstack/localstack-azure-alpha localstack start + IMAGE_NAME=localstack/localstack-azure localstack start ``` 3. Navigate to the scripts directory diff --git a/samples/function-app-storage-http/dotnet/terraform/README.md b/samples/function-app-storage-http/dotnet/terraform/README.md index dbcbcb7..a452ff7 100644 --- a/samples/function-app-storage-http/dotnet/terraform/README.md +++ b/samples/function-app-storage-http/dotnet/terraform/README.md @@ -74,10 +74,10 @@ provider "azurerm" { ## Deployment -You can set up the Azure emulator by utilizing LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and specify it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure-alpha). To pull the Azure Docker image, execute the following command: +You can set up the Azure emulator by utilizing LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and specify it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure). To pull the Azure Docker image, execute the following command: ```bash -docker pull localstack/localstack-azure-alpha +docker pull localstack/localstack-azure ``` Start the LocalStack Azure emulator using the localstack CLI, execute the following command: @@ -87,7 +87,7 @@ Start the LocalStack Azure emulator using the localstack CLI, execute the follow export LOCALSTACK_AUTH_TOKEN= # Start the LocalStack Azure emulator -IMAGE_NAME=localstack/localstack-azure-alpha localstack start -d +IMAGE_NAME=localstack/localstack-azure localstack start -d localstack wait -t 60 # Route all Azure CLI calls to the LocalStack Azure emulator diff --git a/samples/servicebus/java/README.md b/samples/servicebus/java/README.md index 36476ee..bb9acee 100644 --- a/samples/servicebus/java/README.md +++ b/samples/servicebus/java/README.md @@ -28,10 +28,10 @@ The solution is composed of the following Azure resources: ## Deployment -Set up the Azure emulator using the LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/) to obtain your Auth Token and set it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure-alpha). To pull the image, execute: +Set up the Azure emulator using the LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/) to obtain your Auth Token and set it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure). To pull the image, execute: ```bash -docker pull localstack/localstack-azure-alpha +docker pull localstack/localstack-azure ``` Start the LocalStack Azure emulator by running: @@ -41,7 +41,7 @@ Start the LocalStack Azure emulator by running: export LOCALSTACK_AUTH_TOKEN= # Start the LocalStack Azure emulator -IMAGE_NAME=localstack/localstack-azure-alpha localstack start -d +IMAGE_NAME=localstack/localstack-azure localstack start -d localstack wait -t 60 # Route all Azure CLI calls to the LocalStack Azure emulator diff --git a/samples/servicebus/java/bicep/README.md b/samples/servicebus/java/bicep/README.md index 3ed3c40..f34c888 100644 --- a/samples/servicebus/java/bicep/README.md +++ b/samples/servicebus/java/bicep/README.md @@ -66,10 +66,10 @@ You can use the [deploy.sh](deploy.sh) script to automate the deployment of all ## Deployment -You can set up the Azure emulator by utilizing LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/) to obtain your Auth Token and specify it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure-alpha). To pull the Azure Docker image, execute the following command: +You can set up the Azure emulator by utilizing LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/) to obtain your Auth Token and specify it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure). To pull the Azure Docker image, execute the following command: ```bash -docker pull localstack/localstack-azure-alpha +docker pull localstack/localstack-azure ``` Start the LocalStack Azure emulator using the localstack CLI, execute the following command: @@ -79,7 +79,7 @@ Start the LocalStack Azure emulator using the localstack CLI, execute the follow export LOCALSTACK_AUTH_TOKEN= # Start the LocalStack Azure emulator -IMAGE_NAME=localstack/localstack-azure-alpha localstack start -d +IMAGE_NAME=localstack/localstack-azure localstack start -d localstack wait -t 60 # Route all Azure CLI calls to the LocalStack Azure emulator diff --git a/samples/servicebus/java/scripts/README.md b/samples/servicebus/java/scripts/README.md index b16ca3f..4695104 100644 --- a/samples/servicebus/java/scripts/README.md +++ b/samples/servicebus/java/scripts/README.md @@ -49,10 +49,10 @@ You can use the [deploy.sh](deploy.sh) script to automate the deployment of all ## Deployment -You can set up the Azure emulator by utilizing LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/) to obtain your Auth Token and specify it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure-alpha). To pull the Azure Docker image, execute the following command: +You can set up the Azure emulator by utilizing LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/) to obtain your Auth Token and specify it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure). To pull the Azure Docker image, execute the following command: ```bash -docker pull localstack/localstack-azure-alpha +docker pull localstack/localstack-azure ``` Start the LocalStack Azure emulator using the localstack CLI, execute the following command: @@ -62,7 +62,7 @@ Start the LocalStack Azure emulator using the localstack CLI, execute the follow export LOCALSTACK_AUTH_TOKEN= # Start the LocalStack Azure emulator -IMAGE_NAME=localstack/localstack-azure-alpha localstack start -d +IMAGE_NAME=localstack/localstack-azure localstack start -d localstack wait -t 60 # Route all Azure CLI calls to the LocalStack Azure emulator diff --git a/samples/servicebus/java/terraform/README.md b/samples/servicebus/java/terraform/README.md index e94ce25..8b3cfd6 100644 --- a/samples/servicebus/java/terraform/README.md +++ b/samples/servicebus/java/terraform/README.md @@ -72,10 +72,10 @@ provider "azurerm" { ## Deployment -You can set up the Azure emulator by utilizing LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and specify it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure-alpha). To pull the Azure Docker image, execute the following command: +You can set up the Azure emulator by utilizing LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and specify it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure). To pull the Azure Docker image, execute the following command: ```bash -docker pull localstack/localstack-azure-alpha +docker pull localstack/localstack-azure ``` Start the LocalStack Azure emulator using the localstack CLI, execute the following command: @@ -85,7 +85,7 @@ Start the LocalStack Azure emulator using the localstack CLI, execute the follow export LOCALSTACK_AUTH_TOKEN= # Start the LocalStack Azure emulator -IMAGE_NAME=localstack/localstack-azure-alpha localstack start -d +IMAGE_NAME=localstack/localstack-azure localstack start -d localstack wait -t 60 # Route all Azure CLI calls to the LocalStack Azure emulator diff --git a/samples/web-app-cosmosdb-mongodb-api/python/README.md b/samples/web-app-cosmosdb-mongodb-api/python/README.md index 59b4b52..1e1d7e9 100644 --- a/samples/web-app-cosmosdb-mongodb-api/python/README.md +++ b/samples/web-app-cosmosdb-mongodb-api/python/README.md @@ -38,10 +38,10 @@ The web app enables users to plan and manage vacation activities, with all data ## Deployment -Set up the Azure emulator using the LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and set it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure-alpha). To pull the image, execute: +Set up the Azure emulator using the LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and set it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure). To pull the image, execute: ```bash -docker pull localstack/localstack-azure-alpha +docker pull localstack/localstack-azure ``` Start the LocalStack Azure emulator by running: @@ -51,7 +51,7 @@ Start the LocalStack Azure emulator by running: export LOCALSTACK_AUTH_TOKEN= # Start the LocalStack Azure emulator -IMAGE_NAME=localstack/localstack-azure-alpha localstack start -d +IMAGE_NAME=localstack/localstack-azure localstack start -d localstack wait -t 60 # Route all Azure CLI calls to the LocalStack Azure emulator diff --git a/samples/web-app-cosmosdb-mongodb-api/python/bicep/README.md b/samples/web-app-cosmosdb-mongodb-api/python/bicep/README.md index 39c7048..6c7e24b 100644 --- a/samples/web-app-cosmosdb-mongodb-api/python/bicep/README.md +++ b/samples/web-app-cosmosdb-mongodb-api/python/bicep/README.md @@ -79,10 +79,10 @@ See [deploy.sh](deploy.sh) for the complete deployment automation. The script pe ## Deployment -You can set up the Azure emulator by utilizing LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and specify it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure-alpha). To pull the Azure Docker image, execute the following command: +You can set up the Azure emulator by utilizing LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and specify it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure). To pull the Azure Docker image, execute the following command: ```bash -docker pull localstack/localstack-azure-alpha +docker pull localstack/localstack-azure ``` Start the LocalStack Azure emulator using the localstack CLI, execute the following command: @@ -92,7 +92,7 @@ Start the LocalStack Azure emulator using the localstack CLI, execute the follow export LOCALSTACK_AUTH_TOKEN= # Start the LocalStack Azure emulator -IMAGE_NAME=localstack/localstack-azure-alpha localstack start -d +IMAGE_NAME=localstack/localstack-azure localstack start -d localstack wait -t 60 # Route all Azure CLI calls to the LocalStack Azure emulator diff --git a/samples/web-app-cosmosdb-mongodb-api/python/scripts/README.md b/samples/web-app-cosmosdb-mongodb-api/python/scripts/README.md index 0168135..7547a75 100644 --- a/samples/web-app-cosmosdb-mongodb-api/python/scripts/README.md +++ b/samples/web-app-cosmosdb-mongodb-api/python/scripts/README.md @@ -64,10 +64,10 @@ See [deploy.sh](deploy.sh) for the complete deployment script. The script perfor ## Deployment -You can set up the Azure emulator by utilizing LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and specify it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure-alpha). To pull the Azure Docker image, execute the following command: +You can set up the Azure emulator by utilizing LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and specify it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure). To pull the Azure Docker image, execute the following command: ```bash -docker pull localstack/localstack-azure-alpha +docker pull localstack/localstack-azure ``` Start the LocalStack Azure emulator using the localstack CLI, execute the following command: @@ -77,7 +77,7 @@ Start the LocalStack Azure emulator using the localstack CLI, execute the follow export LOCALSTACK_AUTH_TOKEN= # Start the LocalStack Azure emulator -IMAGE_NAME=localstack/localstack-azure-alpha localstack start -d +IMAGE_NAME=localstack/localstack-azure localstack start -d localstack wait -t 60 # Route all Azure CLI calls to the LocalStack Azure emulator diff --git a/samples/web-app-cosmosdb-mongodb-api/python/terraform/README.md b/samples/web-app-cosmosdb-mongodb-api/python/terraform/README.md index 46f3c53..1ee62f8 100644 --- a/samples/web-app-cosmosdb-mongodb-api/python/terraform/README.md +++ b/samples/web-app-cosmosdb-mongodb-api/python/terraform/README.md @@ -84,10 +84,10 @@ provider "azurerm" { ## Deployment -You can set up the Azure emulator by utilizing LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and specify it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure-alpha). To pull the Azure Docker image, execute the following command: +You can set up the Azure emulator by utilizing LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and specify it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure). To pull the Azure Docker image, execute the following command: ```bash -docker pull localstack/localstack-azure-alpha +docker pull localstack/localstack-azure ``` Start the LocalStack Azure emulator using the localstack CLI, execute the following command: @@ -97,7 +97,7 @@ Start the LocalStack Azure emulator using the localstack CLI, execute the follow export LOCALSTACK_AUTH_TOKEN= # Start the LocalStack Azure emulator -IMAGE_NAME=localstack/localstack-azure-alpha localstack start -d +IMAGE_NAME=localstack/localstack-azure localstack start -d localstack wait -t 60 # Route all Azure CLI calls to the LocalStack Azure emulator diff --git a/samples/web-app-cosmosdb-nosql-api/python/README.md b/samples/web-app-cosmosdb-nosql-api/python/README.md index 224beb2..3938f9d 100644 --- a/samples/web-app-cosmosdb-nosql-api/python/README.md +++ b/samples/web-app-cosmosdb-nosql-api/python/README.md @@ -21,10 +21,10 @@ The following diagram illustrates the architecture of the solution: ## Deployment -Set up the Azure emulator using the LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and set it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure-alpha). To pull the image, execute: +Set up the Azure emulator using the LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and set it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure). To pull the image, execute: ```bash -docker pull localstack/localstack-azure-alpha +docker pull localstack/localstack-azure ``` Start the LocalStack Azure emulator by running: @@ -34,7 +34,7 @@ Start the LocalStack Azure emulator by running: export LOCALSTACK_AUTH_TOKEN= # Start the LocalStack Azure emulator -IMAGE_NAME=localstack/localstack-azure-alpha localstack start -d +IMAGE_NAME=localstack/localstack-azure localstack start -d localstack wait -t 60 # Route all Azure CLI calls to the LocalStack Azure emulator diff --git a/samples/web-app-cosmosdb-nosql-api/python/scripts/README.md b/samples/web-app-cosmosdb-nosql-api/python/scripts/README.md index 806ae97..10af2b0 100644 --- a/samples/web-app-cosmosdb-nosql-api/python/scripts/README.md +++ b/samples/web-app-cosmosdb-nosql-api/python/scripts/README.md @@ -26,10 +26,10 @@ For more information, see [Get started with the az tool on LocalStack](https://a ## Deployment -You can set up the Azure emulator by utilizing LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and specify it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure-alpha). To pull the Azure Docker image, execute the following command: +You can set up the Azure emulator by utilizing LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and specify it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure). To pull the Azure Docker image, execute the following command: ```bash -docker pull localstack/localstack-azure-alpha +docker pull localstack/localstack-azure ``` Start the LocalStack Azure emulator using the localstack CLI, execute the following command: @@ -39,7 +39,7 @@ Start the LocalStack Azure emulator using the localstack CLI, execute the follow export LOCALSTACK_AUTH_TOKEN= # Start the LocalStack Azure emulator -IMAGE_NAME=localstack/localstack-azure-alpha localstack start -d +IMAGE_NAME=localstack/localstack-azure localstack start -d localstack wait -t 60 # Route all Azure CLI calls to the LocalStack Azure emulator diff --git a/samples/web-app-custom-image/python/README.md b/samples/web-app-custom-image/python/README.md index 389054c..edbf301 100644 --- a/samples/web-app-custom-image/python/README.md +++ b/samples/web-app-custom-image/python/README.md @@ -36,10 +36,10 @@ The solution is composed of the following Azure resources: ## Deployment -Set up the Azure emulator using the LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and set it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure-alpha). To pull the image, execute: +Set up the Azure emulator using the LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and set it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure). To pull the image, execute: ```bash -docker pull localstack/localstack-azure-alpha +docker pull localstack/localstack-azure ``` Start the LocalStack Azure emulator by running: @@ -49,7 +49,7 @@ Start the LocalStack Azure emulator by running: export LOCALSTACK_AUTH_TOKEN= # Start the LocalStack Azure emulator -IMAGE_NAME=localstack/localstack-azure-alpha localstack start -d +IMAGE_NAME=localstack/localstack-azure localstack start -d localstack wait -t 60 # Route all Azure CLI calls to the LocalStack Azure emulator diff --git a/samples/web-app-custom-image/python/bicep/README.md b/samples/web-app-custom-image/python/bicep/README.md index 4fe9889..02b9d4e 100644 --- a/samples/web-app-custom-image/python/bicep/README.md +++ b/samples/web-app-custom-image/python/bicep/README.md @@ -88,10 +88,10 @@ See [deploy.sh](deploy.sh) for the complete deployment automation. The script pe ## Deployment -You can set up the Azure emulator by utilizing the LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and specify it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure-alpha). To pull the Azure Docker image, execute the following command: +You can set up the Azure emulator by utilizing the LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and specify it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure). To pull the Azure Docker image, execute the following command: ```bash -docker pull localstack/localstack-azure-alpha +docker pull localstack/localstack-azure ``` Start the LocalStack Azure emulator using the localstack CLI, execute the following command: @@ -101,7 +101,7 @@ Start the LocalStack Azure emulator using the localstack CLI, execute the follow export LOCALSTACK_AUTH_TOKEN= # Start the LocalStack Azure emulator -IMAGE_NAME=localstack/localstack-azure-alpha localstack start -d +IMAGE_NAME=localstack/localstack-azure localstack start -d localstack wait -t 60 # Route all Azure CLI calls to the LocalStack Azure emulator diff --git a/samples/web-app-custom-image/python/scripts/README.md b/samples/web-app-custom-image/python/scripts/README.md index 9d2eda8..9ddf641 100644 --- a/samples/web-app-custom-image/python/scripts/README.md +++ b/samples/web-app-custom-image/python/scripts/README.md @@ -53,10 +53,10 @@ See [deploy.sh](deploy.sh) for the complete deployment automation. The script pe ## Deployment -You can set up the Azure emulator by utilizing the LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and specify it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure-alpha). To pull the Azure Docker image, execute the following command: +You can set up the Azure emulator by utilizing the LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and specify it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure). To pull the Azure Docker image, execute the following command: ```bash -docker pull localstack/localstack-azure-alpha +docker pull localstack/localstack-azure ``` Start the LocalStack Azure emulator using the localstack CLI, execute the following command: @@ -66,7 +66,7 @@ Start the LocalStack Azure emulator using the localstack CLI, execute the follow export LOCALSTACK_AUTH_TOKEN= # Start the LocalStack Azure emulator -IMAGE_NAME=localstack/localstack-azure-alpha localstack start -d +IMAGE_NAME=localstack/localstack-azure localstack start -d localstack wait -t 60 # Route all Azure CLI calls to the LocalStack Azure emulator diff --git a/samples/web-app-custom-image/python/terraform/README.md b/samples/web-app-custom-image/python/terraform/README.md index 8f87db4..c771714 100644 --- a/samples/web-app-custom-image/python/terraform/README.md +++ b/samples/web-app-custom-image/python/terraform/README.md @@ -81,10 +81,10 @@ provider "azurerm" { ## Deployment -You can set up the Azure emulator by utilizing the LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and specify it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure-alpha). To pull the Azure Docker image, execute the following command: +You can set up the Azure emulator by utilizing the LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and specify it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure). To pull the Azure Docker image, execute the following command: ```bash -docker pull localstack/localstack-azure-alpha +docker pull localstack/localstack-azure ``` Start the LocalStack Azure emulator using the localstack CLI, execute the following command: @@ -94,7 +94,7 @@ Start the LocalStack Azure emulator using the localstack CLI, execute the follow export LOCALSTACK_AUTH_TOKEN= # Start the LocalStack Azure emulator -IMAGE_NAME=localstack/localstack-azure-alpha localstack start -d +IMAGE_NAME=localstack/localstack-azure localstack start -d localstack wait -t 60 # Route all Azure CLI calls to the LocalStack Azure emulator diff --git a/samples/web-app-managed-identity/python/README.md b/samples/web-app-managed-identity/python/README.md index ea334af..10cca69 100644 --- a/samples/web-app-managed-identity/python/README.md +++ b/samples/web-app-managed-identity/python/README.md @@ -49,10 +49,10 @@ The LocalStack emulator emulates the following services, which are necessary at ## Deployment -Set up the Azure emulator using the LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and set it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure-alpha). To pull the image, execute: +Set up the Azure emulator using the LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and set it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure). To pull the image, execute: ```bash -docker pull localstack/localstack-azure-alpha +docker pull localstack/localstack-azure ``` Start the LocalStack Azure emulator by running: @@ -62,7 +62,7 @@ Start the LocalStack Azure emulator by running: export LOCALSTACK_AUTH_TOKEN= # Start the LocalStack Azure emulator -IMAGE_NAME=localstack/localstack-azure-alpha localstack start -d +IMAGE_NAME=localstack/localstack-azure localstack start -d localstack wait -t 60 # Route all Azure CLI calls to the LocalStack Azure emulator diff --git a/samples/web-app-managed-identity/python/bicep/README.md b/samples/web-app-managed-identity/python/bicep/README.md index aa66008..7ffa693 100644 --- a/samples/web-app-managed-identity/python/bicep/README.md +++ b/samples/web-app-managed-identity/python/bicep/README.md @@ -54,10 +54,10 @@ See [deploy.sh](deploy.sh) for the complete deployment script. The script perfor ## Deployment -You can set up the Azure emulator by utilizing LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and specify it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure-alpha). To pull the Azure Docker image, execute the following command: +You can set up the Azure emulator by utilizing LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and specify it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure). To pull the Azure Docker image, execute the following command: ```bash -docker pull localstack/localstack-azure-alpha +docker pull localstack/localstack-azure ``` Start the LocalStack Azure emulator using the localstack CLI, execute the following command: @@ -67,7 +67,7 @@ Start the LocalStack Azure emulator using the localstack CLI, execute the follow export LOCALSTACK_AUTH_TOKEN= # Start the LocalStack Azure emulator -IMAGE_NAME=localstack/localstack-azure-alpha localstack start -d +IMAGE_NAME=localstack/localstack-azure localstack start -d localstack wait -t 60 # Route all Azure CLI calls to the LocalStack Azure emulator diff --git a/samples/web-app-managed-identity/python/scripts/README.md b/samples/web-app-managed-identity/python/scripts/README.md index 9eaa585..ddca4c5 100644 --- a/samples/web-app-managed-identity/python/scripts/README.md +++ b/samples/web-app-managed-identity/python/scripts/README.md @@ -70,10 +70,10 @@ These scripts eliminate manual configuration steps and enable one-command deploy ## Deployment -You can set up the Azure emulator by utilizing LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and specify it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure-alpha). To pull the Azure Docker image, execute the following command: +You can set up the Azure emulator by utilizing LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and specify it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure). To pull the Azure Docker image, execute the following command: ```bash -docker pull localstack/localstack-azure-alpha +docker pull localstack/localstack-azure ``` Start the LocalStack Azure emulator using the localstack CLI, execute the following command: @@ -83,7 +83,7 @@ Start the LocalStack Azure emulator using the localstack CLI, execute the follow export LOCALSTACK_AUTH_TOKEN= # Start the LocalStack Azure emulator -IMAGE_NAME=localstack/localstack-azure-alpha localstack start -d +IMAGE_NAME=localstack/localstack-azure localstack start -d localstack wait -t 60 # Route all Azure CLI calls to the LocalStack Azure emulator diff --git a/samples/web-app-managed-identity/python/terraform/README.md b/samples/web-app-managed-identity/python/terraform/README.md index a82a275..eb8c2df 100644 --- a/samples/web-app-managed-identity/python/terraform/README.md +++ b/samples/web-app-managed-identity/python/terraform/README.md @@ -68,10 +68,10 @@ provider "azurerm" { ## Deployment -You can set up the Azure emulator by utilizing LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and specify it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure-alpha). To pull the Azure Docker image, execute the following command: +You can set up the Azure emulator by utilizing LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and specify it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure). To pull the Azure Docker image, execute the following command: ```bash -docker pull localstack/localstack-azure-alpha +docker pull localstack/localstack-azure ``` Start the LocalStack Azure emulator using the localstack CLI, execute the following command: @@ -81,7 +81,7 @@ Start the LocalStack Azure emulator using the localstack CLI, execute the follow export LOCALSTACK_AUTH_TOKEN= # Start the LocalStack Azure emulator -IMAGE_NAME=localstack/localstack-azure-alpha localstack start -d +IMAGE_NAME=localstack/localstack-azure localstack start -d localstack wait -t 60 # Route all Azure CLI calls to the LocalStack Azure emulator diff --git a/samples/web-app-postgresql-flexible-server/python/README.md b/samples/web-app-postgresql-flexible-server/python/README.md index e81d13a..eb33bb7 100644 --- a/samples/web-app-postgresql-flexible-server/python/README.md +++ b/samples/web-app-postgresql-flexible-server/python/README.md @@ -41,10 +41,10 @@ The deploy scripts follow the same pattern as the sibling [`web-app-sql-database Set up the Azure emulator using the LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN`. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/) to obtain yours. Pull and start the emulator: ```bash -docker pull localstack/localstack-azure-alpha +docker pull localstack/localstack-azure export LOCALSTACK_AUTH_TOKEN= -IMAGE_NAME=localstack/localstack-azure-alpha localstack start -d +IMAGE_NAME=localstack/localstack-azure localstack start -d localstack wait -t 60 # Route all Azure CLI calls to the LocalStack Azure emulator diff --git a/samples/web-app-sql-database/python/README.md b/samples/web-app-sql-database/python/README.md index 9b7dc65..4fb8cdf 100644 --- a/samples/web-app-sql-database/python/README.md +++ b/samples/web-app-sql-database/python/README.md @@ -52,10 +52,10 @@ Certificates: A self-signed certificate is created in Key Vault during deploymen ## Deployment -Set up the Azure emulator using the LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and set it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure-alpha). To pull the image, execute: +Set up the Azure emulator using the LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and set it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure). To pull the image, execute: ```bash -docker pull localstack/localstack-azure-alpha +docker pull localstack/localstack-azure ``` Start the LocalStack Azure emulator by running: @@ -65,7 +65,7 @@ Start the LocalStack Azure emulator by running: export LOCALSTACK_AUTH_TOKEN= # Start the LocalStack Azure emulator -IMAGE_NAME=localstack/localstack-azure-alpha localstack start -d +IMAGE_NAME=localstack/localstack-azure localstack start -d localstack wait -t 60 # Route all Azure CLI calls to the LocalStack Azure emulator diff --git a/samples/web-app-sql-database/python/bicep/README.md b/samples/web-app-sql-database/python/bicep/README.md index 4b6d031..9553822 100644 --- a/samples/web-app-sql-database/python/bicep/README.md +++ b/samples/web-app-sql-database/python/bicep/README.md @@ -40,10 +40,10 @@ The web app allows users to plan and manage vacation activities, storing all act ## Deployment -You can set up the Azure emulator by utilizing LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and specify it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure-alpha). To pull the Azure Docker image, execute the following command: +You can set up the Azure emulator by utilizing LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and specify it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure). To pull the Azure Docker image, execute the following command: ```bash -docker pull localstack/localstack-azure-alpha +docker pull localstack/localstack-azure ``` Start the LocalStack Azure emulator using the localstack CLI, execute the following command: @@ -53,7 +53,7 @@ Start the LocalStack Azure emulator using the localstack CLI, execute the follow export LOCALSTACK_AUTH_TOKEN= # Start the LocalStack Azure emulator -IMAGE_NAME=localstack/localstack-azure-alpha localstack start -d +IMAGE_NAME=localstack/localstack-azure localstack start -d localstack wait -t 60 # Route all Azure CLI calls to the LocalStack Azure emulator diff --git a/samples/web-app-sql-database/python/scripts/README.md b/samples/web-app-sql-database/python/scripts/README.md index 1c220ed..8f3c6cf 100644 --- a/samples/web-app-sql-database/python/scripts/README.md +++ b/samples/web-app-sql-database/python/scripts/README.md @@ -40,10 +40,10 @@ The system implements a Vacation Planner web application that stores and retriev ## Deployment -You can set up the Azure emulator by utilizing LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and specify it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure-alpha). To pull the Azure Docker image, execute the following command: +You can set up the Azure emulator by utilizing LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and specify it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure). To pull the Azure Docker image, execute the following command: ```bash -docker pull localstack/localstack-azure-alpha +docker pull localstack/localstack-azure ``` Start the LocalStack Azure emulator using the localstack CLI, execute the following command: @@ -53,7 +53,7 @@ Start the LocalStack Azure emulator using the localstack CLI, execute the follow export LOCALSTACK_AUTH_TOKEN= # Start the LocalStack Azure emulator -IMAGE_NAME=localstack/localstack-azure-alpha localstack start -d +IMAGE_NAME=localstack/localstack-azure localstack start -d localstack wait -t 60 # Route all Azure CLI calls to the LocalStack Azure emulator diff --git a/samples/web-app-sql-database/python/terraform/README.md b/samples/web-app-sql-database/python/terraform/README.md index dbf2a62..4f0f293 100644 --- a/samples/web-app-sql-database/python/terraform/README.md +++ b/samples/web-app-sql-database/python/terraform/README.md @@ -64,10 +64,10 @@ provider "azurerm" { ## Deployment -You can set up the Azure emulator by utilizing LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and specify it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure-alpha). To pull the Azure Docker image, execute the following command: +You can set up the Azure emulator by utilizing LocalStack for Azure Docker image. Before starting, ensure you have a valid `LOCALSTACK_AUTH_TOKEN` to access the Azure emulator. Refer to the [Auth Token guide](https://docs.localstack.cloud/getting-started/auth-token/?__hstc=108988063.8aad2b1a7229945859f4d9b9bb71e05d.1743148429561.1758793541854.1758810151462.32&__hssc=108988063.3.1758810151462&__hsfp=3945774529) to obtain your Auth Token and specify it in the `LOCALSTACK_AUTH_TOKEN` environment variable. The Azure Docker image is available on the [LocalStack Docker Hub](https://hub.docker.com/r/localstack/localstack-azure). To pull the Azure Docker image, execute the following command: ```bash -docker pull localstack/localstack-azure-alpha +docker pull localstack/localstack-azure ``` Start the LocalStack Azure emulator using the localstack CLI, execute the following command: @@ -77,7 +77,7 @@ Start the LocalStack Azure emulator using the localstack CLI, execute the follow export LOCALSTACK_AUTH_TOKEN= # Start the LocalStack Azure emulator -IMAGE_NAME=localstack/localstack-azure-alpha localstack start -d +IMAGE_NAME=localstack/localstack-azure localstack start -d localstack wait -t 60 # Route all Azure CLI calls to the LocalStack Azure emulator