Questions tagged [azure-resource-group]
275 questions
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.…

Martin
- 818
- 9
- 20
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…

Martin
- 818
- 9
- 20
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
- 25,216
- 29
- 151
- 297
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.

Rıfat Erdem Sahin
- 1,738
- 4
- 29
- 47
0
votes
1 answer
deleting a specific value from a document in azure cosmos db nosql
In azure , when I have creating Resource Group, putting the resource group name (RG1,RG2,etc.,) in my cosmos db in an array as follows,
"id": "resourceGroup",
"rgValues": {
"name": [
"RG1",
"RG2"]}
If I want to…

sathya
- 1,982
- 1
- 20
- 37
0
votes
2 answers
How to use a DocumentDB(MongoDB) connection string as an Environment variable in an Azure Resource Management Template
I want to use a DocumentDB(MongoDB) connection string as an environment variable in an Azure Resource Management Template. Forexample i have a resource group which has a wep app and a DocumentDB(MongoDB) database.
"siteConfig": {
…

Pythonist
- 115
- 2
- 12
0
votes
1 answer
Set Azure Reserved IP on cloud service via powershell
as said in the title, I can't assign an IP to my cloud service.
I've followed a lot of forums and StackOverflow articles/posts but I've still the issue.
When I try to run
Set-AzureReservedIPAssociation -ReservedIPName primosguardo365reservedip…

Michele Ietri
- 184
- 1
- 4
- 16
0
votes
1 answer
Creating a loop to create a new resource group in Powershell
I need to create a loop that will check if a resource group name is taken or not, and if not create a new resource group with that name.
This is the code I used to try and complete this
do
{
$rg = Read-Host -Prompt "What would you like to name…

lmathurin
- 103
- 1
- 2
- 6
0
votes
2 answers
Move Azure resources to another subscription using Powershell
I am attempting to move a resource group (that contains a VM with its dependant resources e.g. network interface etc) to a new subscription and resource group. (the move works fine if done via the GUI)
My Script:
foreach ($resource in $resources)…

leo_cape
- 141
- 3
- 14
0
votes
2 answers
Azure Resource Manager: attach VHD to a VM during provisioning?
I'm trying to attach an existing VHD disk from a Storage Account to VM during Azure Resource manager provisioning with a template.
My dataDisk resource is:
"dataDisks": [
{
"name": "jmdisk",
"diskSizeGB": "100",
"lun": 0,
…

setevoy
- 4,374
- 11
- 50
- 87
0
votes
2 answers
does a tag on azure resource group gets applied to resources inside the resource group
I have a query on azure resource tagging. I have a resource group with some resources inside it. If I apply a tag on the resource group, does the same tag get applied to the resources inside that resource group? Or do I need to apply tag on each…

Rahul Bandopadhyaya
- 69
- 1
- 5
0
votes
1 answer
While deleting vm in Azure, last status that I get is 'Deleting' and that too in provisioningState field. How to get 'Deleted' status?
I am using Java api (azure-compute:version 0.9.0) to perform VM operation. I want to make sure cloud operation on VM is performed successfully. I am getting some issue in Delete operation.
While beginDeleting(async) VM, I get Future and
status in…

Rishi Anand
- 280
- 1
- 4
- 15
0
votes
2 answers
Is there any way to get Virtual Machine object by just instance name without resource Group in AzureRm in java API?
VirtualMachineGetResponse get(String resourceGroupName, String vmName) throws IOException, ServiceException, URISyntaxException;
From VirtualMachineGetResponse, I can get VirtualMachine.
Is there any way to get VirtualMachine object by just giving…

Rishi Anand
- 280
- 1
- 4
- 15
0
votes
1 answer
How can I get the resource group name from within Service Fabric on Microsoft Azure
My service can be placed on different resource groups, but needs to know the name of the resource group in order to request information about the VM Scale Sets it's running on.
How do I get the name of the Resource Group which the Fabric is in from…

MHill
- 29
- 2
- 8
0
votes
1 answer
BUG:: Azure Resource Groups Validation Rules NOT WORKING
[First of all, it is very sad that BizSpark susbcription do not have any technical support, even to inform a error like this :-((( ]
Ok, well , the error, that occurs twice creating a VirtualMachine, so replicated:
{
"error": {
"code":…

pGrnd
- 19
- 9