bicep icon indicating copy to clipboard operation
bicep copied to clipboard

The name of the resource, with the type 'Microsoft.AppConfiguration/configurationStores/keyValues', is not valid.

Open mountain65 opened this issue 3 years ago • 0 comments

This error happens always, not matter which syntax variant I use. This is the most simple way to reproduce. According to the documentation and the samples this should work.

  resource appConfiguration 'Microsoft.AppConfiguration/configurationStores@2022-05-01' = {
  name: 'my-app-configuration'
  location: location
  tags: { }
  sku: {
    name: 'standard'
  }

  resource settingValues 'keyValues' = {
    name: 'mySetting'
    properties: {
      value: 'myValue'
      contentType: 'string'
      tags: {}
    }
  }
}

mountain65 avatar Aug 11 '22 08:08 mountain65