An Azure service that provides templates for quick, repeatable creation of fully governed cloud subscriptions.
I just encountered this same issue using powershell. It appeared to be because I'd defined the resource group location in both my blueprint.json and assignment.json files.
eg:
blueprint.json
"resourceGroups": {
"mainRG": {
"location": "australiaeast",
"dependsOn": []
}
}
assignment.json
"resourceGroups": {
"mainRG": {
"name": "rg-myresourcegroup",
"location": "australiaeast"
}
}