Bicep - Outputting connection string
One of the nice touches of Bicep are some of the helpers it provides you, specifically the environment() helper. This provides information such as Azure endpoints to save you hard-coding it. In my recent journey in to deploying SQL Database, I wanted to output the connection string. Naturally, I did what I do with ARM which is build up the connection string myself, as below: output MyConnecti...
One of the nice touches of Bicep are some of the helpers it provides you, specifically the environment() helper. This provides information such as Azure endpoints to save you hard-coding it. In my recent journey in to deploying SQL Database, I wanted to output the connection string. Naturally, I...