We recommend using Azure Native.
published on Monday, Mar 9, 2026 by Pulumi
We recommend using Azure Native.
published on Monday, Mar 9, 2026 by Pulumi
Manages a Cost Management Export for a Subscription.
Example Usage
using Pulumi;
using Azure = Pulumi.Azure;
class MyStack : Stack
{
public MyStack()
{
var exampleSubscription = Output.Create(Azure.Core.GetSubscription.InvokeAsync());
var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new Azure.Core.ResourceGroupArgs
{
Location = "West Europe",
});
var exampleAccount = new Azure.Storage.Account("exampleAccount", new Azure.Storage.AccountArgs
{
ResourceGroupName = exampleResourceGroup.Name,
Location = exampleResourceGroup.Location,
AccountTier = "Standard",
AccountReplicationType = "LRS",
});
var exampleContainer = new Azure.Storage.Container("exampleContainer", new Azure.Storage.ContainerArgs
{
StorageAccountName = azurerm_storage_account.Test.Name,
});
var exampleSubscriptionCostManagementExport = new Azure.Core.SubscriptionCostManagementExport("exampleSubscriptionCostManagementExport", new Azure.Core.SubscriptionCostManagementExportArgs
{
SubscriptionId = azurerm_subscription.Example.Id,
RecurrenceType = "Monthly",
RecurrencePeriodStartDate = "2020-08-18T00:00:00Z",
RecurrencePeriodEndDate = "2020-09-18T00:00:00Z",
ExportDataStorageLocation = new Azure.Core.Inputs.SubscriptionCostManagementExportExportDataStorageLocationArgs
{
ContainerId = exampleContainer.ResourceManagerId,
RootFolderPath = "/root/updated",
},
ExportDataOptions = new Azure.Core.Inputs.SubscriptionCostManagementExportExportDataOptionsArgs
{
Type = "Usage",
TimeFrame = "WeekToDate",
},
});
}
}
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/core"
"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/storage"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := core.LookupSubscription(ctx, nil, nil)
if err != nil {
return err
}
exampleResourceGroup, err := core.NewResourceGroup(ctx, "exampleResourceGroup", &core.ResourceGroupArgs{
Location: pulumi.String("West Europe"),
})
if err != nil {
return err
}
_, err = storage.NewAccount(ctx, "exampleAccount", &storage.AccountArgs{
ResourceGroupName: exampleResourceGroup.Name,
Location: exampleResourceGroup.Location,
AccountTier: pulumi.String("Standard"),
AccountReplicationType: pulumi.String("LRS"),
})
if err != nil {
return err
}
exampleContainer, err := storage.NewContainer(ctx, "exampleContainer", &storage.ContainerArgs{
StorageAccountName: pulumi.Any(azurerm_storage_account.Test.Name),
})
if err != nil {
return err
}
_, err = core.NewSubscriptionCostManagementExport(ctx, "exampleSubscriptionCostManagementExport", &core.SubscriptionCostManagementExportArgs{
SubscriptionId: pulumi.Any(azurerm_subscription.Example.Id),
RecurrenceType: pulumi.String("Monthly"),
RecurrencePeriodStartDate: pulumi.String("2020-08-18T00:00:00Z"),
RecurrencePeriodEndDate: pulumi.String("2020-09-18T00:00:00Z"),
ExportDataStorageLocation: &core.SubscriptionCostManagementExportExportDataStorageLocationArgs{
ContainerId: exampleContainer.ResourceManagerId,
RootFolderPath: pulumi.String("/root/updated"),
},
ExportDataOptions: &core.SubscriptionCostManagementExportExportDataOptionsArgs{
Type: pulumi.String("Usage"),
TimeFrame: pulumi.String("WeekToDate"),
},
})
if err != nil {
return err
}
return nil
})
}
Example coming soon!
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const exampleSubscription = azure.core.getSubscription({});
const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
const exampleAccount = new azure.storage.Account("exampleAccount", {
resourceGroupName: exampleResourceGroup.name,
location: exampleResourceGroup.location,
accountTier: "Standard",
accountReplicationType: "LRS",
});
const exampleContainer = new azure.storage.Container("exampleContainer", {storageAccountName: azurerm_storage_account.test.name});
const exampleSubscriptionCostManagementExport = new azure.core.SubscriptionCostManagementExport("exampleSubscriptionCostManagementExport", {
subscriptionId: azurerm_subscription.example.id,
recurrenceType: "Monthly",
recurrencePeriodStartDate: "2020-08-18T00:00:00Z",
recurrencePeriodEndDate: "2020-09-18T00:00:00Z",
exportDataStorageLocation: {
containerId: exampleContainer.resourceManagerId,
rootFolderPath: "/root/updated",
},
exportDataOptions: {
type: "Usage",
timeFrame: "WeekToDate",
},
});
import pulumi
import pulumi_azure as azure
example_subscription = azure.core.get_subscription()
example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="West Europe")
example_account = azure.storage.Account("exampleAccount",
resource_group_name=example_resource_group.name,
location=example_resource_group.location,
account_tier="Standard",
account_replication_type="LRS")
example_container = azure.storage.Container("exampleContainer", storage_account_name=azurerm_storage_account["test"]["name"])
example_subscription_cost_management_export = azure.core.SubscriptionCostManagementExport("exampleSubscriptionCostManagementExport",
subscription_id=azurerm_subscription["example"]["id"],
recurrence_type="Monthly",
recurrence_period_start_date="2020-08-18T00:00:00Z",
recurrence_period_end_date="2020-09-18T00:00:00Z",
export_data_storage_location=azure.core.SubscriptionCostManagementExportExportDataStorageLocationArgs(
container_id=example_container.resource_manager_id,
root_folder_path="/root/updated",
),
export_data_options=azure.core.SubscriptionCostManagementExportExportDataOptionsArgs(
type="Usage",
time_frame="WeekToDate",
))
Example coming soon!
Create SubscriptionCostManagementExport Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SubscriptionCostManagementExport(name: string, args: SubscriptionCostManagementExportArgs, opts?: CustomResourceOptions);@overload
def SubscriptionCostManagementExport(resource_name: str,
args: SubscriptionCostManagementExportArgs,
opts: Optional[ResourceOptions] = None)
@overload
def SubscriptionCostManagementExport(resource_name: str,
opts: Optional[ResourceOptions] = None,
export_data_options: Optional[SubscriptionCostManagementExportExportDataOptionsArgs] = None,
export_data_storage_location: Optional[SubscriptionCostManagementExportExportDataStorageLocationArgs] = None,
recurrence_period_end_date: Optional[str] = None,
recurrence_period_start_date: Optional[str] = None,
recurrence_type: Optional[str] = None,
subscription_id: Optional[str] = None,
active: Optional[bool] = None,
name: Optional[str] = None)func NewSubscriptionCostManagementExport(ctx *Context, name string, args SubscriptionCostManagementExportArgs, opts ...ResourceOption) (*SubscriptionCostManagementExport, error)public SubscriptionCostManagementExport(string name, SubscriptionCostManagementExportArgs args, CustomResourceOptions? opts = null)
public SubscriptionCostManagementExport(String name, SubscriptionCostManagementExportArgs args)
public SubscriptionCostManagementExport(String name, SubscriptionCostManagementExportArgs args, CustomResourceOptions options)
type: azure:core:SubscriptionCostManagementExport
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args SubscriptionCostManagementExportArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args SubscriptionCostManagementExportArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args SubscriptionCostManagementExportArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SubscriptionCostManagementExportArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SubscriptionCostManagementExportArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var subscriptionCostManagementExportResource = new Azure.Core.SubscriptionCostManagementExport("subscriptionCostManagementExportResource", new()
{
ExportDataOptions = new Azure.Core.Inputs.SubscriptionCostManagementExportExportDataOptionsArgs
{
TimeFrame = "string",
Type = "string",
},
ExportDataStorageLocation = new Azure.Core.Inputs.SubscriptionCostManagementExportExportDataStorageLocationArgs
{
ContainerId = "string",
RootFolderPath = "string",
},
RecurrencePeriodEndDate = "string",
RecurrencePeriodStartDate = "string",
RecurrenceType = "string",
SubscriptionId = "string",
Active = false,
Name = "string",
});
example, err := core.NewSubscriptionCostManagementExport(ctx, "subscriptionCostManagementExportResource", &core.SubscriptionCostManagementExportArgs{
ExportDataOptions: &core.SubscriptionCostManagementExportExportDataOptionsArgs{
TimeFrame: pulumi.String("string"),
Type: pulumi.String("string"),
},
ExportDataStorageLocation: &core.SubscriptionCostManagementExportExportDataStorageLocationArgs{
ContainerId: pulumi.String("string"),
RootFolderPath: pulumi.String("string"),
},
RecurrencePeriodEndDate: pulumi.String("string"),
RecurrencePeriodStartDate: pulumi.String("string"),
RecurrenceType: pulumi.String("string"),
SubscriptionId: pulumi.String("string"),
Active: pulumi.Bool(false),
Name: pulumi.String("string"),
})
var subscriptionCostManagementExportResource = new SubscriptionCostManagementExport("subscriptionCostManagementExportResource", SubscriptionCostManagementExportArgs.builder()
.exportDataOptions(SubscriptionCostManagementExportExportDataOptionsArgs.builder()
.timeFrame("string")
.type("string")
.build())
.exportDataStorageLocation(SubscriptionCostManagementExportExportDataStorageLocationArgs.builder()
.containerId("string")
.rootFolderPath("string")
.build())
.recurrencePeriodEndDate("string")
.recurrencePeriodStartDate("string")
.recurrenceType("string")
.subscriptionId("string")
.active(false)
.name("string")
.build());
subscription_cost_management_export_resource = azure.core.SubscriptionCostManagementExport("subscriptionCostManagementExportResource",
export_data_options={
"time_frame": "string",
"type": "string",
},
export_data_storage_location={
"container_id": "string",
"root_folder_path": "string",
},
recurrence_period_end_date="string",
recurrence_period_start_date="string",
recurrence_type="string",
subscription_id="string",
active=False,
name="string")
const subscriptionCostManagementExportResource = new azure.core.SubscriptionCostManagementExport("subscriptionCostManagementExportResource", {
exportDataOptions: {
timeFrame: "string",
type: "string",
},
exportDataStorageLocation: {
containerId: "string",
rootFolderPath: "string",
},
recurrencePeriodEndDate: "string",
recurrencePeriodStartDate: "string",
recurrenceType: "string",
subscriptionId: "string",
active: false,
name: "string",
});
type: azure:core:SubscriptionCostManagementExport
properties:
active: false
exportDataOptions:
timeFrame: string
type: string
exportDataStorageLocation:
containerId: string
rootFolderPath: string
name: string
recurrencePeriodEndDate: string
recurrencePeriodStartDate: string
recurrenceType: string
subscriptionId: string
SubscriptionCostManagementExport Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The SubscriptionCostManagementExport resource accepts the following input properties:
- Export
Data SubscriptionOptions Cost Management Export Export Data Options - A
export_data_optionsblock as defined below. - Export
Data SubscriptionStorage Location Cost Management Export Export Data Storage Location - A
export_data_storage_locationblock as defined below. - Recurrence
Period stringEnd Date - Recurrence
Period stringStart Date - The date the export will start capturing information.
- Recurrence
Type string - How often the requested information will be exported. Valid values include
Annually,Daily,Monthly,Weekly. - Subscription
Id string - The id of the subscription on which to create an export.
- Active bool
- Is the cost management export active? Default is
true. - Name string
- Specifies the name of the Cost Management Export. Changing this forces a new resource to be created.
- Export
Data SubscriptionOptions Cost Management Export Export Data Options Args - A
export_data_optionsblock as defined below. - Export
Data SubscriptionStorage Location Cost Management Export Export Data Storage Location Args - A
export_data_storage_locationblock as defined below. - Recurrence
Period stringEnd Date - Recurrence
Period stringStart Date - The date the export will start capturing information.
- Recurrence
Type string - How often the requested information will be exported. Valid values include
Annually,Daily,Monthly,Weekly. - Subscription
Id string - The id of the subscription on which to create an export.
- Active bool
- Is the cost management export active? Default is
true. - Name string
- Specifies the name of the Cost Management Export. Changing this forces a new resource to be created.
- export
Data SubscriptionOptions Cost Management Export Export Data Options - A
export_data_optionsblock as defined below. - export
Data SubscriptionStorage Location Cost Management Export Export Data Storage Location - A
export_data_storage_locationblock as defined below. - recurrence
Period StringEnd Date - recurrence
Period StringStart Date - The date the export will start capturing information.
- recurrence
Type String - How often the requested information will be exported. Valid values include
Annually,Daily,Monthly,Weekly. - subscription
Id String - The id of the subscription on which to create an export.
- active Boolean
- Is the cost management export active? Default is
true. - name String
- Specifies the name of the Cost Management Export. Changing this forces a new resource to be created.
- export
Data SubscriptionOptions Cost Management Export Export Data Options - A
export_data_optionsblock as defined below. - export
Data SubscriptionStorage Location Cost Management Export Export Data Storage Location - A
export_data_storage_locationblock as defined below. - recurrence
Period stringEnd Date - recurrence
Period stringStart Date - The date the export will start capturing information.
- recurrence
Type string - How often the requested information will be exported. Valid values include
Annually,Daily,Monthly,Weekly. - subscription
Id string - The id of the subscription on which to create an export.
- active boolean
- Is the cost management export active? Default is
true. - name string
- Specifies the name of the Cost Management Export. Changing this forces a new resource to be created.
- export_
data_ Subscriptionoptions Cost Management Export Export Data Options Args - A
export_data_optionsblock as defined below. - export_
data_ Subscriptionstorage_ location Cost Management Export Export Data Storage Location Args - A
export_data_storage_locationblock as defined below. - recurrence_
period_ strend_ date - recurrence_
period_ strstart_ date - The date the export will start capturing information.
- recurrence_
type str - How often the requested information will be exported. Valid values include
Annually,Daily,Monthly,Weekly. - subscription_
id str - The id of the subscription on which to create an export.
- active bool
- Is the cost management export active? Default is
true. - name str
- Specifies the name of the Cost Management Export. Changing this forces a new resource to be created.
- export
Data Property MapOptions - A
export_data_optionsblock as defined below. - export
Data Property MapStorage Location - A
export_data_storage_locationblock as defined below. - recurrence
Period StringEnd Date - recurrence
Period StringStart Date - The date the export will start capturing information.
- recurrence
Type String - How often the requested information will be exported. Valid values include
Annually,Daily,Monthly,Weekly. - subscription
Id String - The id of the subscription on which to create an export.
- active Boolean
- Is the cost management export active? Default is
true. - name String
- Specifies the name of the Cost Management Export. Changing this forces a new resource to be created.
Outputs
All input properties are implicitly available as output properties. Additionally, the SubscriptionCostManagementExport resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing SubscriptionCostManagementExport Resource
Get an existing SubscriptionCostManagementExport resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: SubscriptionCostManagementExportState, opts?: CustomResourceOptions): SubscriptionCostManagementExport@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
active: Optional[bool] = None,
export_data_options: Optional[SubscriptionCostManagementExportExportDataOptionsArgs] = None,
export_data_storage_location: Optional[SubscriptionCostManagementExportExportDataStorageLocationArgs] = None,
name: Optional[str] = None,
recurrence_period_end_date: Optional[str] = None,
recurrence_period_start_date: Optional[str] = None,
recurrence_type: Optional[str] = None,
subscription_id: Optional[str] = None) -> SubscriptionCostManagementExportfunc GetSubscriptionCostManagementExport(ctx *Context, name string, id IDInput, state *SubscriptionCostManagementExportState, opts ...ResourceOption) (*SubscriptionCostManagementExport, error)public static SubscriptionCostManagementExport Get(string name, Input<string> id, SubscriptionCostManagementExportState? state, CustomResourceOptions? opts = null)public static SubscriptionCostManagementExport get(String name, Output<String> id, SubscriptionCostManagementExportState state, CustomResourceOptions options)resources: _: type: azure:core:SubscriptionCostManagementExport get: id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Active bool
- Is the cost management export active? Default is
true. - Export
Data SubscriptionOptions Cost Management Export Export Data Options - A
export_data_optionsblock as defined below. - Export
Data SubscriptionStorage Location Cost Management Export Export Data Storage Location - A
export_data_storage_locationblock as defined below. - Name string
- Specifies the name of the Cost Management Export. Changing this forces a new resource to be created.
- Recurrence
Period stringEnd Date - Recurrence
Period stringStart Date - The date the export will start capturing information.
- Recurrence
Type string - How often the requested information will be exported. Valid values include
Annually,Daily,Monthly,Weekly. - Subscription
Id string - The id of the subscription on which to create an export.
- Active bool
- Is the cost management export active? Default is
true. - Export
Data SubscriptionOptions Cost Management Export Export Data Options Args - A
export_data_optionsblock as defined below. - Export
Data SubscriptionStorage Location Cost Management Export Export Data Storage Location Args - A
export_data_storage_locationblock as defined below. - Name string
- Specifies the name of the Cost Management Export. Changing this forces a new resource to be created.
- Recurrence
Period stringEnd Date - Recurrence
Period stringStart Date - The date the export will start capturing information.
- Recurrence
Type string - How often the requested information will be exported. Valid values include
Annually,Daily,Monthly,Weekly. - Subscription
Id string - The id of the subscription on which to create an export.
- active Boolean
- Is the cost management export active? Default is
true. - export
Data SubscriptionOptions Cost Management Export Export Data Options - A
export_data_optionsblock as defined below. - export
Data SubscriptionStorage Location Cost Management Export Export Data Storage Location - A
export_data_storage_locationblock as defined below. - name String
- Specifies the name of the Cost Management Export. Changing this forces a new resource to be created.
- recurrence
Period StringEnd Date - recurrence
Period StringStart Date - The date the export will start capturing information.
- recurrence
Type String - How often the requested information will be exported. Valid values include
Annually,Daily,Monthly,Weekly. - subscription
Id String - The id of the subscription on which to create an export.
- active boolean
- Is the cost management export active? Default is
true. - export
Data SubscriptionOptions Cost Management Export Export Data Options - A
export_data_optionsblock as defined below. - export
Data SubscriptionStorage Location Cost Management Export Export Data Storage Location - A
export_data_storage_locationblock as defined below. - name string
- Specifies the name of the Cost Management Export. Changing this forces a new resource to be created.
- recurrence
Period stringEnd Date - recurrence
Period stringStart Date - The date the export will start capturing information.
- recurrence
Type string - How often the requested information will be exported. Valid values include
Annually,Daily,Monthly,Weekly. - subscription
Id string - The id of the subscription on which to create an export.
- active bool
- Is the cost management export active? Default is
true. - export_
data_ Subscriptionoptions Cost Management Export Export Data Options Args - A
export_data_optionsblock as defined below. - export_
data_ Subscriptionstorage_ location Cost Management Export Export Data Storage Location Args - A
export_data_storage_locationblock as defined below. - name str
- Specifies the name of the Cost Management Export. Changing this forces a new resource to be created.
- recurrence_
period_ strend_ date - recurrence_
period_ strstart_ date - The date the export will start capturing information.
- recurrence_
type str - How often the requested information will be exported. Valid values include
Annually,Daily,Monthly,Weekly. - subscription_
id str - The id of the subscription on which to create an export.
- active Boolean
- Is the cost management export active? Default is
true. - export
Data Property MapOptions - A
export_data_optionsblock as defined below. - export
Data Property MapStorage Location - A
export_data_storage_locationblock as defined below. - name String
- Specifies the name of the Cost Management Export. Changing this forces a new resource to be created.
- recurrence
Period StringEnd Date - recurrence
Period StringStart Date - The date the export will start capturing information.
- recurrence
Type String - How often the requested information will be exported. Valid values include
Annually,Daily,Monthly,Weekly. - subscription
Id String - The id of the subscription on which to create an export.
Supporting Types
SubscriptionCostManagementExportExportDataOptions, SubscriptionCostManagementExportExportDataOptionsArgs
- time_
frame str - The time frame for pulling data for the query. If custom, then a specific time period must be provided. Possible values include:
WeekToDate,MonthToDate,BillingMonthToDate,TheLastWeek,TheLastMonth,TheLastBillingMonth,Custom. - type str
- The type of the query.
SubscriptionCostManagementExportExportDataStorageLocation, SubscriptionCostManagementExportExportDataStorageLocationArgs
- Container
Id string - The Resource Manager ID of the container where exports will be uploaded.
- Root
Folder stringPath - The path of the directory where exports will be uploaded.
- Container
Id string - The Resource Manager ID of the container where exports will be uploaded.
- Root
Folder stringPath - The path of the directory where exports will be uploaded.
- container
Id String - The Resource Manager ID of the container where exports will be uploaded.
- root
Folder StringPath - The path of the directory where exports will be uploaded.
- container
Id string - The Resource Manager ID of the container where exports will be uploaded.
- root
Folder stringPath - The path of the directory where exports will be uploaded.
- container_
id str - The Resource Manager ID of the container where exports will be uploaded.
- root_
folder_ strpath - The path of the directory where exports will be uploaded.
- container
Id String - The Resource Manager ID of the container where exports will be uploaded.
- root
Folder StringPath - The path of the directory where exports will be uploaded.
Import
Subscription Cost Management Exports can be imported using the resource id, e.g.
$ pulumi import azure:core/subscriptionCostManagementExport:SubscriptionCostManagementExport example /subscriptions/12345678-1234-9876-4563-123456789012/providers/Microsoft.CostManagement/exports/export1
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
azurermTerraform Provider.
We recommend using Azure Native.
published on Monday, Mar 9, 2026 by Pulumi
