My azure function has an arm template with a connectionStrings
section:
],
"connectionStrings":[
{
"name":"ConnectionString",
"value":"[parameters('ConnectionString')]"
}
]
I’m using an ARM Template deployment and overriding the parameter like so:
When I look at the portal to see how it was deployed, I’m seeing that it is blank and labeled as MySQL (even though this is a sql server connection string)
This connection string is stored as a secret inside the of the release pipeline variables:
Server=tcp:sxxxxxxxxx-dev-centralus-001.database.windows.net,1433;Initial Catalog=xxxxxxxx-dev-centralus-001;Encrypt=True;TrustServerCertificate=False;Connection Timeout=30;Authentication="Active Directory Default";
Why is the connection string deployed as blank?