skip to Main Content

osdisk.name not allowed in azure bicep

I have recently deployed windows VM using azure bicep. Today i have updated some NSG rules. tried to run .bicep file its shows below error. {"code":"Deployment Failed","details":[{"code":"PropertyChangeNotAllowed","target":"osDisk.name","message":"Changing property 'osDisk.name' is not allowed."}]} Note : iam using VM module How to…

VIEW QUESTION

How to setup java spring boot application to send message to Azure service bus Topic

I am asking this question here to get help from Microsoft or community I want to send messages to a topic using spring boot application The azure page is service bus My app properties spring.cloud.azure.servicebus.namespace=<<some name>> spring.cloud.azure.servicebus.entity-name=<<some topic>> spring.cloud.azure.servicebus.processor.subscription-name=<<somesub>> spring.cloud.azure.servicebus.entity-type=topic…

VIEW QUESTION

Azure – wrong Az.Acoounts version being used

I have these tasks in a pipeline I'm using that is failing because it is using Az.Accounts version earlier than 2.19.0 (2.17.0) - task: PowerShell@2 displayName: 'Install Az.Accounts' inputs: pwsh: true targetType: 'inline' script: 'Install-Module -Name Az.Accounts -RequiredVersion 2.19.0 -Repository…

VIEW QUESTION

Create pipleine in Azure devops by rest API failed – Value cannot be null. Parameter name: repositoryName

I am tring to create Azure devops (tfs) Pipeline by rets API as described here: https://learn.microsoft.com/en-us/rest/api/azure/devops/pipelines/pipelines/create?view=azure-devops-rest-6.0 Request url: https://tfs.xxx/tfs/Projects/xxx/_apis/pipelines?api-version=6.0-preview Request body: { "folder": null, "name": "pipeline-made-by-api", "configuration": { "type": "yaml", "path": "build.yaml", "repository": { "id": "xxx", "name": "xxx-repo", "type": "azureReposGit"…

VIEW QUESTION
Back To Top
Search