diff --git a/docs/azure/explore/argocd.mdx b/docs/azure/explore/argocd.mdx
new file mode 100644
index 00000000..5ccdee5a
--- /dev/null
+++ b/docs/azure/explore/argocd.mdx
@@ -0,0 +1,10 @@
+---
+title: Argo CD
+sidebar_position: 1
+---
+
+# Azure - Argo CD
+
+import ExploreArgocd from "../../common/argocd.mdx";
+
+
diff --git a/docs/azure/explore/gitops.mdx b/docs/azure/explore/gitops.mdx
new file mode 100644
index 00000000..cb00766d
--- /dev/null
+++ b/docs/azure/explore/gitops.mdx
@@ -0,0 +1,10 @@
+---
+title: GitOps
+sidebar_position: 2
+---
+
+import ExploreGitOps from "../../common/gitops.mdx";
+
+# Azure - GitOps
+
+
diff --git a/docs/azure/explore/metaphor.mdx b/docs/azure/explore/metaphor.mdx
new file mode 100644
index 00000000..9b97352e
--- /dev/null
+++ b/docs/azure/explore/metaphor.mdx
@@ -0,0 +1,10 @@
+---
+title: Metaphor
+sidebar_position: 3
+---
+
+import ExploreMetaphor from "../../common/metaphor.mdx";
+
+# Azure - Metaphor
+
+
diff --git a/docs/azure/explore/telemetry.mdx b/docs/azure/explore/telemetry.mdx
new file mode 100644
index 00000000..3b3a7cf0
--- /dev/null
+++ b/docs/azure/explore/telemetry.mdx
@@ -0,0 +1,10 @@
+---
+title: Telemetry
+sidebar_position: 7
+---
+
+import ExploreTelemetry from "../../common/telemetry.mdx";
+
+# Azure - Telemetry
+
+
diff --git a/docs/azure/explore/terraform.mdx b/docs/azure/explore/terraform.mdx
new file mode 100644
index 00000000..864bb441
--- /dev/null
+++ b/docs/azure/explore/terraform.mdx
@@ -0,0 +1,10 @@
+---
+title: Terraform & Atlantis
+sidebar_position: 4
+---
+
+import ExploreTerraform from "../../common/terraform.mdx";
+
+# Azure - Terraform & Atlantis
+
+
diff --git a/docs/azure/explore/user-creation.mdx b/docs/azure/explore/user-creation.mdx
new file mode 100644
index 00000000..bc02115f
--- /dev/null
+++ b/docs/azure/explore/user-creation.mdx
@@ -0,0 +1,10 @@
+---
+title: Users Management
+sidebar_position: 5
+---
+
+import UserCreation from "../../common/users.mdx";
+
+# Azure - Users Management
+
+
diff --git a/docs/azure/explore/vault.mdx b/docs/azure/explore/vault.mdx
new file mode 100644
index 00000000..4522c942
--- /dev/null
+++ b/docs/azure/explore/vault.mdx
@@ -0,0 +1,10 @@
+---
+title: Vault
+sidebar_position: 6
+---
+
+import ExploreVault from "../../common/vault.mdx";
+
+# Azure - Vault
+
+
diff --git a/docs/common/telemetry.mdx b/docs/common/telemetry.mdx
index e0684229..bb098cca 100644
--- a/docs/common/telemetry.mdx
+++ b/docs/common/telemetry.mdx
@@ -3,7 +3,7 @@ kubefirst collects data in order to optimize future releases. By collecting metr
## What Metrics are collected?
- `cli_version`: The version of CLI being used (e.g. `2.0.0`)
-- `cloud_provider` The cloud environment (`k3d`|`aws`|`civo`)
+- `cloud_provider` The cloud environment (`k3d`|`aws`|`civo`|`azure`)
- `cluster_id`: The ID of the cluster being created (e.g. `123ABC`)
- `cluster_type`: The type of cluster being created (`mgmt`)
- `domain`: The domain of the cluster being created (e.g. `kubefirst.io`)
diff --git a/docs/common/terraform.mdx b/docs/common/terraform.mdx
index 9f7ec906..f2a0786a 100644
--- a/docs/common/terraform.mdx
+++ b/docs/common/terraform.mdx
@@ -26,11 +26,12 @@ If the apply is successful, your code will automatically be merged with main, yo
The following table shows how state is stored based on your installation selection:
-| State Backed | AWS | Local | Civo |
-|-------------------|-----|-------|------|
-| AWS S3 Bucket | X | | |
-| Civo object store | | | X |
-| MinIO (locally) | | X | |
+| State Backed | AWS | Local | Civo | Azure |
+|----------------------------|:---:|:-----:|:----:|:-----:|
+| AWS S3 Bucket | X | | | |
+| Civo object store | | | X | |
+| Azure container storage | | | | X |
+| MinIO (locally) | | X | | |
## Tips
diff --git a/sidebars.js b/sidebars.js
index a3656d7a..e00360dc 100644
--- a/sidebars.js
+++ b/sidebars.js
@@ -87,7 +87,13 @@ const sidebars = {
},
'azure/quick-start/repositories',
'civo/quick-start/cluster-management',
- ]
+ ],
+ Explore: [
+ {
+ type: 'autogenerated',
+ dirName: 'azure/explore',
+ },
+ ],
},
'azure/gitops-catalog',
'azure/deprovision',