Skip to content

Latest commit

 

History

History
200 lines (171 loc) · 10.8 KB

File metadata and controls

200 lines (171 loc) · 10.8 KB
resource "azurerm_container_registry_task" "acr_task" {
  for_each              = { for task in var.registry_tasks : task.name => task }
  name                  = each.value.name
  container_registry_id = each.value.acr_id
  agent_pool_name       = try(each.value.agent_pool_name, null)
  enabled               = try(each.value.enabled, true)
  log_template          = try(each.value.log_template, null)
  tags                  = each.value.tags
  is_system_task        = try(each.value.is_system_task, null)


  dynamic "agent_setting" {
    for_each = each.value.agent_setting != null ? [each.value.agent_setting] : []
    content {
      cpu = agent_setting.value.cpu
    }
  }

  dynamic "base_image_trigger" {
    for_each = each.value.base_image_trigger != null ? [each.value.base_image_trigger] : []
    content {
      name                        = base_image_trigger.value.name
      type                        = base_image_trigger.value.type
      enabled                     = base_image_trigger.value.enabled
      update_trigger_endpoint     = base_image_trigger.value.update_trigger_endpoint
      update_trigger_payload_type = base_image_trigger.value.update_trigger_payload_type
    }
  }

  dynamic "docker_step" {
    for_each = each.value.docker_step != null ? [each.value.docker_step] : []
    content {
      context_access_token = docker_step.value.context_access_token
      context_path         = docker_step.value.context_path
      dockerfile_path      = docker_step.value.dockerfile_path
      arguments            = docker_step.value.arguments
      secret_arguments     = docker_step.value.secret_arguments
      image_names          = docker_step.value.image_names
      cache_enabled        = docker_step.value.cache_enabled
      push_enabled         = docker_step.value.push_enabled
      target               = docker_step.value.target
    }
  }

  dynamic "encoded_step" {
    for_each = each.value.encoded_step != null ? [each.value.encoded_step] : []
    content {
      task_content         = encoded_step.value.task_content
      context_access_token = encoded_step.value.context_access_token
      context_path         = encoded_step.value.context_path
      secret_values        = encoded_step.value.secret_values
      value_content        = encoded_step.value.value_content
      values               = encoded_step.value.values
    }
  }

  dynamic "file_step" {
    for_each = each.value.file_step != null ? [each.value.file_step] : []
    content {
      task_file_path       = file_step.value.task_file_path
      context_access_token = file_step.value.context_access_token
      context_path         = file_step.value.context_path
      secret_values        = file_step.value.secret_values
      value_file_path      = file_step.value.value_file_path
      values               = file_step.value.values
    }
  }

  dynamic "platform" {
    for_each = each.value.platform != null ? [each.value.platform] : []
    content {
      os           = platform.value.os
      architecture = platform.value.architecture
      variant      = platform.value.variant
    }
  }

  dynamic "registry_credential" {
    for_each = each.value.registry_credential != null ? [each.value.registry_credential] : []
    content {
      dynamic "source" {
        for_each = registry_credential.value.source != null ? [registry_credential.value.source] : []
        content {
          login_mode = source.value.login_mode
        }
      }

      dynamic "custom" {
        for_each = registry_credential.value.custom != null ? [registry_credential.value.custom] : []
        content {
          login_server = custom.value.login_server
          identity     = custom.value.identity
          username     = custom.value.username
          password     = custom.value.password
        }
      }
    }
  }

  dynamic "source_trigger" {
    for_each = each.value.source_trigger != null ? [each.value.source_trigger] : []
    content {
      name           = source_trigger.value.name
      events         = source_trigger.value.events
      repository_url = source_trigger.value.repository_url
      source_type    = source_trigger.value.source_type
      branch         = source_trigger.value.branch
      enabled        = source_trigger.value.enabled

      dynamic "authentication" {
        for_each = source_trigger.value.authentication != null ? [source_trigger.value.authentication] : []
        content {
          token             = authentication.value.token
          token_type        = authentication.value.token_type
          expire_in_seconds = authentication.value.expire_in_seconds
          refresh_token     = authentication.value.refresh_token
          scope             = authentication.value.scope
        }
      }
    }
  }

  dynamic "timer_trigger" {
    for_each = each.value.timer_trigger != null ? [each.value.timer_trigger] : []
    content {
      name     = timer_trigger.value.name
      schedule = timer_trigger.value.schedule
      enabled  = timer_trigger.value.enabled
    }
  }


  dynamic "identity" {
    for_each = each.value.identity_type == "SystemAssigned" ? [each.value.identity_type] : []
    content {
      type = each.value.identity_type
    }
  }

  dynamic "identity" {
    for_each = each.value.identity_type == "SystemAssigned, UserAssigned" ? [each.value.identity_type] : []
    content {
      type         = each.value.identity_type
      identity_ids = try(each.value.identity_ids, [])
    }
  }

  dynamic "identity" {
    for_each = each.value.identity_type == "UserAssigned" ? [each.value.identity_type] : []
    content {
      type         = each.value.identity_type
      identity_ids = length(try(each.value.identity_ids, [])) > 0 ? each.value.identity_ids : []
    }
  }
}

resource "azurerm_container_registry_task_schedule_run_now" "schedule_run_now" {
  for_each                   = { for task in var.registry_tasks : task.name => task if task.schedule_run_now == true }
  container_registry_task_id = azurerm_container_registry_task.acr_task[each.key].id
}

Requirements

No requirements.

Providers

Name Version
azurerm n/a

Modules

No modules.

Resources

Name Type
azurerm_container_registry_task.acr_task resource
azurerm_container_registry_task_schedule_run_now.schedule_run_now resource

Inputs

Name Description Type Default Required
registry_tasks List of registry tasks.
list(object({
name = string
acr_id = string
agent_pool_name = optional(string)
enabled = optional(bool)
log_template = optional(string)
tags = map(string)
is_system_task = optional(bool)
agent_setting = optional(object({
cpu = number
}))
base_image_trigger = optional(object({
name = string
type = string
enabled = bool
update_trigger_endpoint = string
update_trigger_payload_type = string
}))
docker_step = optional(object({
context_access_token = string
context_path = string
dockerfile_path = string
arguments = optional(map(string), {})
secret_arguments = optional(map(string), {})
image_names = list(string)
cache_enabled = optional(bool, true)
push_enabled = optional(bool, true)
enabled = optional(bool, true)
target = optional(string)
}))
encoded_step = optional(object({
task_content = string
context_access_token = string
context_path = string
secret_values = list(string)
value_content = string
values = list(string)
}))
file_step = optional(object({
task_file_path = string
context_access_token = string
context_path = string
secret_values = list(string)
value_file_path = string
values = list(string)
}))
platform = optional(object({
os = string
architecture = optional(string)
variant = optional(string)
}))
registry_credential = optional(object({
source = optional(object({
login_mode = string
}))
custom = optional(object({
login_server = string
identity = string
username = string
password = string
}))
}))
source_trigger = optional(object({
name = string
events = list(string)
repository_url = string
source_type = string
branch = string
enabled = bool
authentication = optional(object({
token = string
token_type = string
expire_in_seconds = number
refresh_token = string
scope = string
}))
}))
timer_trigger = optional(object({
name = string
schedule = string
enabled = bool
}))
identity_type = string
identity_ids = optional(list(string))
schedule_run_now = optional(bool, true)
}))
[] no

Outputs

Name Description
acr_task_enabled_statuses The enabled statuses of the Azure Container Registry tasks.
acr_task_ids The IDs of the Azure Container Registry tasks.
acr_task_names The names of the Azure Container Registry tasks.
acr_task_principal_ids The Principal IDs associated with the Managed Service Identities of the Azure Container Registry tasks.
acr_task_tenant_ids The Tenant IDs associated with the Managed Service Identities of the Azure Container Registry tasks.
schedule_run_now_ids The IDs of the Azure Container Registry task schedule run now.