library
turbot/pagerduty
Get Involved
Version
Pipeline: Create Note on Incident
Create a new note for the specified incident.
Run the pipeline
To run this pipeline from your terminal:
flowpipe pipeline run pagerduty.pipeline.create_note_on_incident \ --arg 'content=<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_note_on_incident args = { content = <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 |
content | string | Yes | The note content. | - |
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 |
---|---|
note | The new note. |