Resource Group Template Deployment Args
data class ResourceGroupTemplateDeploymentArgs(val debugLevel: Output<String>? = null, val deploymentMode: Output<String>? = null, val name: Output<String>? = null, val parametersContent: Output<String>? = null, val resourceGroupName: Output<String>? = null, val tags: Output<Map<String, String>>? = null, val templateContent: Output<String>? = null, val templateSpecVersionId: Output<String>? = null) : ConvertibleToJava<ResourceGroupTemplateDeploymentArgs>
Manages a Resource Group Template Deployment.
Note: This resource will automatically attempt to delete resources deployed by the ARM Template when it is deleted. This behavior can be disabled in the provider
featuresblock by setting thedelete_nested_items_during_deletionfield tofalsewithin thetemplate_deploymentblock.
Import
Resource Group Template Deployments can be imported using the resource id, e.g.
$ pulumi import azure:core/resourceGroupTemplateDeployment:ResourceGroupTemplateDeployment example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Resources/deployments/template1Content copied to clipboard
Constructors
Link copied to clipboard
fun ResourceGroupTemplateDeploymentArgs(debugLevel: Output<String>? = null, deploymentMode: Output<String>? = null, name: Output<String>? = null, parametersContent: Output<String>? = null, resourceGroupName: Output<String>? = null, tags: Output<Map<String, String>>? = null, templateContent: Output<String>? = null, templateSpecVersionId: Output<String>? = null)