Open
Conversation
Deploying localstack-docs with
|
| Latest commit: |
dc9657a
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://d4af12b7.localstack-docs.pages.dev |
| Branch Preview URL: | https://paolosalvatori-blob-storage.localstack-docs.pages.dev |
Contributor
Author
|
Hi @HarshCasper / @quetzalliwrites please review this PR, thanks. |
paolosalvatori
commented
Apr 9, 2026
|
|
||
| `azlocal stop-interception` | ||
|
|
||
| This reconfigures the `az` CLI to send commands to the official Azure management REST API. At this time, there is no full parity between `azlocal` and `az` commands after running `az start-interception`. Therefore, this technique is not fully interchangeable. |
Contributor
Author
There was a problem hiding this comment.
Suggested change
| This reconfigures the `az` CLI to send commands to the official Azure management REST API. At this time, there is no full parity between `azlocal` and `az` commands after running `az start-interception`. Therefore, this technique is not fully interchangeable. | |
| This reconfigures the `az` CLI to send commands to the official Azure management REST API |
| Create a resource group to contain your storage resources: | ||
|
|
||
| ```bash | ||
| azlocal group create \ |
Contributor
Author
There was a problem hiding this comment.
Suggested change
| azlocal group create \ | |
| az group create \ |
| Create a storage account in the resource group: | ||
|
|
||
| ```bash | ||
| azlocal storage account create \ |
Contributor
Author
There was a problem hiding this comment.
Suggested change
| azlocal storage account create \ | |
| az storage account create \ |
| ... | ||
| "placement": null, | ||
| "primaryEndpoints": { | ||
| "blob": "https://stblobdemolsblob.localhost.localstack.cloud:4566", |
Contributor
Author
There was a problem hiding this comment.
Suggested change
| "blob": "https://stblobdemolsblob.localhost.localstack.cloud:4566", | |
| "blob": "https://stblobdemols.blob.core.azure.localhost.localstack.cloud:456", |
Comment on lines
+83
to
+84
| "container": "https://stblobdemolscontainer.localhost.localstack.cloud:4566", | ||
| ... |
Contributor
Author
There was a problem hiding this comment.
Suggested change
| "container": "https://stblobdemolscontainer.localhost.localstack.cloud:4566", | |
| ... |
| ```bash | ||
| echo "Hello from LocalStack" > /tmp/hello.txt | ||
|
|
||
| azlocal storage blob upload \ |
Contributor
Author
There was a problem hiding this comment.
Suggested change
| azlocal storage blob upload \ | |
| az storage blob upload \ |
| List blobs in the container: | ||
|
|
||
| ```bash | ||
| azlocal storage blob list \ |
Contributor
Author
There was a problem hiding this comment.
Suggested change
| azlocal storage blob list \ | |
| az storage blob list \ |
| Download the blob to a local file: | ||
|
|
||
| ```bash | ||
| azlocal storage blob download \ |
Contributor
Author
There was a problem hiding this comment.
Suggested change
| azlocal storage blob download \ | |
| az storage blob download \ |
| Delete the blob: | ||
|
|
||
| ```bash | ||
| azlocal storage blob delete \ |
Contributor
Author
There was a problem hiding this comment.
Suggested change
| azlocal storage blob delete \ | |
| az storage blob delete \ |
|
|
||
| This guide is designed for users new to Blob Storage and assumes basic knowledge of the Azure CLI and our `azlocal` wrapper script. | ||
|
|
||
| Start your LocalStack container using your preferred method. For more information, see [Introduction to LocalStack for Azure](/azure/getting-started/). |
Contributor
Author
There was a problem hiding this comment.
Suggested change
| Start your LocalStack container using your preferred method. For more information, see [Introduction to LocalStack for Azure](/azure/getting-started/). | |
| Launch LocalStack using your preferred method. For more information, see [Introduction to LocalStack for Azure](/azure/getting-started/). Once the container is running, enable Azure CLI interception by running: | |
| ```bash | |
| azlocal start-interception | |
| ``` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes DOC-96