library
turbot/pagerduty
OverviewPipelines
0
Triggers
0
Variables
GitHub

Pipeline: Create Status Update on Incident

Create a new status update for the specified incident.

Run the pipeline

To run this pipeline from your terminal:

flowpipe pipeline run pagerduty.pipeline.create_status_update_on_incident \
--arg 'message=<string>' \
--arg 'incident_id=<string>' \
--arg 'from=<string>'

Use this pipeline

To call this pipeline from your pipeline, use a step:

step "pipeline" "step_name" {
pipeline = pagerduty.pipeline.create_status_update_on_incident
args = {
message = <string>
incident_id = <string>
from = <string>
}
}

Params

NameTypeRequiredDescriptionDefault
conn
connection.pagerduty
YesName of PagerDuty connection to use. If not provided, the default PagerDuty connection will be used.connection.pagerduty.default
message
string
YesThe message to be posted as a status update.-
incident_id
string
YesThe ID of the incident.-
from
string
YesThe email address of a valid user associated with the account making the request.-

Outputs

NameDescription
status_updateThe new status update for the specified incident.

Tags

recommended = true