skip to Main Content

Ubuntu – Terraform modules from another repository using a git branch as a source in a Azure DevOps pipeline with System Access token

I have a Terraform main.tf file that calls modules from another git repository. module "ModuleName" { source = "git::https://[email protected]/OrgName/SW/_git/AnotherRepoName?ref=BranchName" My Azure DevOps Pipeline Yaml code looks like below to run on ubuntu-latest. trigger: - None pool: vmImage: 'ubuntu-latest' And the…

VIEW QUESTION
Back To Top
Search