Questions tagged [azure-resource-group]

225 questions
0
votes
1 answer

Intune related RBAC resources by REST API

I would like to list roleAssignments for group from Intune Education that we set up a few school/groups. And I got an answer to use Azure API to list roleAssignments. (SO question) To use those APIs, it requires subscriptionId but I couldn't find…
dongseok0
  • 667
  • 2
  • 7
  • 18
0
votes
2 answers

Python code for resource groups code deletion in azure using Resource group tags

I am trying to delete the resource groups and resources in it using python code. I have tried this in powershell and it works perfect. Now my organization wanted in Python. I am really new to python and trying to write the code and failed . Here…
vin123
  • 3
  • 5
0
votes
1 answer

Azure SqlServer and SqlDatabase resource groups

I would like to use Azure to create environments under a single ResourceGroup for clients comprising: X web servers Y app servers 1 database Ideally, the database would be hosted on a server that is part of a different resource group, so I can…
0
votes
1 answer

Implementation of tags on resources in resource group using Powershell

I am trying to put tags on resources and resource group using Powershell. The problem is it remove existing tags and add the new tags. Powershell Script : Get-AzureRmResourceGroup "testvsoRG" | Set-AzureRmResourceGroup -Tag…
rAJ
  • 1,026
  • 2
  • 19
  • 46
0
votes
1 answer

Q: Creation of Azure Resource Group Project in Visual Studio 2015

I am trying to create a new Azure Resource Group Project for Creating a Logic Apps Solution in Visual Studio 2015 however I am facing the below error mentioned in the Screenshot.
0
votes
1 answer

Azure VM InternalDnsSuffix

When you create a VM in Azure and ssh to it and run 'hostname -f' you get a hostname in the format of "vmname.InternalDnsSuffix". Is there a programatic/scriptable way to get InternalDnsSuffix for a ResourceGroup/Subscription/Subnet? I know I can…
0
votes
3 answers

Setting ENV in Azure Container Instances Deployment

I tried to automate my deployment of a Docker container to an Azure resource group following the docs on https://docs.microsoft.com/en-us/azure/azure-resource-manager/resource-manager-keyvault-parameter#deploy-a-key-vault-and-secret and…
0
votes
1 answer

Azure ARM - Should Complete Deployment delete existing (child) Resources when omitted?

During a Complete Resource Group deployment, the expectation is Resources will be deleted if they are not specified in the Template. However in my case (deploying a RSG with a DNS Zone with CNAMEs), if the CNAMEs are specified via a copy/copyIndex…
0
votes
1 answer

Create Azure database in resource group programmatically using C#

I'm trying to create a Azure database using a master database as a template using C#. I have the database creation working but I cannot find a way to specify the resource group for the new database.
Terry151151
  • 125
  • 2
  • 9
0
votes
2 answers

Azure resource group Template download

I have a resource group with 20 resources(SQL, Web App ....) I could not see the Resource group template while clicking the automation script button. How can i download all the resource as a template? It has, one failed deployment resource. is…
sankara pandian
  • 335
  • 2
  • 4
  • 12
0
votes
1 answer

Using Azure Resource Group Tags in a Azure Logic Apps Workflow

I have a question about the Resource Group Tags in Azure, is it possible to fetch the tag name/values and use them in an logic app workflow? As in for example use the tag names/values in the body of a mail-action to send to a recipient? Is it…
0
votes
0 answers

Failed to reference Azure Function .net library in Visual Studio Resource Group Template

If I try to add a reference to a Azure Function .net462 library in my VS 2017 Resource group template, I get the following error: ===================== 28/09/2017 09:24:07 LimitedFunctionality System.AggregateException: One or more errors occurred.…
0
votes
0 answers

Deploy Web Apps with different dotnet targets using Azure Resource Manager Template

I'm trying to deploy a collection of web services using the Azure Resource Manager Template from Visual Studio 2017. When following the tutorial Deploy code with your infrastructurefrom Microsoft, to deploy an asp.net core 1.1 web app, I get the…
0
votes
1 answer

Cannot move selected combination of resources. The resource: 'XXX' is missing from the move request.

I have a resource group that looks like this: App Service Plan UispWestEuServerFarm contains only single app: evisserver. When I try to move evisserver together with UispWestEuServerFarm to another resource group I get an error: Cannot move…
Liero
  • 19,054
  • 16
  • 100
  • 195
0
votes
1 answer

When should we use redeploy button in Azure Resource groups

Azure resource groups give a redeploy button not sure how and when to use that. Would appreciate best practices.