You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/content/docs/azure/services/storage-accounts.mdx
+26-22Lines changed: 26 additions & 22 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,33 +16,33 @@ LocalStack for Azure provides a local environment for building and testing appli
16
16
-[Queue Storage](/azure/services/queue-storage)
17
17
-[Table Storage](/azure/services/table-storage)
18
18
19
-
The supported APIs are listed in the[API Coverage](#api-coverage) section.
19
+
The supported APIs are available on our[API Coverage section](#api-coverage), which provides information on the extent of Storage Account's integration with LocalStack.
20
20
21
21
## Getting started
22
22
23
-
This guide is designed for users new to Azure Storage Accounts and Blob Storage and assumes basic knowledge of the Azure CLI and our `azlocal` wrapper script.
23
+
This guide is designed for users new to Azure Storage Accounts and assumes basic knowledge of the Azure CLI and our `azlocal` wrapper script.
24
24
25
-
Start your LocalStack container using your preferred method. For more information, see [Introduction to LocalStack for Azure](/azure/getting-started/).
25
+
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:
26
26
27
-
:::note
28
-
As an alternative to using the `azlocal` CLI, users can run:
29
-
30
-
`azlocal start-interception`
27
+
```bash
28
+
azlocal start-interception
29
+
```
31
30
32
-
This command points the `az` CLI away from the public Azure management REST API and toward the LocalStack for Azure emulator REST API.
31
+
This command points the `az` CLI away from the public Azure management REST API and toward the LocalStack for Azure emulator API.
33
32
To revert this configuration, run:
34
33
35
-
`azlocal stop-interception`
34
+
```bash
35
+
azlocal stop-interception
36
+
```
36
37
37
-
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.
38
-
:::
38
+
This reconfigures the `az` CLI to send commands to the official Azure management REST API.
39
39
40
40
### Create a resource group
41
41
42
42
Create a resource group for your storage account resources:
43
43
44
44
```bash
45
-
azlocal group create \
45
+
az group create \
46
46
--name rg-storage-demo \
47
47
--location westeurope
48
48
```
@@ -66,7 +66,7 @@ azlocal group create \
66
66
Create a storage account with the `StorageV2` kind and `Standard_LRS` SKU:
-**Storage account management**: Create, update, delete, and list storage accounts. Supports `StorageV2`, `BlobStorage`, and `Storage` account kinds with configurable SKU, access tier, and TLS version.
197
200
-**Account key management**: List and regenerate storage account keys (`key1`/`key2`).
198
201
-**Connection string generation**: Retrieve ready-to-use connection strings containing all service endpoints (Blob, Queue, Table, File).
199
202
200
203
## Limitations
204
+
201
205
-**Header validation**: Unsupported request headers or parameters are silently accepted instead of being rejected.
202
206
-**API version enforcement**: The emulator does not validate the `x-ms-version` header; all API versions are accepted.
0 commit comments