Home > Software design >  Azure devops release pipeline creation using terraform
Azure devops release pipeline creation using terraform

Time:11-25

I have to create release pipeline in azure devops using terraform. I am able to create build pipeline in azure devops using terraform but for release pipeline I am not getting any resource. Can anyone help me in this? Is there any way we can create release pipelines using terraform in azure devops.

CodePudding user response:

Currently Terraform provider for Azure DevOps doesn't support release pipelines. There is a PR to add this functionality, but it's WIP and hasn't been merged yet: https://github.com/microsoft/terraform-provider-azuredevops/pull/178

CodePudding user response:

Did you see this instruction? https://azuredevopslabs.com/labs/vstsextend/terraform/

I know that terraform has two stages: terraform plan & terraform apply

Seems to me you are missing the terraform apply stage which is covered quite nicely in Exercise 3

  • Related