We recommend using Azure Native.
azure.core.ResourcePolicyExemption
Explore with Pulumi AI
Manages a Resource Policy Exemption.
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;
return await Deployment.RunAsync(() =>
{
var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new()
{
Location = "westus",
});
var exampleVirtualNetwork = new Azure.Network.VirtualNetwork("exampleVirtualNetwork", new()
{
ResourceGroupName = exampleResourceGroup.Name,
Location = exampleResourceGroup.Location,
AddressSpaces = new[]
{
"10.0.0.0/16",
},
});
var examplePolicySetDefinition = Azure.Policy.GetPolicySetDefinition.Invoke(new()
{
DisplayName = "Audit machines with insecure password security settings",
});
var exampleResourcePolicyAssignment = new Azure.Core.ResourcePolicyAssignment("exampleResourcePolicyAssignment", new()
{
ResourceId = exampleVirtualNetwork.Id,
PolicyDefinitionId = examplePolicySetDefinition.Apply(getPolicySetDefinitionResult => getPolicySetDefinitionResult.Id),
Location = exampleResourceGroup.Location,
Identity = new Azure.Core.Inputs.ResourcePolicyAssignmentIdentityArgs
{
Type = "SystemAssigned",
},
});
var exampleResourcePolicyExemption = new Azure.Core.ResourcePolicyExemption("exampleResourcePolicyExemption", new()
{
ResourceId = exampleResourcePolicyAssignment.ResourceId,
PolicyAssignmentId = exampleResourcePolicyAssignment.Id,
ExemptionCategory = "Mitigated",
});
});
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/network"
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/policy"
"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("westus"),
})
if err != nil {
return err
}
exampleVirtualNetwork, err := network.NewVirtualNetwork(ctx, "exampleVirtualNetwork", &network.VirtualNetworkArgs{
ResourceGroupName: exampleResourceGroup.Name,
Location: exampleResourceGroup.Location,
AddressSpaces: pulumi.StringArray{
pulumi.String("10.0.0.0/16"),
},
})
if err != nil {
return err
}
examplePolicySetDefinition, err := policy.LookupPolicySetDefinition(ctx, &policy.LookupPolicySetDefinitionArgs{
DisplayName: pulumi.StringRef("Audit machines with insecure password security settings"),
}, nil)
if err != nil {
return err
}
exampleResourcePolicyAssignment, err := core.NewResourcePolicyAssignment(ctx, "exampleResourcePolicyAssignment", &core.ResourcePolicyAssignmentArgs{
ResourceId: exampleVirtualNetwork.ID(),
PolicyDefinitionId: *pulumi.String(examplePolicySetDefinition.Id),
Location: exampleResourceGroup.Location,
Identity: &core.ResourcePolicyAssignmentIdentityArgs{
Type: pulumi.String("SystemAssigned"),
},
})
if err != nil {
return err
}
_, err = core.NewResourcePolicyExemption(ctx, "exampleResourcePolicyExemption", &core.ResourcePolicyExemptionArgs{
ResourceId: exampleResourcePolicyAssignment.ResourceId,
PolicyAssignmentId: exampleResourcePolicyAssignment.ID(),
ExemptionCategory: pulumi.String("Mitigated"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.core.ResourceGroup;
import com.pulumi.azure.core.ResourceGroupArgs;
import com.pulumi.azure.network.VirtualNetwork;
import com.pulumi.azure.network.VirtualNetworkArgs;
import com.pulumi.azure.policy.PolicyFunctions;
import com.pulumi.azure.policy.inputs.GetPolicySetDefinitionArgs;
import com.pulumi.azure.core.ResourcePolicyAssignment;
import com.pulumi.azure.core.ResourcePolicyAssignmentArgs;
import com.pulumi.azure.core.inputs.ResourcePolicyAssignmentIdentityArgs;
import com.pulumi.azure.core.ResourcePolicyExemption;
import com.pulumi.azure.core.ResourcePolicyExemptionArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var exampleResourceGroup = new ResourceGroup("exampleResourceGroup", ResourceGroupArgs.builder()
.location("westus")
.build());
var exampleVirtualNetwork = new VirtualNetwork("exampleVirtualNetwork", VirtualNetworkArgs.builder()
.resourceGroupName(exampleResourceGroup.name())
.location(exampleResourceGroup.location())
.addressSpaces("10.0.0.0/16")
.build());
final var examplePolicySetDefinition = PolicyFunctions.getPolicySetDefinition(GetPolicySetDefinitionArgs.builder()
.displayName("Audit machines with insecure password security settings")
.build());
var exampleResourcePolicyAssignment = new ResourcePolicyAssignment("exampleResourcePolicyAssignment", ResourcePolicyAssignmentArgs.builder()
.resourceId(exampleVirtualNetwork.id())
.policyDefinitionId(examplePolicySetDefinition.applyValue(getPolicySetDefinitionResult -> getPolicySetDefinitionResult.id()))
.location(exampleResourceGroup.location())
.identity(ResourcePolicyAssignmentIdentityArgs.builder()
.type("SystemAssigned")
.build())
.build());
var exampleResourcePolicyExemption = new ResourcePolicyExemption("exampleResourcePolicyExemption", ResourcePolicyExemptionArgs.builder()
.resourceId(exampleResourcePolicyAssignment.resourceId())
.policyAssignmentId(exampleResourcePolicyAssignment.id())
.exemptionCategory("Mitigated")
.build());
}
}
import pulumi
import pulumi_azure as azure
example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="westus")
example_virtual_network = azure.network.VirtualNetwork("exampleVirtualNetwork",
resource_group_name=example_resource_group.name,
location=example_resource_group.location,
address_spaces=["10.0.0.0/16"])
example_policy_set_definition = azure.policy.get_policy_set_definition(display_name="Audit machines with insecure password security settings")
example_resource_policy_assignment = azure.core.ResourcePolicyAssignment("exampleResourcePolicyAssignment",
resource_id=example_virtual_network.id,
policy_definition_id=example_policy_set_definition.id,
location=example_resource_group.location,
identity=azure.core.ResourcePolicyAssignmentIdentityArgs(
type="SystemAssigned",
))
example_resource_policy_exemption = azure.core.ResourcePolicyExemption("exampleResourcePolicyExemption",
resource_id=example_resource_policy_assignment.resource_id,
policy_assignment_id=example_resource_policy_assignment.id,
exemption_category="Mitigated")
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "westus"});
const exampleVirtualNetwork = new azure.network.VirtualNetwork("exampleVirtualNetwork", {
resourceGroupName: exampleResourceGroup.name,
location: exampleResourceGroup.location,
addressSpaces: ["10.0.0.0/16"],
});
const examplePolicySetDefinition = azure.policy.getPolicySetDefinition({
displayName: "Audit machines with insecure password security settings",
});
const exampleResourcePolicyAssignment = new azure.core.ResourcePolicyAssignment("exampleResourcePolicyAssignment", {
resourceId: exampleVirtualNetwork.id,
policyDefinitionId: examplePolicySetDefinition.then(examplePolicySetDefinition => examplePolicySetDefinition.id),
location: exampleResourceGroup.location,
identity: {
type: "SystemAssigned",
},
});
const exampleResourcePolicyExemption = new azure.core.ResourcePolicyExemption("exampleResourcePolicyExemption", {
resourceId: exampleResourcePolicyAssignment.resourceId,
policyAssignmentId: exampleResourcePolicyAssignment.id,
exemptionCategory: "Mitigated",
});
resources:
exampleResourceGroup:
type: azure:core:ResourceGroup
properties:
location: westus
exampleVirtualNetwork:
type: azure:network:VirtualNetwork
properties:
resourceGroupName: ${exampleResourceGroup.name}
location: ${exampleResourceGroup.location}
addressSpaces:
- 10.0.0.0/16
exampleResourcePolicyAssignment:
type: azure:core:ResourcePolicyAssignment
properties:
resourceId: ${exampleVirtualNetwork.id}
policyDefinitionId: ${examplePolicySetDefinition.id}
location: ${exampleResourceGroup.location}
identity:
type: SystemAssigned
exampleResourcePolicyExemption:
type: azure:core:ResourcePolicyExemption
properties:
resourceId: ${exampleResourcePolicyAssignment.resourceId}
policyAssignmentId: ${exampleResourcePolicyAssignment.id}
exemptionCategory: Mitigated
variables:
examplePolicySetDefinition:
fn::invoke:
Function: azure:policy:getPolicySetDefinition
Arguments:
displayName: Audit machines with insecure password security settings
Create ResourcePolicyExemption Resource
new ResourcePolicyExemption(name: string, args: ResourcePolicyExemptionArgs, opts?: CustomResourceOptions);
@overload
def ResourcePolicyExemption(resource_name: str,
opts: Optional[ResourceOptions] = None,
description: Optional[str] = None,
display_name: Optional[str] = None,
exemption_category: Optional[str] = None,
expires_on: Optional[str] = None,
metadata: Optional[str] = None,
name: Optional[str] = None,
policy_assignment_id: Optional[str] = None,
policy_definition_reference_ids: Optional[Sequence[str]] = None,
resource_id: Optional[str] = None)
@overload
def ResourcePolicyExemption(resource_name: str,
args: ResourcePolicyExemptionArgs,
opts: Optional[ResourceOptions] = None)
func NewResourcePolicyExemption(ctx *Context, name string, args ResourcePolicyExemptionArgs, opts ...ResourceOption) (*ResourcePolicyExemption, error)
public ResourcePolicyExemption(string name, ResourcePolicyExemptionArgs args, CustomResourceOptions? opts = null)
public ResourcePolicyExemption(String name, ResourcePolicyExemptionArgs args)
public ResourcePolicyExemption(String name, ResourcePolicyExemptionArgs args, CustomResourceOptions options)
type: azure:core:ResourcePolicyExemption
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ResourcePolicyExemptionArgs
- 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 ResourcePolicyExemptionArgs
- 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 ResourcePolicyExemptionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ResourcePolicyExemptionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ResourcePolicyExemptionArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
ResourcePolicyExemption Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The ResourcePolicyExemption resource accepts the following input properties:
- Exemption
Category string The category of this policy exemption. Possible values are
Waiver
andMitigated
.- Policy
Assignment stringId The ID of the Policy Assignment to be exempted at the specified Scope. Changing this forces a new resource to be created.
- Resource
Id string The Resource ID where the Policy Exemption should be applied. Changing this forces a new resource to be created.
- Description string
A description to use for this Policy Exemption.
- Display
Name string A friendly display name to use for this Policy Exemption.
- Expires
On string The expiration date and time in UTC ISO 8601 format of this policy exemption.
- Metadata string
The metadata for this policy exemption. This is a JSON string representing additional metadata that should be stored with the policy exemption.
- Name string
The name of the Policy Exemption. Changing this forces a new resource to be created.
- Policy
Definition List<string>Reference Ids The policy definition reference ID list when the associated policy assignment is an assignment of a policy set definition.
- Exemption
Category string The category of this policy exemption. Possible values are
Waiver
andMitigated
.- Policy
Assignment stringId The ID of the Policy Assignment to be exempted at the specified Scope. Changing this forces a new resource to be created.
- Resource
Id string The Resource ID where the Policy Exemption should be applied. Changing this forces a new resource to be created.
- Description string
A description to use for this Policy Exemption.
- Display
Name string A friendly display name to use for this Policy Exemption.
- Expires
On string The expiration date and time in UTC ISO 8601 format of this policy exemption.
- Metadata string
The metadata for this policy exemption. This is a JSON string representing additional metadata that should be stored with the policy exemption.
- Name string
The name of the Policy Exemption. Changing this forces a new resource to be created.
- Policy
Definition []stringReference Ids The policy definition reference ID list when the associated policy assignment is an assignment of a policy set definition.
- exemption
Category String The category of this policy exemption. Possible values are
Waiver
andMitigated
.- policy
Assignment StringId The ID of the Policy Assignment to be exempted at the specified Scope. Changing this forces a new resource to be created.
- resource
Id String The Resource ID where the Policy Exemption should be applied. Changing this forces a new resource to be created.
- description String
A description to use for this Policy Exemption.
- display
Name String A friendly display name to use for this Policy Exemption.
- expires
On String The expiration date and time in UTC ISO 8601 format of this policy exemption.
- metadata String
The metadata for this policy exemption. This is a JSON string representing additional metadata that should be stored with the policy exemption.
- name String
The name of the Policy Exemption. Changing this forces a new resource to be created.
- policy
Definition List<String>Reference Ids The policy definition reference ID list when the associated policy assignment is an assignment of a policy set definition.
- exemption
Category string The category of this policy exemption. Possible values are
Waiver
andMitigated
.- policy
Assignment stringId The ID of the Policy Assignment to be exempted at the specified Scope. Changing this forces a new resource to be created.
- resource
Id string The Resource ID where the Policy Exemption should be applied. Changing this forces a new resource to be created.
- description string
A description to use for this Policy Exemption.
- display
Name string A friendly display name to use for this Policy Exemption.
- expires
On string The expiration date and time in UTC ISO 8601 format of this policy exemption.
- metadata string
The metadata for this policy exemption. This is a JSON string representing additional metadata that should be stored with the policy exemption.
- name string
The name of the Policy Exemption. Changing this forces a new resource to be created.
- policy
Definition string[]Reference Ids The policy definition reference ID list when the associated policy assignment is an assignment of a policy set definition.
- exemption_
category str The category of this policy exemption. Possible values are
Waiver
andMitigated
.- policy_
assignment_ strid The ID of the Policy Assignment to be exempted at the specified Scope. Changing this forces a new resource to be created.
- resource_
id str The Resource ID where the Policy Exemption should be applied. Changing this forces a new resource to be created.
- description str
A description to use for this Policy Exemption.
- display_
name str A friendly display name to use for this Policy Exemption.
- expires_
on str The expiration date and time in UTC ISO 8601 format of this policy exemption.
- metadata str
The metadata for this policy exemption. This is a JSON string representing additional metadata that should be stored with the policy exemption.
- name str
The name of the Policy Exemption. Changing this forces a new resource to be created.
- policy_
definition_ Sequence[str]reference_ ids The policy definition reference ID list when the associated policy assignment is an assignment of a policy set definition.
- exemption
Category String The category of this policy exemption. Possible values are
Waiver
andMitigated
.- policy
Assignment StringId The ID of the Policy Assignment to be exempted at the specified Scope. Changing this forces a new resource to be created.
- resource
Id String The Resource ID where the Policy Exemption should be applied. Changing this forces a new resource to be created.
- description String
A description to use for this Policy Exemption.
- display
Name String A friendly display name to use for this Policy Exemption.
- expires
On String The expiration date and time in UTC ISO 8601 format of this policy exemption.
- metadata String
The metadata for this policy exemption. This is a JSON string representing additional metadata that should be stored with the policy exemption.
- name String
The name of the Policy Exemption. Changing this forces a new resource to be created.
- policy
Definition List<String>Reference Ids The policy definition reference ID list when the associated policy assignment is an assignment of a policy set definition.
Outputs
All input properties are implicitly available as output properties. Additionally, the ResourcePolicyExemption 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 ResourcePolicyExemption Resource
Get an existing ResourcePolicyExemption 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?: ResourcePolicyExemptionState, opts?: CustomResourceOptions): ResourcePolicyExemption
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
description: Optional[str] = None,
display_name: Optional[str] = None,
exemption_category: Optional[str] = None,
expires_on: Optional[str] = None,
metadata: Optional[str] = None,
name: Optional[str] = None,
policy_assignment_id: Optional[str] = None,
policy_definition_reference_ids: Optional[Sequence[str]] = None,
resource_id: Optional[str] = None) -> ResourcePolicyExemption
func GetResourcePolicyExemption(ctx *Context, name string, id IDInput, state *ResourcePolicyExemptionState, opts ...ResourceOption) (*ResourcePolicyExemption, error)
public static ResourcePolicyExemption Get(string name, Input<string> id, ResourcePolicyExemptionState? state, CustomResourceOptions? opts = null)
public static ResourcePolicyExemption get(String name, Output<String> id, ResourcePolicyExemptionState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- Description string
A description to use for this Policy Exemption.
- Display
Name string A friendly display name to use for this Policy Exemption.
- Exemption
Category string The category of this policy exemption. Possible values are
Waiver
andMitigated
.- Expires
On string The expiration date and time in UTC ISO 8601 format of this policy exemption.
- Metadata string
The metadata for this policy exemption. This is a JSON string representing additional metadata that should be stored with the policy exemption.
- Name string
The name of the Policy Exemption. Changing this forces a new resource to be created.
- Policy
Assignment stringId The ID of the Policy Assignment to be exempted at the specified Scope. Changing this forces a new resource to be created.
- Policy
Definition List<string>Reference Ids The policy definition reference ID list when the associated policy assignment is an assignment of a policy set definition.
- Resource
Id string The Resource ID where the Policy Exemption should be applied. Changing this forces a new resource to be created.
- Description string
A description to use for this Policy Exemption.
- Display
Name string A friendly display name to use for this Policy Exemption.
- Exemption
Category string The category of this policy exemption. Possible values are
Waiver
andMitigated
.- Expires
On string The expiration date and time in UTC ISO 8601 format of this policy exemption.
- Metadata string
The metadata for this policy exemption. This is a JSON string representing additional metadata that should be stored with the policy exemption.
- Name string
The name of the Policy Exemption. Changing this forces a new resource to be created.
- Policy
Assignment stringId The ID of the Policy Assignment to be exempted at the specified Scope. Changing this forces a new resource to be created.
- Policy
Definition []stringReference Ids The policy definition reference ID list when the associated policy assignment is an assignment of a policy set definition.
- Resource
Id string The Resource ID where the Policy Exemption should be applied. Changing this forces a new resource to be created.
- description String
A description to use for this Policy Exemption.
- display
Name String A friendly display name to use for this Policy Exemption.
- exemption
Category String The category of this policy exemption. Possible values are
Waiver
andMitigated
.- expires
On String The expiration date and time in UTC ISO 8601 format of this policy exemption.
- metadata String
The metadata for this policy exemption. This is a JSON string representing additional metadata that should be stored with the policy exemption.
- name String
The name of the Policy Exemption. Changing this forces a new resource to be created.
- policy
Assignment StringId The ID of the Policy Assignment to be exempted at the specified Scope. Changing this forces a new resource to be created.
- policy
Definition List<String>Reference Ids The policy definition reference ID list when the associated policy assignment is an assignment of a policy set definition.
- resource
Id String The Resource ID where the Policy Exemption should be applied. Changing this forces a new resource to be created.
- description string
A description to use for this Policy Exemption.
- display
Name string A friendly display name to use for this Policy Exemption.
- exemption
Category string The category of this policy exemption. Possible values are
Waiver
andMitigated
.- expires
On string The expiration date and time in UTC ISO 8601 format of this policy exemption.
- metadata string
The metadata for this policy exemption. This is a JSON string representing additional metadata that should be stored with the policy exemption.
- name string
The name of the Policy Exemption. Changing this forces a new resource to be created.
- policy
Assignment stringId The ID of the Policy Assignment to be exempted at the specified Scope. Changing this forces a new resource to be created.
- policy
Definition string[]Reference Ids The policy definition reference ID list when the associated policy assignment is an assignment of a policy set definition.
- resource
Id string The Resource ID where the Policy Exemption should be applied. Changing this forces a new resource to be created.
- description str
A description to use for this Policy Exemption.
- display_
name str A friendly display name to use for this Policy Exemption.
- exemption_
category str The category of this policy exemption. Possible values are
Waiver
andMitigated
.- expires_
on str The expiration date and time in UTC ISO 8601 format of this policy exemption.
- metadata str
The metadata for this policy exemption. This is a JSON string representing additional metadata that should be stored with the policy exemption.
- name str
The name of the Policy Exemption. Changing this forces a new resource to be created.
- policy_
assignment_ strid The ID of the Policy Assignment to be exempted at the specified Scope. Changing this forces a new resource to be created.
- policy_
definition_ Sequence[str]reference_ ids The policy definition reference ID list when the associated policy assignment is an assignment of a policy set definition.
- resource_
id str The Resource ID where the Policy Exemption should be applied. Changing this forces a new resource to be created.
- description String
A description to use for this Policy Exemption.
- display
Name String A friendly display name to use for this Policy Exemption.
- exemption
Category String The category of this policy exemption. Possible values are
Waiver
andMitigated
.- expires
On String The expiration date and time in UTC ISO 8601 format of this policy exemption.
- metadata String
The metadata for this policy exemption. This is a JSON string representing additional metadata that should be stored with the policy exemption.
- name String
The name of the Policy Exemption. Changing this forces a new resource to be created.
- policy
Assignment StringId The ID of the Policy Assignment to be exempted at the specified Scope. Changing this forces a new resource to be created.
- policy
Definition List<String>Reference Ids The policy definition reference ID list when the associated policy assignment is an assignment of a policy set definition.
- resource
Id String The Resource ID where the Policy Exemption should be applied. Changing this forces a new resource to be created.
Import
Policy Exemptions can be imported using the resource id
, e.g.
$ pulumi import azure:core/resourcePolicyExemption:ResourcePolicyExemption exemption1 /subscriptions/00000000-0000-0000-000000000000/resourceGroups/resGroup1/providers/Microsoft.Authorization/policyExemptions/exemption1
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
azurerm
Terraform Provider.