Skip to content
This repository has been archived by the owner on Jul 21, 2023. It is now read-only.

Latest commit

 

History

History
34 lines (29 loc) · 1.2 KB

File metadata and controls

34 lines (29 loc) · 1.2 KB

Dashboard Resource

Creates a dashboard using widgets from dashboard_widgets data source. This resource is still in experimental status, have some limitations and can raise unexpected errors.

Example Usage

resource "appdynamics_dashboard" "test_dashboard" {
  name = "test dashboard name"
  template_entity_type = "APPLICATION_COMPONENT_NODE"
  minutes_before_anchor_time = -1
  refresh_interval = 120000
  background_color = 15856629
  height = 768
  width = 1024
  canvas_type = "CANVAS_TYPE_GRID"
  widgets = []
}

Argument Reference

Name Required Type Description Example
name yes number The name of the dashboard My dashboard
template_entity_type no string Dashboard template entity type "APPLICATION_COMPONENT_NODE"
minutes_before_anchor_time no int n/a "bob@example.com"
refresh_interval no int n/a 120000
background_color no int n/a 15856629
height no int Height of the dashboard 768
width no int Width of the dashboard 1024
canvas_type no string n/a "CANVAS_TYPE_GRID"
widgets no (default []) string[] Must come from data_source_dashboard_widget type true