rootly logo
Rootly v1.0.1, Jun 2 23

Rootly

The Rootly provider for Pulumi can be used to provision resources available in Rootly. The Rootly provider must be configured with the an API token.

Example

const rootly = require("@rootly/pulumi")

new rootly.Severity("sev0", {
  name: "SEV0",
  color: "#FF0000"
})

new rootly.Service("elasticsearch_prod", {
  name: "elasticsearch-prod",
  color: "#800080"
})

new rootly.Functionality("add_items_to_card", {
  name: "Add items to card",
  color: "#FFFFFF"
})

You could find more complete and detailed examples in the pulumi-rootly repository