Azure Resource Manager deployment output to pipeline variable converterThis extension for Azure DevOps (aka VSTS) Release Pipelines is a task which converts Azure Resource Manager (ARM) template outputs to variables that can be used in the remaining pipeline tasks. ConfigureThe task has these inputs:
ARM deployment taskThe ARM deployment task in Azure DevOps Pipelines has a lot of inputs. Near the bottom of the task settings is the "Deployment Outputs" heading. The name you enter here, will become the variable name that must be used in the ARM deployment output parser's "ARM Deployment Output" setting. FAQQ: The variables don't show up in other agent jobs. How come? A: Variables that are set in one agent job in the pipeline are not transferred to other agent jobs in the same pipeline. That is an Azure DevOps limitation. Q: SecureString and SecureObject ARM outputs don't work. Why? A: They are not output by the ARM deployment task in Azure DevOps, and thus cannot be read by this task. SecurityThe extension marks all variable contents as "secret" in Azure DevOps Services. This means that the variable values don't show up in the release logs. The extension does not store or transfer or otherwise leak your ARM Output. The full extension source is available on the GitHub project page. |