Skip to content
This repository has been archived by the owner on Aug 3, 2023. It is now read-only.

T-Systems-MMS/terraform-azuredevops-pipelines

Repository files navigation

This module is deprecated. The current version can be found here https://registry.terraform.io/modules/telekom-mms/build/azuredevops/latest.

<-- This file is autogenerated, please do not change. -->

Requirements

Name Version
terraform ~> 1.2.0
azuredevops =0.2.2

Providers

Name Version
azuredevops =0.2.2

Resources

Name Type
azuredevops_build_definition.build_definition resource

Inputs

Name Description Type Default Required
build_definition resource definition, default settings are defined within locals and merged with var settings any {} no

Examples

module "pipelines" {
  source = "registry.terraform.io/T-Systems-MMS/pipelines/azuredevops"
  build_definition = {
    build_dmc = {
      name       = "service-mgmt-dmc"
      project_id = module.project.project["project_name"].id
      path       = "\\service\\build"
      repository = {
        repo_type   = "TfsGit"
        repo_id     = "repositiry_id"
        branch_name = "refs/heads/master"
        yml_path    = "pipelines/build_dmc.yml"
      }
    }
  }
}