Azure Pulumi utilities for provisioning and managing Azure infrastructure using Pulumi with the Azure Native provider (@pulumi/azure-native).
This package provides high-level constructs and service managers for Azure:
pnpm add @gradientedge/cdk-utils-azure
import { CommonAzureConstruct } from '@gradientedge/cdk-utils-azure'
class MyAzureStack extends CommonAzureConstruct {
constructor(name: string, args: any, opts?: pulumi.ComponentResourceOptions) {
super(name, args, opts)
this.initResources()
}
}