Silessian
PlanApply for Jira Cloud
PlanApply for Jira Cloud
  • Introduction
    • 🚀About PlanApply for Jira
    • 🛸Features overview
    • 📚Use cases
    • 💿Data structure and processing
    • 💡Workflow
  • Configuration
    • Get started - app configuration
      • 1. Client configuration
      • 2. Submission and provider configuration
      • 3. Remote repositories
  • Global features
    • Designer - getting started
    • 📐Designer
      • Toolbox section
        • Toolbox
        • Templates
        • Import / Export
        • Plan details
        • Submission
        • Collaboration
    • Diagram area
      • Diagram actions
      • Importing objects
      • Adding new elements
      • Updating element details
      • Linking objects
    • 🌏Plan browser
  • Admin features
    • Workspaces
    • Remote repositories
    • Plan browser
    • Terraform console
      • Workspace tab
      • Toolbox tab
      • Terraform tab
        • Generate config
        • Plan
        • Apply
      • Transform tab
    • AI Assistant
    • Execution logs
  • Terraform Provider for Jira Cloud
    • Terraform provider for Jira cloud
      • jira-cloud Provider
      • atlcloudjira_groups (Data Source)
      • atlcloudjira_issues (Data Source)
      • atlcloudjira_users (Data Source)
      • atlcloudjira_customfield (Resource)
      • atlcloudjira_dashboard (Resource)
      • atlcloudjira_field_configuration_scheme (Resource)
      • atlcloudjira_field_configuration (Resource)
      • atlcloudjira_filter (Resource)
      • atlcloudjira_issue_link_type (Resource)
      • atlcloudjira_issue_type_scheme (Resource)
      • atlcloudjira_issue_security_scheme (Resource)
      • atlcloudjira_issue_type_screen_scheme (Resource)
      • atlcloudjira_issue_type (Resource)
      • atlcloudjira_notification_scheme (Resource)
      • atlcloudjira_priority_sequence (Resource)
      • atlcloudjira_permission_scheme (Resource)
      • atlcloudjira_priority (Resource)
      • atlcloudjira_project_component (Resource)
      • atlcloudjira_project_role (Resource)
      • atlcloudjira_project (Resource)
      • atlcloudjira_screen_scheme (Resource)
      • atlcloudjira_screen (Resource)
      • atlcloudjira_status (Resource)
      • atlcloudjira_workflow_scheme (Resource)
      • atlcloudjira_workflow (Resource)
  • Support
    • How to report a bug?
  • 🔓Security statement
Powered by GitBook
On this page
  • Example Usage
  • Schema
  • Required
  • Optional
  • Read-Only
  • Nested Schema for screens
  1. Terraform Provider for Jira Cloud
  2. Terraform provider for Jira cloud

atlcloudjira_screen_scheme (Resource)

Example Usage

import {
  to = atlcloudjira_screen_scheme.SampleScreenSchemeResource
  id = 10081
}

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

# __generated__ by Terraform from "10081"
resource "atlcloudjira_screen_scheme" "SampleScreenSchemeResource" {
  description = "Sample description"
  name        = "Sample Screen Scheme AA"
  screens = {
    create  = 10127
    default = 10125
    edit    = null
    view    = 10134
  }
}

Schema

Required

  • name (String) The name of the screen scheme.

  • screens (Attributes) The IDs of the screens for the screen types of the screen scheme. Only screens used in classic projects are accepted. (see below for nested schema)

Optional

  • description (String) The description of the screen scheme.

Read-Only

  • id (Number) The ID of the screen scheme.

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

Nested Schema for screens

Required:

  • default (Number) Default screen ID associated used at issue browsing.

Optional:

  • create (Number) Screen ID associated with Create issue action

  • edit (Number) Screen ID associated with Edit issue action

  • view (Number) Screen ID associated with View issue action

Previousatlcloudjira_project (Resource)Nextatlcloudjira_screen (Resource)