-
I'm trying to publish my aspire application to azure, but I get an error:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 13 replies
-
You don’t need to create the manifest. The toolchain does that on your behalf. As for the error, go to the command line and run azd infra synth in the app host folder. That will show the details of the generated bicep that we can analyze |
Beta Was this translation helpful? Give feedback.
its right there:
resource chatcompletionChatcompletionStore 'Microsoft.App/managedEnvironments/storages@2023-05-01' = {
parent: containerAppEnvironment
name: take('${toLower('chatcompletion')}-${toLower('chatcompletion')}', 32)
properties: {
azureFile: {
shareName: '${toLower('chatcompletion')}-${toLower('chatcompletion')}'
accountName: storageVolume.name
accountKey: storageVolume.listKeys().keys[0].value
accessMode: 'ReadWrite'
}
}
}
The share name property is too long.