+
+
+ table.getColumn('operation')?.setFilterValue(e.target.value)
+ }
+ className="border rounded px-2 py-1 w-full max-w-xs"
+ style={{
+ color: '#707385',
+ fontFamily: 'AeonikFono',
+ fontSize: '14px',
+ fontStyle: 'normal',
+ fontWeight: '500',
+ lineHeight: '24px',
+ letterSpacing: '-0.2px',
+ }}
+ />
+
+
+
+
+
+ {table.getHeaderGroups().map((headerGroup) => (
+
+ {headerGroup.headers.map((header) => {
+ const canSort = header.column.getCanSort();
+
+ const getColumnWidth = (columnId: string) => {
+ switch (columnId) {
+ case 'operation':
+ return '85%';
+ case 'implemented':
+ return '15%';
+ default:
+ return '15%';
+ }
+ };
+
+ return (
+
+ {flexRender(
+ header.column.columnDef.header,
+ header.getContext()
+ )}
+ {canSort && (
+
+ {header.column.getIsSorted() === 'asc'
+ ? ' ▲'
+ : header.column.getIsSorted() === 'desc'
+ ? ' ▼'
+ : ''}
+
+ )}
+
+ );
+ })}
+
+ ))}
+
+
+ {table.getRowModel().rows.map((row) => (
+
+ {row.getVisibleCells().map((cell) => (
+
+ {flexRender(cell.column.columnDef.cell, cell.getContext())}
+
+ ))}
+
+ ))}
+
+
+
+
+
+ Page {table.getState().pagination.pageIndex + 1} of{' '}
+ {table.getPageCount()}
+
+
+
+
+
+
+ );
+}
diff --git a/src/config/docsearch.ts b/src/config/docsearch.ts
index f93ee99e..2ca1ceb0 100644
--- a/src/config/docsearch.ts
+++ b/src/config/docsearch.ts
@@ -20,6 +20,8 @@ export default {
boostFilter = "hierarchy.lvl0:LocalStack for AWS";
} else if (pathname.startsWith('/snowflake/')) {
boostFilter = "hierarchy.lvl0:LocalStack for Snowflake";
+ } else if (pathname.startsWith('/azure/')) {
+ boostFilter = "hierarchy.lvl0:LocalStack for Azure";
}
if (!boostFilter) {
diff --git a/src/content/docs/azure/changelog.mdx b/src/content/docs/azure/changelog.mdx
new file mode 100644
index 00000000..ad11745a
--- /dev/null
+++ b/src/content/docs/azure/changelog.mdx
@@ -0,0 +1,21 @@
+---
+title: Changelog
+description: Changelog for LocalStack for Azure.
+template: doc
+---
+
+This changelog tracks updates to LocalStack for Azure support, including new services, enhancements, and compatibility fixes.
+
+LocalStack for Azure 0.1.0 supports the following services:
+
+- [Azure API Management](https://azure.microsoft.com/en-us/products/api-management/)
+- [Azure App Service](https://azure.microsoft.com/en-us/products/app-service/)
+- [Azure RBAC](https://learn.microsoft.com/en-us/azure/role-based-access-control/)
+- [Azure Container Registry](https://azure.microsoft.com/en-us/products/container-registry/)
+- [Azure Kubernetes Service](https://azure.microsoft.com/en-us/products/kubernetes-service/)
+- [Azure Database for PostgreSQL](https://azure.microsoft.com/en-us/products/postgresql/)
+- [Azure Key Vault](https://azure.microsoft.com/en-us/products/key-vault/)
+- [Azure Resource Manager](https://azure.microsoft.com/en-us/get-started/azure-portal/resource-manager/)
+- [Azure Blob Storage](https://azure.microsoft.com/en-us/products/storage/blobs/)
+- [Azure Storage](https://azure.microsoft.com/en-us/products/category/storage/)
+- [Azure SQL](https://azure.microsoft.com/en-us/products/azure-sql/database/)
\ No newline at end of file
diff --git a/src/content/docs/azure/getting-started/index.mdx b/src/content/docs/azure/getting-started/index.mdx
new file mode 100644
index 00000000..dd8f179c
--- /dev/null
+++ b/src/content/docs/azure/getting-started/index.mdx
@@ -0,0 +1,80 @@
+---
+title: Installation
+description: Installation guide to get started with LocalStack for Azure.
+template: doc
+sidebar:
+ order: 0
+---
+
+
+## Introduction
+
+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](/aws/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:
+
+```
+$ docker pull localstack/localstack-azure-alpha
+```
+
+You can start the Azure emulator using the following methods:
+
+1. [`localstack` CLI](/aws/getting-started/installation/#localstack-cli)
+2. [`docker` CLI](https://docs.docker.com/get-docker/)
+3. [Docker Compose](https://docs.docker.com/compose/install/)
+
+### `localstack` CLI
+
+To start the Azure emulator using the `localstack` CLI, execute the following command:
+
+```
+$ export LOCALSTACK_AUTH_TOKEN=