atlcloudjira_status (Resource)

Example Usage

import {
  to = atlcloudjira_status.SampleStatus
  id = 10004
}

# __generated__ by Terraform
# Please review these resources and move them into your main configuration files.

# __generated__ by Terraform from "10004"

resource "atlcloudjira_status" "SampleStatusWithGlobalScopeResource" {
  name            = "Sample Status"
  description     = "Sample description"
  status_category = "DONE" // Valid values: TODO, IN_PROGRESS, DONE
  status_scope = {
    project = null
    type    = "GLOBAL" // Valid values: GLOBAL, PROJECT
  }
  replace_with = 1
}

Schema

Required

  • name (String) The name of the status.

  • status_category (String) The category of the status.

Valid values: TODO, IN_PROGRESS, DONE

  • status_scope (Attributes) The scope of the status. (see below for nested schema)

Optional

  • description (String) The description of the status.

  • replace_with (Number) Helper attribute. Required while destroying resource. Status will be replaced with provided status ID in all associated_workflows to allow removal.

Read-Only

  • associated_workflows (Set of String) Return set of workflow IDs associated with status.

  • id (Number) The ID of the status.

  • last_updated (String) Timestamp of the last Terraform update of the Status.

Nested Schema for status_scope

Required:

  • type (String) The scope of the status. GLOBAL for company-managed projects and PROJECT for team-managed projects.

Valid values: PROJECT, GLOBAL

Optional:

  • project (Attributes) The scope used in team managed projects. (see below for nested schema)

Nested Schema for status_scope.project

Optional:

  • id (String) Project ID details.