PolicyVM
Manages an Azure Backup VM Backup Policy.
Example Usage
using Pulumi;
using Azure = Pulumi.Azure;
class MyStack : Stack
{
public MyStack()
{
var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new Azure.Core.ResourceGroupArgs
{
Location = "West Europe",
});
var exampleVault = new Azure.RecoveryServices.Vault("exampleVault", new Azure.RecoveryServices.VaultArgs
{
Location = exampleResourceGroup.Location,
ResourceGroupName = exampleResourceGroup.Name,
Sku = "Standard",
});
var examplePolicyVM = new Azure.Backup.PolicyVM("examplePolicyVM", new Azure.Backup.PolicyVMArgs
{
ResourceGroupName = exampleResourceGroup.Name,
RecoveryVaultName = exampleVault.Name,
Timezone = "UTC",
Backup = new Azure.Backup.Inputs.PolicyVMBackupArgs
{
Frequency = "Daily",
Time = "23:00",
},
RetentionDaily = new Azure.Backup.Inputs.PolicyVMRetentionDailyArgs
{
Count = 10,
},
RetentionWeekly = new Azure.Backup.Inputs.PolicyVMRetentionWeeklyArgs
{
Count = 42,
Weekdays =
{
"Sunday",
"Wednesday",
"Friday",
"Saturday",
},
},
RetentionMonthly = new Azure.Backup.Inputs.PolicyVMRetentionMonthlyArgs
{
Count = 7,
Weekdays =
{
"Sunday",
"Wednesday",
},
Weeks =
{
"First",
"Last",
},
},
RetentionYearly = new Azure.Backup.Inputs.PolicyVMRetentionYearlyArgs
{
Count = 77,
Weekdays =
{
"Sunday",
},
Weeks =
{
"Last",
},
Months =
{
"January",
},
},
});
}
}
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/backup"
"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/core"
"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/recoveryservices"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
exampleResourceGroup, err := core.NewResourceGroup(ctx, "exampleResourceGroup", &core.ResourceGroupArgs{
Location: pulumi.String("West Europe"),
})
if err != nil {
return err
}
exampleVault, err := recoveryservices.NewVault(ctx, "exampleVault", &recoveryservices.VaultArgs{
Location: exampleResourceGroup.Location,
ResourceGroupName: exampleResourceGroup.Name,
Sku: pulumi.String("Standard"),
})
if err != nil {
return err
}
_, err = backup.NewPolicyVM(ctx, "examplePolicyVM", &backup.PolicyVMArgs{
ResourceGroupName: exampleResourceGroup.Name,
RecoveryVaultName: exampleVault.Name,
Timezone: pulumi.String("UTC"),
Backup: &backup.PolicyVMBackupArgs{
Frequency: pulumi.String("Daily"),
Time: pulumi.String("23:00"),
},
RetentionDaily: &backup.PolicyVMRetentionDailyArgs{
Count: pulumi.Int(10),
},
RetentionWeekly: &backup.PolicyVMRetentionWeeklyArgs{
Count: pulumi.Int(42),
Weekdays: pulumi.StringArray{
pulumi.String("Sunday"),
pulumi.String("Wednesday"),
pulumi.String("Friday"),
pulumi.String("Saturday"),
},
},
RetentionMonthly: &backup.PolicyVMRetentionMonthlyArgs{
Count: pulumi.Int(7),
Weekdays: pulumi.StringArray{
pulumi.String("Sunday"),
pulumi.String("Wednesday"),
},
Weeks: pulumi.StringArray{
pulumi.String("First"),
pulumi.String("Last"),
},
},
RetentionYearly: &backup.PolicyVMRetentionYearlyArgs{
Count: pulumi.Int(77),
Weekdays: pulumi.StringArray{
pulumi.String("Sunday"),
},
Weeks: pulumi.StringArray{
pulumi.String("Last"),
},
Months: pulumi.StringArray{
pulumi.String("January"),
},
},
})
if err != nil {
return err
}
return nil
})
}
import pulumi
import pulumi_azure as azure
example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="West Europe")
example_vault = azure.recoveryservices.Vault("exampleVault",
location=example_resource_group.location,
resource_group_name=example_resource_group.name,
sku="Standard")
example_policy_vm = azure.backup.PolicyVM("examplePolicyVM",
resource_group_name=example_resource_group.name,
recovery_vault_name=example_vault.name,
timezone="UTC",
backup=azure.backup.PolicyVMBackupArgs(
frequency="Daily",
time="23:00",
),
retention_daily=azure.backup.PolicyVMRetentionDailyArgs(
count=10,
),
retention_weekly=azure.backup.PolicyVMRetentionWeeklyArgs(
count=42,
weekdays=[
"Sunday",
"Wednesday",
"Friday",
"Saturday",
],
),
retention_monthly=azure.backup.PolicyVMRetentionMonthlyArgs(
count=7,
weekdays=[
"Sunday",
"Wednesday",
],
weeks=[
"First",
"Last",
],
),
retention_yearly=azure.backup.PolicyVMRetentionYearlyArgs(
count=77,
weekdays=["Sunday"],
weeks=["Last"],
months=["January"],
))
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
const exampleVault = new azure.recoveryservices.Vault("exampleVault", {
location: exampleResourceGroup.location,
resourceGroupName: exampleResourceGroup.name,
sku: "Standard",
});
const examplePolicyVM = new azure.backup.PolicyVM("examplePolicyVM", {
resourceGroupName: exampleResourceGroup.name,
recoveryVaultName: exampleVault.name,
timezone: "UTC",
backup: {
frequency: "Daily",
time: "23:00",
},
retentionDaily: {
count: 10,
},
retentionWeekly: {
count: 42,
weekdays: [
"Sunday",
"Wednesday",
"Friday",
"Saturday",
],
},
retentionMonthly: {
count: 7,
weekdays: [
"Sunday",
"Wednesday",
],
weeks: [
"First",
"Last",
],
},
retentionYearly: {
count: 77,
weekdays: ["Sunday"],
weeks: ["Last"],
months: ["January"],
},
});
Create a PolicyVM Resource
new PolicyVM(name: string, args: PolicyVMArgs, opts?: CustomResourceOptions);
@overload
def PolicyVM(resource_name: str,
opts: Optional[ResourceOptions] = None,
backup: Optional[PolicyVMBackupArgs] = None,
instant_restore_retention_days: Optional[int] = None,
name: Optional[str] = None,
recovery_vault_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
retention_daily: Optional[PolicyVMRetentionDailyArgs] = None,
retention_monthly: Optional[PolicyVMRetentionMonthlyArgs] = None,
retention_weekly: Optional[PolicyVMRetentionWeeklyArgs] = None,
retention_yearly: Optional[PolicyVMRetentionYearlyArgs] = None,
tags: Optional[Mapping[str, str]] = None,
timezone: Optional[str] = None)
@overload
def PolicyVM(resource_name: str,
args: PolicyVMArgs,
opts: Optional[ResourceOptions] = None)
func NewPolicyVM(ctx *Context, name string, args PolicyVMArgs, opts ...ResourceOption) (*PolicyVM, error)
public PolicyVM(string name, PolicyVMArgs args, CustomResourceOptions? opts = null)
- name string
- The unique name of the resource.
- args PolicyVMArgs
- 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 PolicyVMArgs
- 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 PolicyVMArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args PolicyVMArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
PolicyVM Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Programming Model docs.
Inputs
The PolicyVM resource accepts the following input properties:
- Backup
Policy
VMBackup Args - Configures the Policy backup frequency, times & days as documented in the
backup
block below. - Recovery
Vault stringName - Specifies the name of the Recovery Services Vault to use. Changing this forces a new resource to be created.
- Resource
Group stringName - The name of the resource group in which to create the policy. Changing this forces a new resource to be created.
- Instant
Restore intRetention Days - Specifies the instant restore retention range in days.
- Name string
- Specifies the name of the Backup Policy. Changing this forces a new resource to be created.
- Retention
Daily PolicyVMRetention Daily Args - Configures the policy daily retention as documented in the
retention_daily
block below. Required when backup frequency isDaily
. - Retention
Monthly PolicyVMRetention Monthly Args - Configures the policy monthly retention as documented in the
retention_monthly
block below. - Retention
Weekly PolicyVMRetention Weekly Args - Configures the policy weekly retention as documented in the
retention_weekly
block below. Required when backup frequency isWeekly
. - Retention
Yearly PolicyVMRetention Yearly Args - Configures the policy yearly retention as documented in the
retention_yearly
block below. - Dictionary<string, string>
- A mapping of tags to assign to the resource.
- Timezone string
- Specifies the timezone. the possible values are defined here. Defaults to
UTC
- Backup
Policy
VMBackup - Configures the Policy backup frequency, times & days as documented in the
backup
block below. - Recovery
Vault stringName - Specifies the name of the Recovery Services Vault to use. Changing this forces a new resource to be created.
- Resource
Group stringName - The name of the resource group in which to create the policy. Changing this forces a new resource to be created.
- Instant
Restore intRetention Days - Specifies the instant restore retention range in days.
- Name string
- Specifies the name of the Backup Policy. Changing this forces a new resource to be created.
- Retention
Daily PolicyVMRetention Daily - Configures the policy daily retention as documented in the
retention_daily
block below. Required when backup frequency isDaily
. - Retention
Monthly PolicyVMRetention Monthly - Configures the policy monthly retention as documented in the
retention_monthly
block below. - Retention
Weekly PolicyVMRetention Weekly - Configures the policy weekly retention as documented in the
retention_weekly
block below. Required when backup frequency isWeekly
. - Retention
Yearly PolicyVMRetention Yearly - Configures the policy yearly retention as documented in the
retention_yearly
block below. - map[string]string
- A mapping of tags to assign to the resource.
- Timezone string
- Specifies the timezone. the possible values are defined here. Defaults to
UTC
- backup
Policy
VMBackup Args - Configures the Policy backup frequency, times & days as documented in the
backup
block below. - recovery
Vault stringName - Specifies the name of the Recovery Services Vault to use. Changing this forces a new resource to be created.
- resource
Group stringName - The name of the resource group in which to create the policy. Changing this forces a new resource to be created.
- instant
Restore numberRetention Days - Specifies the instant restore retention range in days.
- name string
- Specifies the name of the Backup Policy. Changing this forces a new resource to be created.
- retention
Daily PolicyVMRetention Daily Args - Configures the policy daily retention as documented in the
retention_daily
block below. Required when backup frequency isDaily
. - retention
Monthly PolicyVMRetention Monthly Args - Configures the policy monthly retention as documented in the
retention_monthly
block below. - retention
Weekly PolicyVMRetention Weekly Args - Configures the policy weekly retention as documented in the
retention_weekly
block below. Required when backup frequency isWeekly
. - retention
Yearly PolicyVMRetention Yearly Args - Configures the policy yearly retention as documented in the
retention_yearly
block below. - {[key: string]: string}
- A mapping of tags to assign to the resource.
- timezone string
- Specifies the timezone. the possible values are defined here. Defaults to
UTC
- backup
Policy
VMBackup Args - Configures the Policy backup frequency, times & days as documented in the
backup
block below. - recovery_
vault_ strname - Specifies the name of the Recovery Services Vault to use. Changing this forces a new resource to be created.
- resource_
group_ strname - The name of the resource group in which to create the policy. Changing this forces a new resource to be created.
- instant_
restore_ intretention_ days - Specifies the instant restore retention range in days.
- name str
- Specifies the name of the Backup Policy. Changing this forces a new resource to be created.
- retention_
daily PolicyVMRetention Daily Args - Configures the policy daily retention as documented in the
retention_daily
block below. Required when backup frequency isDaily
. - retention_
monthly PolicyVMRetention Monthly Args - Configures the policy monthly retention as documented in the
retention_monthly
block below. - retention_
weekly PolicyVMRetention Weekly Args - Configures the policy weekly retention as documented in the
retention_weekly
block below. Required when backup frequency isWeekly
. - retention_
yearly PolicyVMRetention Yearly Args - Configures the policy yearly retention as documented in the
retention_yearly
block below. - Mapping[str, str]
- A mapping of tags to assign to the resource.
- timezone str
- Specifies the timezone. the possible values are defined here. Defaults to
UTC
Outputs
All input properties are implicitly available as output properties. Additionally, the PolicyVM 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 str
- The provider-assigned unique ID for this managed resource.
Look up an Existing PolicyVM Resource
Get an existing PolicyVM 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?: PolicyVMState, opts?: CustomResourceOptions): PolicyVM
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
backup: Optional[PolicyVMBackupArgs] = None,
instant_restore_retention_days: Optional[int] = None,
name: Optional[str] = None,
recovery_vault_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
retention_daily: Optional[PolicyVMRetentionDailyArgs] = None,
retention_monthly: Optional[PolicyVMRetentionMonthlyArgs] = None,
retention_weekly: Optional[PolicyVMRetentionWeeklyArgs] = None,
retention_yearly: Optional[PolicyVMRetentionYearlyArgs] = None,
tags: Optional[Mapping[str, str]] = None,
timezone: Optional[str] = None) -> PolicyVM
func GetPolicyVM(ctx *Context, name string, id IDInput, state *PolicyVMState, opts ...ResourceOption) (*PolicyVM, error)
public static PolicyVM Get(string name, Input<string> id, PolicyVMState? state, CustomResourceOptions? opts = null)
- 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.
The following state arguments are supported:
- Backup
Policy
VMBackup Args - Configures the Policy backup frequency, times & days as documented in the
backup
block below. - Instant
Restore intRetention Days - Specifies the instant restore retention range in days.
- Name string
- Specifies the name of the Backup Policy. Changing this forces a new resource to be created.
- Recovery
Vault stringName - Specifies the name of the Recovery Services Vault to use. Changing this forces a new resource to be created.
- Resource
Group stringName - The name of the resource group in which to create the policy. Changing this forces a new resource to be created.
- Retention
Daily PolicyVMRetention Daily Args - Configures the policy daily retention as documented in the
retention_daily
block below. Required when backup frequency isDaily
. - Retention
Monthly PolicyVMRetention Monthly Args - Configures the policy monthly retention as documented in the
retention_monthly
block below. - Retention
Weekly PolicyVMRetention Weekly Args - Configures the policy weekly retention as documented in the
retention_weekly
block below. Required when backup frequency isWeekly
. - Retention
Yearly PolicyVMRetention Yearly Args - Configures the policy yearly retention as documented in the
retention_yearly
block below. - Dictionary<string, string>
- A mapping of tags to assign to the resource.
- Timezone string
- Specifies the timezone. the possible values are defined here. Defaults to
UTC
- Backup
Policy
VMBackup - Configures the Policy backup frequency, times & days as documented in the
backup
block below. - Instant
Restore intRetention Days - Specifies the instant restore retention range in days.
- Name string
- Specifies the name of the Backup Policy. Changing this forces a new resource to be created.
- Recovery
Vault stringName - Specifies the name of the Recovery Services Vault to use. Changing this forces a new resource to be created.
- Resource
Group stringName - The name of the resource group in which to create the policy. Changing this forces a new resource to be created.
- Retention
Daily PolicyVMRetention Daily - Configures the policy daily retention as documented in the
retention_daily
block below. Required when backup frequency isDaily
. - Retention
Monthly PolicyVMRetention Monthly - Configures the policy monthly retention as documented in the
retention_monthly
block below. - Retention
Weekly PolicyVMRetention Weekly - Configures the policy weekly retention as documented in the
retention_weekly
block below. Required when backup frequency isWeekly
. - Retention
Yearly PolicyVMRetention Yearly - Configures the policy yearly retention as documented in the
retention_yearly
block below. - map[string]string
- A mapping of tags to assign to the resource.
- Timezone string
- Specifies the timezone. the possible values are defined here. Defaults to
UTC
- backup
Policy
VMBackup Args - Configures the Policy backup frequency, times & days as documented in the
backup
block below. - instant
Restore numberRetention Days - Specifies the instant restore retention range in days.
- name string
- Specifies the name of the Backup Policy. Changing this forces a new resource to be created.
- recovery
Vault stringName - Specifies the name of the Recovery Services Vault to use. Changing this forces a new resource to be created.
- resource
Group stringName - The name of the resource group in which to create the policy. Changing this forces a new resource to be created.
- retention
Daily PolicyVMRetention Daily Args - Configures the policy daily retention as documented in the
retention_daily
block below. Required when backup frequency isDaily
. - retention
Monthly PolicyVMRetention Monthly Args - Configures the policy monthly retention as documented in the
retention_monthly
block below. - retention
Weekly PolicyVMRetention Weekly Args - Configures the policy weekly retention as documented in the
retention_weekly
block below. Required when backup frequency isWeekly
. - retention
Yearly PolicyVMRetention Yearly Args - Configures the policy yearly retention as documented in the
retention_yearly
block below. - {[key: string]: string}
- A mapping of tags to assign to the resource.
- timezone string
- Specifies the timezone. the possible values are defined here. Defaults to
UTC
- backup
Policy
VMBackup Args - Configures the Policy backup frequency, times & days as documented in the
backup
block below. - instant_
restore_ intretention_ days - Specifies the instant restore retention range in days.
- name str
- Specifies the name of the Backup Policy. Changing this forces a new resource to be created.
- recovery_
vault_ strname - Specifies the name of the Recovery Services Vault to use. Changing this forces a new resource to be created.
- resource_
group_ strname - The name of the resource group in which to create the policy. Changing this forces a new resource to be created.
- retention_
daily PolicyVMRetention Daily Args - Configures the policy daily retention as documented in the
retention_daily
block below. Required when backup frequency isDaily
. - retention_
monthly PolicyVMRetention Monthly Args - Configures the policy monthly retention as documented in the
retention_monthly
block below. - retention_
weekly PolicyVMRetention Weekly Args - Configures the policy weekly retention as documented in the
retention_weekly
block below. Required when backup frequency isWeekly
. - retention_
yearly PolicyVMRetention Yearly Args - Configures the policy yearly retention as documented in the
retention_yearly
block below. - Mapping[str, str]
- A mapping of tags to assign to the resource.
- timezone str
- Specifies the timezone. the possible values are defined here. Defaults to
UTC
Supporting Types
PolicyVMBackup
PolicyVMRetentionDaily
- Count int
- The number of yearly backups to keep. Must be between
1
and9999
- Count int
- The number of yearly backups to keep. Must be between
1
and9999
- count number
- The number of yearly backups to keep. Must be between
1
and9999
- count int
- The number of yearly backups to keep. Must be between
1
and9999
PolicyVMRetentionMonthly
- Count int
- The number of yearly backups to keep. Must be between
1
and9999
- Weekdays List<string>
- The weekday backups to retain . Must be one of
Sunday
,Monday
,Tuesday
,Wednesday
,Thursday
,Friday
orSaturday
. - Weeks List<string>
- The weeks of the month to retain backups of. Must be one of
First
,Second
,Third
,Fourth
,Last
.
- Count int
- The number of yearly backups to keep. Must be between
1
and9999
- Weekdays []string
- The weekday backups to retain . Must be one of
Sunday
,Monday
,Tuesday
,Wednesday
,Thursday
,Friday
orSaturday
. - Weeks []string
- The weeks of the month to retain backups of. Must be one of
First
,Second
,Third
,Fourth
,Last
.
- count number
- The number of yearly backups to keep. Must be between
1
and9999
- weekdays string[]
- The weekday backups to retain . Must be one of
Sunday
,Monday
,Tuesday
,Wednesday
,Thursday
,Friday
orSaturday
. - weeks string[]
- The weeks of the month to retain backups of. Must be one of
First
,Second
,Third
,Fourth
,Last
.
- count int
- The number of yearly backups to keep. Must be between
1
and9999
- weekdays Sequence[str]
- The weekday backups to retain . Must be one of
Sunday
,Monday
,Tuesday
,Wednesday
,Thursday
,Friday
orSaturday
. - weeks Sequence[str]
- The weeks of the month to retain backups of. Must be one of
First
,Second
,Third
,Fourth
,Last
.
PolicyVMRetentionWeekly
PolicyVMRetentionYearly
- Count int
- The number of yearly backups to keep. Must be between
1
and9999
- Months List<string>
- The months of the year to retain backups of. Must be one of
January
,February
,March
,April
,May
,June
,July
,Augest
,September
,October
,November
andDecember
. - Weekdays List<string>
- The weekday backups to retain . Must be one of
Sunday
,Monday
,Tuesday
,Wednesday
,Thursday
,Friday
orSaturday
. - Weeks List<string>
- The weeks of the month to retain backups of. Must be one of
First
,Second
,Third
,Fourth
,Last
.
- Count int
- The number of yearly backups to keep. Must be between
1
and9999
- Months []string
- The months of the year to retain backups of. Must be one of
January
,February
,March
,April
,May
,June
,July
,Augest
,September
,October
,November
andDecember
. - Weekdays []string
- The weekday backups to retain . Must be one of
Sunday
,Monday
,Tuesday
,Wednesday
,Thursday
,Friday
orSaturday
. - Weeks []string
- The weeks of the month to retain backups of. Must be one of
First
,Second
,Third
,Fourth
,Last
.
- count number
- The number of yearly backups to keep. Must be between
1
and9999
- months string[]
- The months of the year to retain backups of. Must be one of
January
,February
,March
,April
,May
,June
,July
,Augest
,September
,October
,November
andDecember
. - weekdays string[]
- The weekday backups to retain . Must be one of
Sunday
,Monday
,Tuesday
,Wednesday
,Thursday
,Friday
orSaturday
. - weeks string[]
- The weeks of the month to retain backups of. Must be one of
First
,Second
,Third
,Fourth
,Last
.
- count int
- The number of yearly backups to keep. Must be between
1
and9999
- months Sequence[str]
- The months of the year to retain backups of. Must be one of
January
,February
,March
,April
,May
,June
,July
,Augest
,September
,October
,November
andDecember
. - weekdays Sequence[str]
- The weekday backups to retain . Must be one of
Sunday
,Monday
,Tuesday
,Wednesday
,Thursday
,Friday
orSaturday
. - weeks Sequence[str]
- The weeks of the month to retain backups of. Must be one of
First
,Second
,Third
,Fourth
,Last
.
Import
VM Backup Policies can be imported using the resource id
, e.g.
$ pulumi import azure:backup/policyVM:PolicyVM policy1 /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.RecoveryServices/vaults/example-recovery-vault/backupPolicies/policy1
Package Details
- Repository
- https://github.com/pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
azurerm
Terraform Provider.