Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

The ID of ProximityPlacementGroup assigned in VMSS will be returned with the resource group in UPPER CASES #10016

Closed
ArcturusZhang opened this issue Jul 2, 2020 · 2 comments
Labels
Compute - VMSS Service Attention Workflow: This issue is responsible by Azure service team.

Comments

@ArcturusZhang
Copy link
Member

When creating the VMSS using compute api-version 2019-12-01 with the following body:

{
  "properties": {
     // other attribute omitted
     "proximityPlacementGroup": {
      "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/proximityPlacementGroups/ppg1"
    }
  }
}

After the successful creation, when getting the VMSS, in the response, the ID of the PPG will be converted to have a UPPER CASED resource group name, like this:

{
  "properties": {
     // other attribute omitted
     "proximityPlacementGroup": {
      "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GROUP1/proximityPlacementGroups/ppg1"
    }
  }
}
@ghost ghost added the needs-triage Workflow: This is a new issue that needs to be triaged to the appropriate team. label Jul 2, 2020
@ArcturusZhang ArcturusZhang added Compute - VMSS Service Attention Workflow: This issue is responsible by Azure service team. labels Jul 2, 2020
@ghost ghost removed the needs-triage Workflow: This is a new issue that needs to be triaged to the appropriate team. label Jul 2, 2020
@ghost
Copy link

ghost commented Jul 2, 2020

Thanks for the feedback! We are routing this to the appropriate team for follow-up. cc @Drewm3, @avirishuv.

@Drewm3
Copy link
Member

Drewm3 commented Jul 2, 2020

This is the expected behavior for the Microsoft.compute resource provider. Resource group names are not case sensitive (i.e. "myGroup" and "mygroup" are the same resource group) so in most cases the resource group name in a response from Microsoft.compute will be in all upper case.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Compute - VMSS Service Attention Workflow: This issue is responsible by Azure service team.
Projects
None yet
Development

No branches or pull requests

3 participants