Jacob
Jacob

Reputation: 689

How secure is the Azure Pipelines Agent

How secure are the Azure Pipelines hosted Agents and can they be used for more sensitive tasks like code signing?

Upvotes: 2

Views: 181

Answers (1)

ZachChilders
ZachChilders

Reputation: 425

Consider using container jobs to run your builds. This ensures that everything is done within a disposable container and removed once your task is over. You can inject secrets via Azure KeyVault.

Upvotes: 1

Related Questions