Questions tagged [azure-resource-group]

275 questions
4
votes
2 answers

New-AzureRmResourceGroupDeployment : A parameter cannot be found that matches parameter name '_artifactsLocationSasToken'

I was changing an ARM template (including linked templates) that was working for months. After building successfully, when deploying I got the error New-AzureRmResourceGroupDeployment : A parameter cannot be found that matches parameter name…
Kai Walter
  • 3,485
  • 2
  • 32
  • 62
3
votes
2 answers

Are both AzureResourceGroupDeployment and AzureResourceManagerTemplateDeployment same?

Are both AzureResourceGroupDeployment and AzureResourceManagerTemplateDeployment same? - task: AzureResourceManagerTemplateDeployment@3 displayName: 'deploy using AzureResourceManagerTemplateDeployment' inputs: …
3
votes
1 answer

az tag update ERROR: (MissingSubscription) The request did not have a subscription or a valid tenant level resource provider

I am trying to set a tag named "GitBranch" on an Azure Resource Group: When I call the command in PowerShell window - az tag update --resource-id "/subscriptions/79ca5b...7f/resourceGroups/ccg-afarber2" --subscription "79ca5b...7f" --operation…
Alexander Farber
  • 21,519
  • 75
  • 241
  • 416
3
votes
1 answer

Resource group '$system' could not be found on Azure

I have found $system resource group on cost analysis and it has some amount charged. But I couldn't find the resource or any log regarding the resource. What is this $system resource and how its created. How to get logs of it.
Nithin kn
  • 33
  • 4
3
votes
1 answer

Deploying node to AKS cluster using azure-sdk-for-python

I have so far been unable to find any azure library for creating a node within an AKS cluster. I can use the azure cli, but my goal is to use python. I can create the resource and resource groups using the azure python SDK - …
3
votes
1 answer

Looping through values in ARM templates

I've been working on an issue I'm having with ARM templates for over a day now, and seem to be stuck, so asking on SO in case anyone can help. To describe the issue, I've got an existing Azure Key Vault setup, and wish to add a number of access…
3
votes
2 answers

How can I resolve a 'resource is not defined in the template.' error in an ARM template?

I'm trying to deploy a new VM into a new resource group. The NIC that I'm using for the VM will belong to the new resource group and is to be associated with a subnet from a VNet in another resource group. (this is currently running in Azure, I've…
Joel Percy
  • 33
  • 1
  • 5
3
votes
1 answer

ARM template for adding runbooks and modules

Currently I am uploading manually custom modules for azure runtime automation runbooks in the azure portal. Then I also create manually a runbook which executes my custom module. I would like to do this via an ARM script. I assume everything you can…
3
votes
3 answers

Error uploading .pfx certificate to Azure Web app using ARM template from VSTS

I'm using a Azure Resource Manager(ARM) template to create and update a resource group in a release definition in Visual Studio Team Services(VSTS). I'm using the same template to upload the .pfx certificate to the web app. For the first deployment…
3
votes
1 answer

ARM: The easiest way to recreate everything in a resource group into another RG in the same subscription?

I have created a relatively complex IaaS environment in one of my resource groups. The environment is working very well. Now I need to re-build the same environment in another RG for testing and validation. What would be the easiest way to re-create…
Allan Xu
  • 7,998
  • 11
  • 51
  • 122
2
votes
1 answer

Preventing inheritance of delete lock on resource group

I would like to place a delete lock on an Azure resource group so that the resource group itself can't be deleted -- but there should not be restriction on deletion of any resources residing in the group. The problem is that if I place such a delete…
Dhiraj
  • 3,396
  • 4
  • 41
  • 80
2
votes
1 answer

How to Replicate an Azure Resource Group

I have built a system to store data collected by IoT devices in CosmosDB and display it in a web application. I am looking for a simple way to duplicate the resource group including the resources. The system overview and resources included in the…
2
votes
1 answer

can't delete resource group

az group delete -n blah -y yields: Operation returned an invalid status 'Conflict' there's an old Send Grid resource in the group. I've tried deleting that via the portal & I get: Deletion of your SendGrid Account failed.
spottedmahn
  • 14,823
  • 13
  • 108
  • 178
2
votes
2 answers

How to delete resources of an Azure subscription level deployment

Is there a recommended and deterministic way to delete resources created by a subscription level deployment ? So far I see a straightforward way only when the subscription level deployment contains a single resource group. In that case deleting the…
2
votes
2 answers

Share App Service plan in different azure resource group

I have two web apps in different Resource Groups. I want to use a shared App Service Plan. Please guide how this can be done, When I try to use "Change Service Plan" I can not see another resource group service plan. Both Resource groups are in same…
1 2
3
18 19