An Azure service that automates the access and use of data across clouds without writing code.
I found the solution to this problem.
I change my ARM template.
Before:
"parameterValues": {
"connectionString": {
"type": "string",
"value": "[listKeys(resourceId(concat('Microsoft.EventHub/namespaces/',parameters('resourceType'),'/authorizationRules'),variables('namespaceName'),parameters('resourceName'),parameters('policy')),'2015-08-01').primaryConnectionString]"
}
}
After:
"parameterValues": {
"connectionString": "[listKeys(resourceId(concat('Microsoft.EventHub/namespaces/',parameters('resourceType'),'/authorizationRules'),variables('namespaceName'),parameters('resourceName'),parameters('policy')),'2015-08-01').primaryConnectionString]"
}