Skip to content

Latest commit

 

History

History
135 lines (107 loc) · 2.46 KB

azuredevops_branch_policy_comment_resolution.md

File metadata and controls

135 lines (107 loc) · 2.46 KB

azuredevops_branch_policy_comment_resolution

back

Index

Terraform

terraform {
  required_providers {
    azuredevops = ">= 0.1.3"
  }
}

top

Example Usage

module "azuredevops_branch_policy_comment_resolution" {
  source = "./modules/azuredevops/r/azuredevops_branch_policy_comment_resolution"

  # blocking - (optional) is a type of bool
  blocking = null
  # enabled - (optional) is a type of bool
  enabled = null
  # project_id - (required) is a type of string
  project_id = null

  settings = [{
    scope = [{
      match_type     = null
      repository_id  = null
      repository_ref = null
    }]
  }]
}

top

Variables

variable "blocking" {
  description = "(optional)"
  type        = bool
  default     = null
}

variable "enabled" {
  description = "(optional)"
  type        = bool
  default     = null
}

variable "project_id" {
  description = "(required)"
  type        = string
}

variable "settings" {
  description = "nested block: NestingList, min items: 1, max items: 1"
  type = set(object(
    {
      scope = list(object(
        {
          match_type     = string
          repository_id  = string
          repository_ref = string
        }
      ))
    }
  ))
}

top

Resource

resource "azuredevops_branch_policy_comment_resolution" "this" {
  # blocking - (optional) is a type of bool
  blocking = var.blocking
  # enabled - (optional) is a type of bool
  enabled = var.enabled
  # project_id - (required) is a type of string
  project_id = var.project_id

  dynamic "settings" {
    for_each = var.settings
    content {

      dynamic "scope" {
        for_each = settings.value.scope
        content {
          # match_type - (optional) is a type of string
          match_type = scope.value["match_type"]
          # repository_id - (optional) is a type of string
          repository_id = scope.value["repository_id"]
          # repository_ref - (optional) is a type of string
          repository_ref = scope.value["repository_ref"]
        }
      }

    }
  }

}

top

Outputs

output "id" {
  description = "returns a string"
  value       = azuredevops_branch_policy_comment_resolution.this.id
}

output "this" {
  value = azuredevops_branch_policy_comment_resolution.this
}

top