Reputation: 657
In below which one has better security for storing sensitve data like db passwords, connection strings.
I am using option 1.
If KeyVault approach is more secure than secure variable approach, I am thinking to migrate to KeyVault, otherwise continue to using as is.
I am currently
Upvotes: 1
Views: 335
Reputation: 3129
As Anatoly Mironov suggested in the blog: Azure Key Vault vs. Pipeline Variables | CHUVASH.eu, using pipeline variables is more faster, easier to configure and secure across the pipeline as pipeline administrators of that project can alter the pipeline steps
The pros of using Azure Key Vault are:
The cons of using Azure Key Vault are:
Using Pipeline variables is more secure when compared to Azure Key Vault
Upvotes: 2