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

[datadog_dashboard] Add run-workflow widget definition #1779

Merged
merged 5 commits into from
Feb 16, 2023

Conversation

DavidRobertAnsart
Copy link
Contributor

@DavidRobertAnsart DavidRobertAnsart commented Feb 15, 2023

Changes

  • Add run workflow widget definition to dashboard resource.
  • Add test and recorded cassettes for the new widget.
  • Add doc.

How to test:

  1. Build the provider locally.
  2. Try this dashboard resource:
resource "datadog_dashboard" "ordered_dashboard" {
  title       = "Run workflow terraform dashboard"
  layout_type = "ordered"
  template_variable {
    name             = "Env"
    prefix           = "Env"
    defaults         = ["*"]
    available_values = ["prod", "staging", "test"]
  }
  widget {
    run_workflow_definition {
      title       = "My workflow widget"
      title_size  = "13"
      title_align = "left"
      workflow_id = "2e055f16-8b6a-4cdd-b452-17a34c44b160"
      input {
        name  = "env"
        value = "$Env.value"
      }
    }
    widget_layout {
      x      = 0
      y      = 0
      width  = 4
      height = 4
    }
  }
  notify_list = []
  reflow_type = "fixed"
}

@DavidRobertAnsart DavidRobertAnsart marked this pull request as ready for review February 15, 2023 20:05
@DavidRobertAnsart DavidRobertAnsart requested review from a team as code owners February 15, 2023 20:05
@nkzou nkzou changed the title [Workflows] Add run-workflow widget definition to dashboard resource [datadog_dashboard] Add run-workflow widget definition Feb 15, 2023
nkzou
nkzou previously approved these changes Feb 15, 2023
Copy link

@cswatt cswatt left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

small nitpicky things

Copy link
Contributor

@DrkSephy DrkSephy left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for this contribution 🙌

@nkzou nkzou requested a review from cswatt February 16, 2023 22:04
@nkzou nkzou merged commit 88bfdf9 into master Feb 16, 2023
@nkzou nkzou deleted the david.robertansart/WF-3009/run-workflow-widget branch February 16, 2023 22:21
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

5 participants