library
turbot/pagerduty
Get Involved
Version
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
Name | Type | Required | Description | Default |
---|---|---|---|---|
conn | connection.pagerduty | Yes | Name of PagerDuty connection to use. If not provided, the default PagerDuty connection will be used. | connection.pagerduty.default |
message | string | Yes | The message to be posted as a status update. | - |
incident_id | string | Yes | The ID of the incident. | - |
from | string | Yes | The email address of a valid user associated with the account making the request. | - |
Outputs
Name | Description |
---|---|
status_update | The new status update for the specified incident. |
Tags
recommended = true