Skip to main content

Azure CDK constructs using AZAPI provider for direct Azure REST API access. Version 1.0.0 - Major breaking change migration from AzureRM to AZAPI.

Project description

Azure Terraform CDK Constructs

Welcome to the Azure Terraform CDK Constructs project! This library offers Azure L2 Constructs using the AZAPI provider for direct Azure REST API access, providing immediate access to new Azure features and API versions.

🚀 Version 1.0.0 - AZAPI Provider Migration

Breaking Change Notice: Version 1.0.0 represents a major architectural shift from AzureRM provider to AZAPI provider. This migration provides:

  • Direct Azure REST API Access: No dependency on AzureRM provider
  • Immediate Feature Access: Get new Azure features as soon as they're available in Azure APIs
  • Version-Specific Implementations: Multiple API versions supported for each service
  • Enhanced Type Safety: Improved IDE support and compile-time validation
  • Included Provider Bindings: AZAPI provider classes are included - no need to generate bindings

Benefits of Using AZAPI L2 Constructs

With AZAPI L2 Constructs, you get the following benefits:

  • Direct API Access: Bypass provider limitations and access Azure REST APIs directly
  • Version Flexibility: Choose specific API versions for your resources
  • Rapid Feature Adoption: Access new Azure features immediately without waiting for provider updates
  • Enhanced Abstraction: Higher-level abstractions over Azure resources with type safety
  • Built-in Monitoring: One-line setup for comprehensive monitoring with customizable alerts and diagnostic settings
  • Schema Validation: Automatic validation of properties against Azure API schemas
  • Reusability: Encapsulate common patterns and best practices in your infrastructure code
  • Testing Utilities: Helper functions for integration tests including naming conventions, metadata, and resource cleanup
  • Direct IDE Integration: Access detailed documentation directly within your IDE
  • Zero Provider Setup: AZAPI provider bindings included in the package

Currently Supported Services

Compute

Service API Versions Monitoring Support Status
Virtual Machines 2024-07-01, 2024-11-01, 2025-04-01 ✅ Built-in ✅ Available
AKS Clusters 2025-05-01, 2025-07-01, 2025-08-01 ✅ Built-in ✅ Available
Virtual Machine Scale Sets 2025-01-02, 2025-02-01, 2025-04-01 ✅ Built-in ✅ Available

Networking

Service API Versions Status
Virtual Networks 2024-07-01, 2024-10-01, 2025-01-01 ✅ Available
Subnets 2024-07-01, 2024-10-01, 2025-01-01 ✅ Available
Network Interfaces 2024-07-01, 2024-10-01, 2025-01-01 ✅ Available
Network Security Groups 2024-07-01, 2024-10-01, 2025-01-01 ✅ Available
Public IP Addresses 2024-07-01, 2024-10-01, 2025-01-01 ✅ Available

Monitoring & Alerting

Service API Versions Status
Action Groups 2021-09-01 ✅ Available
Metric Alerts 2018-03-01 ✅ Available
Activity Log Alerts 2020-10-01 ✅ Available
Diagnostic Settings 2016-09-01, 2021-05-01-preview ✅ Available

Foundation

Service API Versions Status
Resource Groups 2024-11-01, 2025-01-01, 2025-03-01 ✅ Available
Storage Accounts 2023-01-01, 2023-05-01, 2024-01-01 ✅ Available

Quick Example

Create Azure resources using AZAPI provider:

import * as azcdk from "@microsoft/terraform-cdk-constructs";
import { Construct } from 'constructs';
import { App, TerraformStack } from 'cdktf';

class AzureAppInfra extends TerraformStack {
  constructor(scope: Construct, name: string) {
    super(scope, name);

    // Create a new Azure Resource Group using AZAPI
    const rg = new azcdk.azure_resourcegroup.ResourceGroup(this, "resourcegroup", {
      name: "rg-myapp-prod",
      location: "eastus",
      tags: {
        environment: "production",
        project: "myapp"
      }
    });

    // Create a Storage Account
    new azcdk.azure_storageaccount.StorageAccount(this, "storage", {
      name: "mystorageaccount",
      location: "eastus",
      resourceGroupId: rg.id,
      sku: { name: "Standard_LRS" }
    });
  }
}

const app = new App();
new AzureAppInfra(app, 'cdk');
app.synth();

Getting Started

Prerequisites

  • Node.js and npm installed (for TypeScript/JavaScript)
  • Azure CLI configured with appropriate permissions

Installation

Install the CDK for Terraform CLI globally:

npm install -g cdktf-cli

Initialize a new CDK for Terraform project:

cdktf init --template="TypeScript" --local

Install the Microsoft Terraform CDK constructs (includes AZAPI provider bindings):

npm install @microsoft/terraform-cdk-constructs

That's it! The AZAPI provider classes are included in the package, so you don't need to configure additional providers or generate bindings.

Built-in Monitoring & Alerting

Azure L2 Constructs include comprehensive monitoring capabilities that can be enabled with a single method call. The monitoring framework automatically creates metric alerts, diagnostic settings, and activity log alerts for supported resources.

Quick Example

import { VirtualMachine } from "@microsoft/terraform-cdk-constructs/azure-virtualmachine";
import { ActionGroup } from "@microsoft/terraform-cdk-constructs/azure-actiongroup";

// Enable monitoring with one line
const vm = new VirtualMachine(this, "vm", {
  name: "my-vm",
  // ... VM configuration ...
  monitoring: VirtualMachine.defaultMonitoring(actionGroup.id, workspaceId),
});

Supported Resources

Resource Monitoring Documentation
Virtual Machines VM Monitoring Guide
AKS Clusters AKS Monitoring Guide
Virtual Machine Scale Sets VMSS Monitoring Guide
Storage Accounts Storage Monitoring Guide

See the Monitoring Guide for comprehensive documentation on monitoring capabilities, customization options, and best practices.

Networking Constructs

Build complete Azure networking infrastructure with type-safe constructs that provide automatic validation and version management.

Available Components

Component Documentation
Virtual Networks Define address spaces and network isolation with custom DNS and DDoS protection
Subnets Segment networks with service endpoints, delegations, and NSG association
Network Interfaces Attach to VMs with static/dynamic IPs and accelerated networking
Network Security Groups Control traffic with inbound/outbound security rules
Public IP Addresses Expose resources with static/dynamic allocation

See individual service documentation for detailed configuration examples and best practices.

Version-Specific Usage

You can use specific API versions for fine-grained control:

// Use latest version (recommended) - automatically resolves to newest API version
import { ResourceGroup } from "@microsoft/terraform-cdk-constructs/azure-resourcegroup";
import { StorageAccount } from "@microsoft/terraform-cdk-constructs/azure-storageaccount";

// Or specify explicit API version for version pinning
const rg = new ResourceGroup(this, "rg", {
  name: "my-resource-group",
  location: "eastus",
  apiVersion: "2025-03-01"  // Pin to specific version
});

const storage = new StorageAccount(this, "storage", {
  name: "mystorageaccount",
  location: "eastus",
  resourceGroupId: rg.id,
  sku: { name: "Standard_LRS" },
  apiVersion: "2024-01-01"  // Pin to specific version
});

Migration from v0.x

If you're migrating from version 0.x (AzureRM-based), please see our Versioning and Migrations User Guide for detailed instructions.

Deployment

Generate Terraform configuration:

cdktf synth

Deploy your infrastructure:

cdktf deploy

Supported Languages

Thanks to JSII, this library is available in multiple programming languages:

Language Package Status
TypeScript/JavaScript @microsoft/terraform-cdk-constructs ✅ Available
Python microsoft-cdktfconstructs ✅ Available
Java com.microsoft.terraformcdkconstructs ✅ Available
C#/.NET Microsoft.Cdktf.Azure.TFConstructs ✅ Available

Contributing

This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.

When you submit a pull request, a CLA bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.

We welcome contributions to this project! See our documentation on how to get started contributing.

Documentation

Code Spaces

Open in GitHub Codespaces

Trademarks

This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft trademarks or logos is subject to and must follow Microsoft's Trademark & Brand Guidelines. Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship. Any use of third-party trademarks or logos are subject to those third-party's policies.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

microsoft_cdktfconstructs-1.9.0.tar.gz (3.9 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

microsoft_cdktfconstructs-1.9.0-py3-none-any.whl (3.9 MB view details)

Uploaded Python 3

File details

Details for the file microsoft_cdktfconstructs-1.9.0.tar.gz.

File metadata

File hashes

Hashes for microsoft_cdktfconstructs-1.9.0.tar.gz
Algorithm Hash digest
SHA256 386049242716316b8b0dbd3bffab5446b174d37422000a409a449e91f0215fcd
MD5 89d3e648fb5f6af4630d914dc5c2d4b9
BLAKE2b-256 6e4a310aee2f09b820753bd6a6f06665d3ddad88dcdc35d92bcf2664700a6297

See more details on using hashes here.

File details

Details for the file microsoft_cdktfconstructs-1.9.0-py3-none-any.whl.

File metadata

File hashes

Hashes for microsoft_cdktfconstructs-1.9.0-py3-none-any.whl
Algorithm Hash digest
SHA256 48f3744753c54e05540418c7750ff056197f1a0063f901ae18de6749859eeec4
MD5 4deca12bc1837e742279508a45795e45
BLAKE2b-256 9a61626460b06c06501a349681c38efa9aa654cbdf9c59fdaa38740525a2824f

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page