-
Notifications
You must be signed in to change notification settings - Fork 164
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
Azure Recovery Services Vault InvalidRestApiParameter #702
Comments
This sounds more like a resource provider issue than AzOps. Can you share your template with us? Although Bicep Example: resource vault 'Microsoft.RecoveryServices/vaults@2022-09-10' = {
name: 'myvault'
location: 'westeurope'
properties: {}
} ARM example {
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"resources": [
{
"type": "Microsoft.RecoveryServices/vaults",
"apiVersion": "2022-09-10",
"name": "myvault",
"location": "westeurope",
"properties": {}
}
] |
I was not able to share the template at the moment. I will get back to you as soon as possible! |
@buys-stash - any updates? |
In addition to what @buys-stash already mentioned for version
|
Describe the bug
When deploying the Microsoft.RecoveryServices/vaults resourceType gives the error "InvalidRestApiParameter - properties parameter is invalid. Please provide a valid properties".
Steps to reproduce
I even reproduced it by doing the -WhatIf with the JSON-template coming from the AzOps Pull.
Screenshots
The text was updated successfully, but these errors were encountered: