Posts

Showing posts from April, 2026

Secure Azure AI Services

Image
  Overview Ensuring the security of Azure AI services can assist in preventing data breaches and violations of user privacy related to the data involved in the solution. Azure AI services offer several layers of security that should be taken into account when developing a solution. Consider Authentication By default, access to resources within Azure AI services is limited through the use of subscription keys. Managing access to these keys is a crucial aspect of ensuring security. Regenerate Keys Regularly updating keys is essential to mitigate the risk of unauthorized users gaining access to or sharing those keys. Key regeneration can be performed through the Azure portal or by using the Azure command-line interface (CLI) command az cognitiveservices account keys regenerate. Each AI service is provided with two keys, enabling you to regenerate keys without service interruption. To accomplish this: If you're using both keys in production, change your code so that only one key is in...