diff --git a/dictionary.txt b/dictionary.txt
index 2c220cea1..48fd4022c 100644
--- a/dictionary.txt
+++ b/dictionary.txt
@@ -254,6 +254,7 @@ deployable
VMs
CDN
subdirectories
+AzureTF
[0-9]+px
^.+[-:_]\w+$
[a-z]+([A-Z0-9]|[A-Z0-9]\w+)
diff --git a/docs/get-started/foundations/deployment/index.mdx b/docs/get-started/foundations/deployment/index.mdx
index d721d925b..95cfee58c 100644
--- a/docs/get-started/foundations/deployment/index.mdx
+++ b/docs/get-started/foundations/deployment/index.mdx
@@ -94,6 +94,7 @@ All of the IaC providers generate Terraform code for deployment. This allows you
- [AWSTF](/providers/terraform/aws)
- [GCPTF](/providers/terraform/gcp)
+- [AzureTF](/providers/terraform/azure)
An Azure Terraform provider is in development.
diff --git a/docs/providers/pulumi/azure.mdx b/docs/providers/pulumi/azure.mdx
index ad162c59c..a24367950 100644
--- a/docs/providers/pulumi/azure.mdx
+++ b/docs/providers/pulumi/azure.mdx
@@ -53,7 +53,7 @@ Installing the Azure CLI assists with credentials setup. You can install it usin
-Download & install the [latest CLI release](https://aka.ms/installazurecliwindows).
+Download & install the [Azure CLI](https://learn.microsoft.com/en-us/cli/azure/install-azure-cli).
diff --git a/docs/providers/terraform/azure.mdx b/docs/providers/terraform/azure.mdx
new file mode 100644
index 000000000..59bd1e7b8
--- /dev/null
+++ b/docs/providers/terraform/azure.mdx
@@ -0,0 +1,129 @@
+---
+description: 'Terraform - Microsoft Azure provider for Nitric'
+---
+
+# Terraform Azure Provider Overview
+
+_The officially supported Nitric Terraform Azure Provider._
+
+```yaml
+provider: nitric/azuretf@latest
+```
+
+
+ The Nitric Terraform Azure Provider is currently in preview, it's not
+ recommended for production deployments. We recommend using the [Pulumi Azure
+ Providers](/providers/pulumi/azure) for production deployments until the
+ Terraform provider is stable.
+
+
+## Prerequisites
+
+The **Terraform CLI** is required to deploy the resulting Terraform Stack that Nitric generates. You can find the installation instructions for Terraform in the [Terraform documentation](https://learn.hashicorp.com/tutorials/terraform/install-cli).
+
+The provider is built with the [Cloud Development Kit for Terraform (CDKTF)](https://developer.hashicorp.com/terraform/cdktf). Since CDKTF relies on Node.js, you'll need to have Node.js installed, you can read about the full CDKTF prerequisites in the [CDKTF documentation](https://developer.hashicorp.com/terraform/tutorials/cdktf/cdktf-install#prerequisites).
+
+## Enabling Nitric Terraform Providers
+
+The Nitric Terraform providers are currently in preview, to enable them you'll need to enable `beta-providers` in your Nitric project. You can do this by adding the following to your project's `nitric.yaml` file:
+
+```yaml title:nitric.yaml
+preview:
+ - beta-providers
+```
+
+## Azure Credentials
+
+The Terraform CLI typically uses standard Azure credential settings to authenticate with Azure. If you've set credentials for the Azure CLI or an Azure SDK previously, these settings should work without modification.
+
+If you're setting up your credentials for the first time, simply run azure login command and finish the login via your browser.
+
+```bash
+az login
+```
+
+Verify the Azure CLI install -
+
+```bash
+az -v
+```
+
+
+ See [Azure
+ documentation](https://docs.microsoft.com/en-us/cli/azure/authenticate-azure-cli)
+ for full details on credentials and configuration.
+
+
+### Azure CLI Installation
+
+Installing the Azure CLI assists with credentials setup. You can install it using these summarized instructions, for more options see the [Microsoft docs](https://docs.microsoft.com/en-us/cli/azure/install-azure-cli).
+
+
+
+
+
+Download & install the [Azure CLI](https://learn.microsoft.com/en-us/cli/azure/install-azure-cli).
+
+
+
+
+
+```bash
+curl -sL https://aka.ms/InstallAzureCLIDeb | sudo bash
+```
+
+
+
+
+
+```bash
+brew update && brew install azure-cli
+```
+
+
+
+
+
+## Locating deployed resources
+
+This Nitric Azure provider deploys resources for a stack into a resource group dedicated to that stack. You can either use one that you already have by configuring it in the stack configuration or let Nitric create one for you.
+
+Once a stack has been deployed to Azure it's resource group should be present in the [Resource groups](https://portal.azure.com/#blade/HubsExtension/BrowseResourceGroupBlade/resourceType/Microsoft.Resources%2Fsubscriptions%2FresourceGroups) page of the portal. Assuming it was deployed to a subscription you have access to.
+
+
+ Resource groups are conventionally named `--`
+
+In this example the project name is `api-testing` and the stack name is `az`.
+
+
+
+
+
+## Stack Configuration
+
+```yaml title:nitric.[stack ID].yaml
+# The provider to use and its published version
+# See releases:
+# https://github.com/nitrictech/nitric/tags
+provider: nitric/azuretf@latest
+
+# The target Azure region to deploy to
+# See available regions:
+# https://azure.microsoft.com/en-us/explore/global-infrastructure/products-by-region/?products=container-apps
+region: my-azure-stack-region
+
+# Org to associate deployed API Management services with
+org: example-org
+
+# Admin email to associate deployed API Management services with
+adminemail: test@example.com
+
+# Subscription ID to associate deployed services with
+subscription-id: example-subscription-id
+```
+
+
+ Missing something? Let us know by raising an issue in
+ [GitHub](https://github.com/nitrictech/nitric) or by dropping us a line on
+ [Discord](https://nitric.io/chat)
+
diff --git a/docs/providers/terraform/index.mdx b/docs/providers/terraform/index.mdx
index 42e6e5790..ffc22a0e2 100644
--- a/docs/providers/terraform/index.mdx
+++ b/docs/providers/terraform/index.mdx
@@ -4,7 +4,7 @@ description: 'How Nitric integrates with Terraform'
# Nitric Terraform Providers
-Nitric enables application portability and deployments through pluggable modules known as [providers](/get-started/foundations/deployment#providers). This allows applications to be deployed with many different Infrastructure Automation technologies, including [Terraform](https://www.terraform.io/). Nitric has pre-built providers that use Terraform to deploy to [AWS](/providers/terraform/aws) and [Google Cloud](/providers/terraform/gcp), with Azure support planned.
+Nitric enables application portability and deployments through pluggable modules known as [providers](/get-started/foundations/deployment#providers). This allows applications to be deployed with many different Infrastructure Automation technologies, including [Terraform](https://www.terraform.io/). Nitric has pre-built providers that use Terraform to deploy to [AWS](/providers/terraform/aws), [Google Cloud](/providers/terraform/gcp) and [Microsoft Azure](/providers/terraform/azure).
All pre-built Terraform providers are [IaC generating
@@ -37,7 +37,7 @@ preview:
- [AWS](/providers/terraform/aws)
- [Google Cloud](/providers/terraform/gcp)
-- Azure (Coming Soon)
+- [Microsoft Azure](/providers/terraform/azure)
## How Nitric integrates with Terraform
diff --git a/src/config/index.ts b/src/config/index.ts
index 578e721dd..b28c59d3a 100644
--- a/src/config/index.ts
+++ b/src/config/index.ts
@@ -267,6 +267,10 @@ export const navigation: NavEntry[] = [
title: 'Google Cloud',
href: '/providers/terraform/gcp',
},
+ {
+ title: 'Azure',
+ href: '/providers/terraform/azure',
+ },
],
},
{