1. Packages
  2. Packages
  3. Newrelic Provider
  4. API Docs
  5. Dashboard
Viewing docs for New Relic v4.20.0 (Older version)
published on Monday, Mar 9, 2026 by Pulumi
newrelic logo
Viewing docs for New Relic v4.20.0 (Older version)
published on Monday, Mar 9, 2026 by Pulumi

    New Relic legacy Dashboards reached end of life Wednesday July 28, 2021.

    This resource has been removed.

    For more information, click here

    Create Dashboard Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Dashboard(name: string, args: DashboardArgs, opts?: CustomResourceOptions);
    @overload
    def Dashboard(resource_name: str,
                  args: DashboardArgs,
                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def Dashboard(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  title: Optional[str] = None,
                  editable: Optional[str] = None,
                  filter: Optional[DashboardFilterArgs] = None,
                  grid_column_count: Optional[int] = None,
                  icon: Optional[str] = None,
                  visibility: Optional[str] = None,
                  widgets: Optional[Sequence[DashboardWidgetArgs]] = None)
    func NewDashboard(ctx *Context, name string, args DashboardArgs, opts ...ResourceOption) (*Dashboard, error)
    public Dashboard(string name, DashboardArgs args, CustomResourceOptions? opts = null)
    public Dashboard(String name, DashboardArgs args)
    public Dashboard(String name, DashboardArgs args, CustomResourceOptions options)
    
    type: newrelic:Dashboard
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args DashboardArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args DashboardArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args DashboardArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DashboardArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DashboardArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var dashboardResource = new NewRelic.Dashboard("dashboardResource", new()
    {
        Title = "string",
        Editable = "string",
        Filter = new NewRelic.Inputs.DashboardFilterArgs
        {
            EventTypes = new[]
            {
                "string",
            },
            Attributes = new[]
            {
                "string",
            },
        },
        GridColumnCount = 0,
        Icon = "string",
        Visibility = "string",
        Widgets = new[]
        {
            new NewRelic.Inputs.DashboardWidgetArgs
            {
                Row = 0,
                Column = 0,
                Visualization = "string",
                Title = "string",
                EndTime = 0,
                OrderBy = "string",
                EntityIds = new[]
                {
                    0,
                },
                Facet = "string",
                Height = 0,
                Limit = 0,
                Metrics = new[]
                {
                    new NewRelic.Inputs.DashboardWidgetMetricArgs
                    {
                        Name = "string",
                        Scope = "string",
                        Units = "string",
                        Values = new[]
                        {
                            "string",
                        },
                    },
                },
                Notes = "string",
                Nrql = "string",
                AccountId = 0,
                RawMetricName = "string",
                Duration = 0,
                Source = "string",
                ThresholdRed = 0,
                ThresholdYellow = 0,
                DrilldownDashboardId = 0,
                CompareWiths = new[]
                {
                    new NewRelic.Inputs.DashboardWidgetCompareWithArgs
                    {
                        OffsetDuration = "string",
                        Presentation = new NewRelic.Inputs.DashboardWidgetCompareWithPresentationArgs
                        {
                            Color = "string",
                            Name = "string",
                        },
                    },
                },
                WidgetId = 0,
                Width = 0,
            },
        },
    });
    
    example, err := newrelic.NewDashboard(ctx, "dashboardResource", &newrelic.DashboardArgs{
    	Title:    pulumi.String("string"),
    	Editable: pulumi.String("string"),
    	Filter: &newrelic.DashboardFilterArgs{
    		EventTypes: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		Attributes: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    	},
    	GridColumnCount: pulumi.Int(0),
    	Icon:            pulumi.String("string"),
    	Visibility:      pulumi.String("string"),
    	Widgets: newrelic.DashboardWidgetArray{
    		&newrelic.DashboardWidgetArgs{
    			Row:           pulumi.Int(0),
    			Column:        pulumi.Int(0),
    			Visualization: pulumi.String("string"),
    			Title:         pulumi.String("string"),
    			EndTime:       pulumi.Int(0),
    			OrderBy:       pulumi.String("string"),
    			EntityIds: pulumi.IntArray{
    				pulumi.Int(0),
    			},
    			Facet:  pulumi.String("string"),
    			Height: pulumi.Int(0),
    			Limit:  pulumi.Int(0),
    			Metrics: newrelic.DashboardWidgetMetricArray{
    				&newrelic.DashboardWidgetMetricArgs{
    					Name:  pulumi.String("string"),
    					Scope: pulumi.String("string"),
    					Units: pulumi.String("string"),
    					Values: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    				},
    			},
    			Notes:                pulumi.String("string"),
    			Nrql:                 pulumi.String("string"),
    			AccountId:            pulumi.Int(0),
    			RawMetricName:        pulumi.String("string"),
    			Duration:             pulumi.Int(0),
    			Source:               pulumi.String("string"),
    			ThresholdRed:         pulumi.Float64(0),
    			ThresholdYellow:      pulumi.Float64(0),
    			DrilldownDashboardId: pulumi.Int(0),
    			CompareWiths: newrelic.DashboardWidgetCompareWithArray{
    				&newrelic.DashboardWidgetCompareWithArgs{
    					OffsetDuration: pulumi.String("string"),
    					Presentation: &newrelic.DashboardWidgetCompareWithPresentationArgs{
    						Color: pulumi.String("string"),
    						Name:  pulumi.String("string"),
    					},
    				},
    			},
    			WidgetId: pulumi.Int(0),
    			Width:    pulumi.Int(0),
    		},
    	},
    })
    
    var dashboardResource = new Dashboard("dashboardResource", DashboardArgs.builder()
        .title("string")
        .editable("string")
        .filter(DashboardFilterArgs.builder()
            .eventTypes("string")
            .attributes("string")
            .build())
        .gridColumnCount(0)
        .icon("string")
        .visibility("string")
        .widgets(DashboardWidgetArgs.builder()
            .row(0)
            .column(0)
            .visualization("string")
            .title("string")
            .endTime(0)
            .orderBy("string")
            .entityIds(0)
            .facet("string")
            .height(0)
            .limit(0)
            .metrics(DashboardWidgetMetricArgs.builder()
                .name("string")
                .scope("string")
                .units("string")
                .values("string")
                .build())
            .notes("string")
            .nrql("string")
            .accountId(0)
            .rawMetricName("string")
            .duration(0)
            .source("string")
            .thresholdRed(0.0)
            .thresholdYellow(0.0)
            .drilldownDashboardId(0)
            .compareWiths(DashboardWidgetCompareWithArgs.builder()
                .offsetDuration("string")
                .presentation(DashboardWidgetCompareWithPresentationArgs.builder()
                    .color("string")
                    .name("string")
                    .build())
                .build())
            .widgetId(0)
            .width(0)
            .build())
        .build());
    
    dashboard_resource = newrelic.Dashboard("dashboardResource",
        title="string",
        editable="string",
        filter={
            "event_types": ["string"],
            "attributes": ["string"],
        },
        grid_column_count=0,
        icon="string",
        visibility="string",
        widgets=[{
            "row": 0,
            "column": 0,
            "visualization": "string",
            "title": "string",
            "end_time": 0,
            "order_by": "string",
            "entity_ids": [0],
            "facet": "string",
            "height": 0,
            "limit": 0,
            "metrics": [{
                "name": "string",
                "scope": "string",
                "units": "string",
                "values": ["string"],
            }],
            "notes": "string",
            "nrql": "string",
            "account_id": 0,
            "raw_metric_name": "string",
            "duration": 0,
            "source": "string",
            "threshold_red": 0,
            "threshold_yellow": 0,
            "drilldown_dashboard_id": 0,
            "compare_withs": [{
                "offset_duration": "string",
                "presentation": {
                    "color": "string",
                    "name": "string",
                },
            }],
            "widget_id": 0,
            "width": 0,
        }])
    
    const dashboardResource = new newrelic.Dashboard("dashboardResource", {
        title: "string",
        editable: "string",
        filter: {
            eventTypes: ["string"],
            attributes: ["string"],
        },
        gridColumnCount: 0,
        icon: "string",
        visibility: "string",
        widgets: [{
            row: 0,
            column: 0,
            visualization: "string",
            title: "string",
            endTime: 0,
            orderBy: "string",
            entityIds: [0],
            facet: "string",
            height: 0,
            limit: 0,
            metrics: [{
                name: "string",
                scope: "string",
                units: "string",
                values: ["string"],
            }],
            notes: "string",
            nrql: "string",
            accountId: 0,
            rawMetricName: "string",
            duration: 0,
            source: "string",
            thresholdRed: 0,
            thresholdYellow: 0,
            drilldownDashboardId: 0,
            compareWiths: [{
                offsetDuration: "string",
                presentation: {
                    color: "string",
                    name: "string",
                },
            }],
            widgetId: 0,
            width: 0,
        }],
    });
    
    type: newrelic:Dashboard
    properties:
        editable: string
        filter:
            attributes:
                - string
            eventTypes:
                - string
        gridColumnCount: 0
        icon: string
        title: string
        visibility: string
        widgets:
            - accountId: 0
              column: 0
              compareWiths:
                - offsetDuration: string
                  presentation:
                    color: string
                    name: string
              drilldownDashboardId: 0
              duration: 0
              endTime: 0
              entityIds:
                - 0
              facet: string
              height: 0
              limit: 0
              metrics:
                - name: string
                  scope: string
                  units: string
                  values:
                    - string
              notes: string
              nrql: string
              orderBy: string
              rawMetricName: string
              row: 0
              source: string
              thresholdRed: 0
              thresholdYellow: 0
              title: string
              visualization: string
              widgetId: 0
              width: 0
    

    Dashboard Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The Dashboard resource accepts the following input properties:

    Title string
    The title of the dashboard.
    Editable string
    Determines who can edit the dashboard in an account. Valid values are all, editable_by_all, editable_by_owner, or read_only. Defaults to editable_by_all.
    Filter Pulumi.NewRelic.Inputs.DashboardFilter
    A nested block that describes a dashboard filter. Exactly one nested filter block is allowed.
    GridColumnCount int
    New Relic One supports a 3 column grid or a 12 column grid. New Relic Insights supports a 3 column grid.
    Icon string
    The icon for the dashboard.
    Visibility string
    Determines who can see the dashboard in an account. Valid values are all or owner. Defaults to all.
    Widgets List<Pulumi.NewRelic.Inputs.DashboardWidget>
    A nested block that describes a visualization. Up to 300 widget blocks are allowed in a dashboard definition.
    Title string
    The title of the dashboard.
    Editable string
    Determines who can edit the dashboard in an account. Valid values are all, editable_by_all, editable_by_owner, or read_only. Defaults to editable_by_all.
    Filter DashboardFilterArgs
    A nested block that describes a dashboard filter. Exactly one nested filter block is allowed.
    GridColumnCount int
    New Relic One supports a 3 column grid or a 12 column grid. New Relic Insights supports a 3 column grid.
    Icon string
    The icon for the dashboard.
    Visibility string
    Determines who can see the dashboard in an account. Valid values are all or owner. Defaults to all.
    Widgets []DashboardWidgetArgs
    A nested block that describes a visualization. Up to 300 widget blocks are allowed in a dashboard definition.
    title String
    The title of the dashboard.
    editable String
    Determines who can edit the dashboard in an account. Valid values are all, editable_by_all, editable_by_owner, or read_only. Defaults to editable_by_all.
    filter DashboardFilter
    A nested block that describes a dashboard filter. Exactly one nested filter block is allowed.
    gridColumnCount Integer
    New Relic One supports a 3 column grid or a 12 column grid. New Relic Insights supports a 3 column grid.
    icon String
    The icon for the dashboard.
    visibility String
    Determines who can see the dashboard in an account. Valid values are all or owner. Defaults to all.
    widgets List<DashboardWidget>
    A nested block that describes a visualization. Up to 300 widget blocks are allowed in a dashboard definition.
    title string
    The title of the dashboard.
    editable string
    Determines who can edit the dashboard in an account. Valid values are all, editable_by_all, editable_by_owner, or read_only. Defaults to editable_by_all.
    filter DashboardFilter
    A nested block that describes a dashboard filter. Exactly one nested filter block is allowed.
    gridColumnCount number
    New Relic One supports a 3 column grid or a 12 column grid. New Relic Insights supports a 3 column grid.
    icon string
    The icon for the dashboard.
    visibility string
    Determines who can see the dashboard in an account. Valid values are all or owner. Defaults to all.
    widgets DashboardWidget[]
    A nested block that describes a visualization. Up to 300 widget blocks are allowed in a dashboard definition.
    title str
    The title of the dashboard.
    editable str
    Determines who can edit the dashboard in an account. Valid values are all, editable_by_all, editable_by_owner, or read_only. Defaults to editable_by_all.
    filter DashboardFilterArgs
    A nested block that describes a dashboard filter. Exactly one nested filter block is allowed.
    grid_column_count int
    New Relic One supports a 3 column grid or a 12 column grid. New Relic Insights supports a 3 column grid.
    icon str
    The icon for the dashboard.
    visibility str
    Determines who can see the dashboard in an account. Valid values are all or owner. Defaults to all.
    widgets Sequence[DashboardWidgetArgs]
    A nested block that describes a visualization. Up to 300 widget blocks are allowed in a dashboard definition.
    title String
    The title of the dashboard.
    editable String
    Determines who can edit the dashboard in an account. Valid values are all, editable_by_all, editable_by_owner, or read_only. Defaults to editable_by_all.
    filter Property Map
    A nested block that describes a dashboard filter. Exactly one nested filter block is allowed.
    gridColumnCount Number
    New Relic One supports a 3 column grid or a 12 column grid. New Relic Insights supports a 3 column grid.
    icon String
    The icon for the dashboard.
    visibility String
    Determines who can see the dashboard in an account. Valid values are all or owner. Defaults to all.
    widgets List<Property Map>
    A nested block that describes a visualization. Up to 300 widget blocks are allowed in a dashboard definition.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Dashboard resource produces the following output properties:

    DashboardUrl string
    The URL for viewing the dashboard.
    Id string
    The provider-assigned unique ID for this managed resource.
    DashboardUrl string
    The URL for viewing the dashboard.
    Id string
    The provider-assigned unique ID for this managed resource.
    dashboardUrl String
    The URL for viewing the dashboard.
    id String
    The provider-assigned unique ID for this managed resource.
    dashboardUrl string
    The URL for viewing the dashboard.
    id string
    The provider-assigned unique ID for this managed resource.
    dashboard_url str
    The URL for viewing the dashboard.
    id str
    The provider-assigned unique ID for this managed resource.
    dashboardUrl String
    The URL for viewing the dashboard.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing Dashboard Resource

    Get an existing Dashboard resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: DashboardState, opts?: CustomResourceOptions): Dashboard
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            dashboard_url: Optional[str] = None,
            editable: Optional[str] = None,
            filter: Optional[DashboardFilterArgs] = None,
            grid_column_count: Optional[int] = None,
            icon: Optional[str] = None,
            title: Optional[str] = None,
            visibility: Optional[str] = None,
            widgets: Optional[Sequence[DashboardWidgetArgs]] = None) -> Dashboard
    func GetDashboard(ctx *Context, name string, id IDInput, state *DashboardState, opts ...ResourceOption) (*Dashboard, error)
    public static Dashboard Get(string name, Input<string> id, DashboardState? state, CustomResourceOptions? opts = null)
    public static Dashboard get(String name, Output<String> id, DashboardState state, CustomResourceOptions options)
    resources:  _:    type: newrelic:Dashboard    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    DashboardUrl string
    The URL for viewing the dashboard.
    Editable string
    Determines who can edit the dashboard in an account. Valid values are all, editable_by_all, editable_by_owner, or read_only. Defaults to editable_by_all.
    Filter Pulumi.NewRelic.Inputs.DashboardFilter
    A nested block that describes a dashboard filter. Exactly one nested filter block is allowed.
    GridColumnCount int
    New Relic One supports a 3 column grid or a 12 column grid. New Relic Insights supports a 3 column grid.
    Icon string
    The icon for the dashboard.
    Title string
    The title of the dashboard.
    Visibility string
    Determines who can see the dashboard in an account. Valid values are all or owner. Defaults to all.
    Widgets List<Pulumi.NewRelic.Inputs.DashboardWidget>
    A nested block that describes a visualization. Up to 300 widget blocks are allowed in a dashboard definition.
    DashboardUrl string
    The URL for viewing the dashboard.
    Editable string
    Determines who can edit the dashboard in an account. Valid values are all, editable_by_all, editable_by_owner, or read_only. Defaults to editable_by_all.
    Filter DashboardFilterArgs
    A nested block that describes a dashboard filter. Exactly one nested filter block is allowed.
    GridColumnCount int
    New Relic One supports a 3 column grid or a 12 column grid. New Relic Insights supports a 3 column grid.
    Icon string
    The icon for the dashboard.
    Title string
    The title of the dashboard.
    Visibility string
    Determines who can see the dashboard in an account. Valid values are all or owner. Defaults to all.
    Widgets []DashboardWidgetArgs
    A nested block that describes a visualization. Up to 300 widget blocks are allowed in a dashboard definition.
    dashboardUrl String
    The URL for viewing the dashboard.
    editable String
    Determines who can edit the dashboard in an account. Valid values are all, editable_by_all, editable_by_owner, or read_only. Defaults to editable_by_all.
    filter DashboardFilter
    A nested block that describes a dashboard filter. Exactly one nested filter block is allowed.
    gridColumnCount Integer
    New Relic One supports a 3 column grid or a 12 column grid. New Relic Insights supports a 3 column grid.
    icon String
    The icon for the dashboard.
    title String
    The title of the dashboard.
    visibility String
    Determines who can see the dashboard in an account. Valid values are all or owner. Defaults to all.
    widgets List<DashboardWidget>
    A nested block that describes a visualization. Up to 300 widget blocks are allowed in a dashboard definition.
    dashboardUrl string
    The URL for viewing the dashboard.
    editable string
    Determines who can edit the dashboard in an account. Valid values are all, editable_by_all, editable_by_owner, or read_only. Defaults to editable_by_all.
    filter DashboardFilter
    A nested block that describes a dashboard filter. Exactly one nested filter block is allowed.
    gridColumnCount number
    New Relic One supports a 3 column grid or a 12 column grid. New Relic Insights supports a 3 column grid.
    icon string
    The icon for the dashboard.
    title string
    The title of the dashboard.
    visibility string
    Determines who can see the dashboard in an account. Valid values are all or owner. Defaults to all.
    widgets DashboardWidget[]
    A nested block that describes a visualization. Up to 300 widget blocks are allowed in a dashboard definition.
    dashboard_url str
    The URL for viewing the dashboard.
    editable str
    Determines who can edit the dashboard in an account. Valid values are all, editable_by_all, editable_by_owner, or read_only. Defaults to editable_by_all.
    filter DashboardFilterArgs
    A nested block that describes a dashboard filter. Exactly one nested filter block is allowed.
    grid_column_count int
    New Relic One supports a 3 column grid or a 12 column grid. New Relic Insights supports a 3 column grid.
    icon str
    The icon for the dashboard.
    title str
    The title of the dashboard.
    visibility str
    Determines who can see the dashboard in an account. Valid values are all or owner. Defaults to all.
    widgets Sequence[DashboardWidgetArgs]
    A nested block that describes a visualization. Up to 300 widget blocks are allowed in a dashboard definition.
    dashboardUrl String
    The URL for viewing the dashboard.
    editable String
    Determines who can edit the dashboard in an account. Valid values are all, editable_by_all, editable_by_owner, or read_only. Defaults to editable_by_all.
    filter Property Map
    A nested block that describes a dashboard filter. Exactly one nested filter block is allowed.
    gridColumnCount Number
    New Relic One supports a 3 column grid or a 12 column grid. New Relic Insights supports a 3 column grid.
    icon String
    The icon for the dashboard.
    title String
    The title of the dashboard.
    visibility String
    Determines who can see the dashboard in an account. Valid values are all or owner. Defaults to all.
    widgets List<Property Map>
    A nested block that describes a visualization. Up to 300 widget blocks are allowed in a dashboard definition.

    Supporting Types

    DashboardFilter, DashboardFilterArgs

    EventTypes List<string>
    Attributes List<string>
    EventTypes []string
    Attributes []string
    eventTypes List<String>
    attributes List<String>
    eventTypes string[]
    attributes string[]
    event_types Sequence[str]
    attributes Sequence[str]
    eventTypes List<String>
    attributes List<String>

    DashboardWidget, DashboardWidgetArgs

    column Integer
    row Integer
    title String
    visualization String
    accountId Integer
    compareWiths List<DashboardWidgetCompareWith>
    drilldownDashboardId Integer
    duration Integer
    endTime Integer
    entityIds List<Integer>
    facet String
    height Integer
    limit Integer
    metrics List<DashboardWidgetMetric>
    notes String
    nrql String
    orderBy String
    rawMetricName String
    source String
    thresholdRed Double
    thresholdYellow Double
    widgetId Integer
    width Integer
    column Number
    row Number
    title String
    visualization String
    accountId Number
    compareWiths List<Property Map>
    drilldownDashboardId Number
    duration Number
    endTime Number
    entityIds List<Number>
    facet String
    height Number
    limit Number
    metrics List<Property Map>
    notes String
    nrql String
    orderBy String
    rawMetricName String
    source String
    thresholdRed Number
    thresholdYellow Number
    widgetId Number
    width Number

    DashboardWidgetCompareWith, DashboardWidgetCompareWithArgs

    DashboardWidgetCompareWithPresentation, DashboardWidgetCompareWithPresentationArgs

    Color string
    Name string
    Color string
    Name string
    color String
    name String
    color string
    name string
    color str
    name str
    color String
    name String

    DashboardWidgetMetric, DashboardWidgetMetricArgs

    Name string
    Scope string
    Units string
    Values List<string>
    Name string
    Scope string
    Units string
    Values []string
    name String
    scope String
    units String
    values List<String>
    name string
    scope string
    units string
    values string[]
    name str
    scope str
    units str
    values Sequence[str]
    name String
    scope String
    units String
    values List<String>

    Package Details

    Repository
    New Relic pulumi/pulumi-newrelic
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the newrelic Terraform Provider.
    newrelic logo
    Viewing docs for New Relic v4.20.0 (Older version)
    published on Monday, Mar 9, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.