Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Parent field not supported #45

Open
Deadleg opened this issue Aug 25, 2021 · 2 comments
Open

Parent field not supported #45

Deadleg opened this issue Aug 25, 2021 · 2 comments

Comments

@Deadleg
Copy link

Deadleg commented Aug 25, 2021

We use next-gen projects so we need to set this field in order to set the epic for each task. This field is not a string and so setting it will crash the plugin.

Example:

resource "jira_issue" "pre-project-epic" {
  issue_type  = "Epic"
  project_key = var.project_key
  summary     = "Pre-project tasks"
}

resource "jira_issue" "architecture" {
  issue_type  = "Task"
  project_key = var.project_key
  summary     = "Test"
  fields      = {
    "parent" = jira_issue.pre-project-epic.issue_key
  }
}
@Deadleg
Copy link
Author

Deadleg commented Aug 25, 2021

Looks like it is worked in #40 .

@gantmane
Copy link

and not merged

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants