Map Azure DevOps Runtime Variables to Terraform Input Variables

preview_player
Показать описание
This is a recording of the March 29, 2023 virtual meetup.

In this Session, I will demonstrate -

How to Map Azure DevOps Runtime Variables to Terraform Input Variables.

Arindam Mitra

Arindam is an Azure Cloud Solutions & DevOps Architect | Technical Blogger & Speaker Focused on Cloud Adoption, Architecture, Automation, Build and Run in Azure.

Links:
Рекомендации по теме
Комментарии
Автор

Great demo and excellent solution to lead terraforming more flexible by having end user input variables, you just provide what I was exactly looking for, Also a quick hint for approval and artifact copy/download steps you may look after below options that more modern with ADO yml pipeline: # Approve
- stage: Approve
displayName: Approve
jobs:
- job: approve
displayName: Wait for approval
pool: server
steps:
timeoutInMinutes: 60
inputs:
notifyUsers: 'your email'
instructions: 'Please review the plan in 60 Minutes' and for artifacts: you may use workingDirectory: and publishPlanResults: 'Terraform Plan' inputs for each stages rather than copy/download them. Thanks again for the video

AminNiktash