rootly.WorkflowTaskSendSlackMessage
Explore with Pulumi AI
Manages workflow send_slack_message task.
Example Usage
Coming soon!
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.rootly.WorkflowIncident;
import com.pulumi.rootly.WorkflowIncidentArgs;
import com.pulumi.rootly.inputs.WorkflowIncidentTriggerParamsArgs;
import com.pulumi.rootly.WorkflowTaskSendSlackMessage;
import com.pulumi.rootly.WorkflowTaskSendSlackMessageArgs;
import com.pulumi.rootly.inputs.WorkflowTaskSendSlackMessageTaskParamsArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var notifySlackChannels = new WorkflowIncident("notifySlackChannels", WorkflowIncidentArgs.builder()
.description("Send a message to specific teams on Slack regarding the incident.")
.triggerParams(WorkflowIncidentTriggerParamsArgs.builder()
.triggers("incident_created")
.incidentStatuses("started")
.incidentConditionStatus("IS")
.build())
.enabled(true)
.build());
var sendSlackMessage = new WorkflowTaskSendSlackMessage("sendSlackMessage", WorkflowTaskSendSlackMessageArgs.builder()
.workflowId(notifySlackChannels.id())
.skipOnFailure(false)
.enabled(true)
.taskParams(WorkflowTaskSendSlackMessageTaskParamsArgs.builder()
.name("Notify team about incident")
.channels(WorkflowTaskSendSlackMessageTaskParamsChannelArgs.builder()
.id("{{ incident.slack_channel_id }}")
.name("{{ incident.slack_channel_id }}")
.build())
.text("Heads up - wanted to let your team know we have an active incident.")
.build())
.build());
}
}
Coming soon!
Coming soon!
resources:
notifySlackChannels:
type: rootly:WorkflowIncident
properties:
description: Send a message to specific teams on Slack regarding the incident.
triggerParams:
triggers:
- incident_created
incidentStatuses:
- started
incidentConditionStatus: IS
enabled: true
sendSlackMessage:
type: rootly:WorkflowTaskSendSlackMessage
properties:
workflowId: ${notifySlackChannels.id}
skipOnFailure: false
enabled: true
taskParams:
name: Notify team about incident
channels:
- id: '{{ incident.slack_channel_id }}'
name: '{{ incident.slack_channel_id }}'
text: Heads up - wanted to let your team know we have an active incident.
Create WorkflowTaskSendSlackMessage Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new WorkflowTaskSendSlackMessage(name: string, args: WorkflowTaskSendSlackMessageArgs, opts?: CustomResourceOptions);
@overload
def WorkflowTaskSendSlackMessage(resource_name: str,
args: WorkflowTaskSendSlackMessageArgs,
opts: Optional[ResourceOptions] = None)
@overload
def WorkflowTaskSendSlackMessage(resource_name: str,
opts: Optional[ResourceOptions] = None,
task_params: Optional[WorkflowTaskSendSlackMessageTaskParamsArgs] = None,
workflow_id: Optional[str] = None,
enabled: Optional[bool] = None,
name: Optional[str] = None,
position: Optional[int] = None,
skip_on_failure: Optional[bool] = None)
func NewWorkflowTaskSendSlackMessage(ctx *Context, name string, args WorkflowTaskSendSlackMessageArgs, opts ...ResourceOption) (*WorkflowTaskSendSlackMessage, error)
public WorkflowTaskSendSlackMessage(string name, WorkflowTaskSendSlackMessageArgs args, CustomResourceOptions? opts = null)
public WorkflowTaskSendSlackMessage(String name, WorkflowTaskSendSlackMessageArgs args)
public WorkflowTaskSendSlackMessage(String name, WorkflowTaskSendSlackMessageArgs args, CustomResourceOptions options)
type: rootly:WorkflowTaskSendSlackMessage
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 WorkflowTaskSendSlackMessageArgs
- 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 WorkflowTaskSendSlackMessageArgs
- 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 WorkflowTaskSendSlackMessageArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args WorkflowTaskSendSlackMessageArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args WorkflowTaskSendSlackMessageArgs
- 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 workflowTaskSendSlackMessageResource = new Rootly.WorkflowTaskSendSlackMessage("workflowTaskSendSlackMessageResource", new()
{
TaskParams = new Rootly.Inputs.WorkflowTaskSendSlackMessageTaskParamsArgs
{
Text = "string",
Actionables = new[]
{
"string",
},
BroadcastThreadReplyToChannel = false,
Channels = new[]
{
new Rootly.Inputs.WorkflowTaskSendSlackMessageTaskParamsChannelArgs
{
Id = "string",
Name = "string",
},
},
Color = "string",
ParentMessageThreadTask =
{
{ "string", "any" },
},
PinToChannel = false,
SendAsEphemeral = false,
SlackUserGroups = new[]
{
new Rootly.Inputs.WorkflowTaskSendSlackMessageTaskParamsSlackUserGroupArgs
{
Id = "string",
Name = "string",
},
},
SlackUsers = new[]
{
new Rootly.Inputs.WorkflowTaskSendSlackMessageTaskParamsSlackUserArgs
{
Id = "string",
Name = "string",
},
},
TaskType = "string",
UpdateParentMessage = false,
},
WorkflowId = "string",
Enabled = false,
Name = "string",
Position = 0,
SkipOnFailure = false,
});
example, err := rootly.NewWorkflowTaskSendSlackMessage(ctx, "workflowTaskSendSlackMessageResource", &rootly.WorkflowTaskSendSlackMessageArgs{
TaskParams: &rootly.WorkflowTaskSendSlackMessageTaskParamsArgs{
Text: pulumi.String("string"),
Actionables: pulumi.StringArray{
pulumi.String("string"),
},
BroadcastThreadReplyToChannel: pulumi.Bool(false),
Channels: rootly.WorkflowTaskSendSlackMessageTaskParamsChannelArray{
&rootly.WorkflowTaskSendSlackMessageTaskParamsChannelArgs{
Id: pulumi.String("string"),
Name: pulumi.String("string"),
},
},
Color: pulumi.String("string"),
ParentMessageThreadTask: pulumi.Map{
"string": pulumi.Any("any"),
},
PinToChannel: pulumi.Bool(false),
SendAsEphemeral: pulumi.Bool(false),
SlackUserGroups: rootly.WorkflowTaskSendSlackMessageTaskParamsSlackUserGroupArray{
&rootly.WorkflowTaskSendSlackMessageTaskParamsSlackUserGroupArgs{
Id: pulumi.String("string"),
Name: pulumi.String("string"),
},
},
SlackUsers: rootly.WorkflowTaskSendSlackMessageTaskParamsSlackUserArray{
&rootly.WorkflowTaskSendSlackMessageTaskParamsSlackUserArgs{
Id: pulumi.String("string"),
Name: pulumi.String("string"),
},
},
TaskType: pulumi.String("string"),
UpdateParentMessage: pulumi.Bool(false),
},
WorkflowId: pulumi.String("string"),
Enabled: pulumi.Bool(false),
Name: pulumi.String("string"),
Position: pulumi.Int(0),
SkipOnFailure: pulumi.Bool(false),
})
var workflowTaskSendSlackMessageResource = new WorkflowTaskSendSlackMessage("workflowTaskSendSlackMessageResource", WorkflowTaskSendSlackMessageArgs.builder()
.taskParams(WorkflowTaskSendSlackMessageTaskParamsArgs.builder()
.text("string")
.actionables("string")
.broadcastThreadReplyToChannel(false)
.channels(WorkflowTaskSendSlackMessageTaskParamsChannelArgs.builder()
.id("string")
.name("string")
.build())
.color("string")
.parentMessageThreadTask(Map.of("string", "any"))
.pinToChannel(false)
.sendAsEphemeral(false)
.slackUserGroups(WorkflowTaskSendSlackMessageTaskParamsSlackUserGroupArgs.builder()
.id("string")
.name("string")
.build())
.slackUsers(WorkflowTaskSendSlackMessageTaskParamsSlackUserArgs.builder()
.id("string")
.name("string")
.build())
.taskType("string")
.updateParentMessage(false)
.build())
.workflowId("string")
.enabled(false)
.name("string")
.position(0)
.skipOnFailure(false)
.build());
workflow_task_send_slack_message_resource = rootly.WorkflowTaskSendSlackMessage("workflowTaskSendSlackMessageResource",
task_params=rootly.WorkflowTaskSendSlackMessageTaskParamsArgs(
text="string",
actionables=["string"],
broadcast_thread_reply_to_channel=False,
channels=[rootly.WorkflowTaskSendSlackMessageTaskParamsChannelArgs(
id="string",
name="string",
)],
color="string",
parent_message_thread_task={
"string": "any",
},
pin_to_channel=False,
send_as_ephemeral=False,
slack_user_groups=[rootly.WorkflowTaskSendSlackMessageTaskParamsSlackUserGroupArgs(
id="string",
name="string",
)],
slack_users=[rootly.WorkflowTaskSendSlackMessageTaskParamsSlackUserArgs(
id="string",
name="string",
)],
task_type="string",
update_parent_message=False,
),
workflow_id="string",
enabled=False,
name="string",
position=0,
skip_on_failure=False)
const workflowTaskSendSlackMessageResource = new rootly.WorkflowTaskSendSlackMessage("workflowTaskSendSlackMessageResource", {
taskParams: {
text: "string",
actionables: ["string"],
broadcastThreadReplyToChannel: false,
channels: [{
id: "string",
name: "string",
}],
color: "string",
parentMessageThreadTask: {
string: "any",
},
pinToChannel: false,
sendAsEphemeral: false,
slackUserGroups: [{
id: "string",
name: "string",
}],
slackUsers: [{
id: "string",
name: "string",
}],
taskType: "string",
updateParentMessage: false,
},
workflowId: "string",
enabled: false,
name: "string",
position: 0,
skipOnFailure: false,
});
type: rootly:WorkflowTaskSendSlackMessage
properties:
enabled: false
name: string
position: 0
skipOnFailure: false
taskParams:
actionables:
- string
broadcastThreadReplyToChannel: false
channels:
- id: string
name: string
color: string
parentMessageThreadTask:
string: any
pinToChannel: false
sendAsEphemeral: false
slackUserGroups:
- id: string
name: string
slackUsers:
- id: string
name: string
taskType: string
text: string
updateParentMessage: false
workflowId: string
WorkflowTaskSendSlackMessage Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The WorkflowTaskSendSlackMessage resource accepts the following input properties:
- Task
Params WorkflowTask Send Slack Message Task Params - The parameters for this workflow task.
- Workflow
Id string - The ID of the parent workflow
- Enabled bool
- Enable/disable this workflow task
- Name string
- Name of the workflow task
- Position int
- The position of the workflow task (1 being top of list)
- Skip
On boolFailure - Skip workflow task if any failures
- Task
Params WorkflowTask Send Slack Message Task Params Args - The parameters for this workflow task.
- Workflow
Id string - The ID of the parent workflow
- Enabled bool
- Enable/disable this workflow task
- Name string
- Name of the workflow task
- Position int
- The position of the workflow task (1 being top of list)
- Skip
On boolFailure - Skip workflow task if any failures
- task
Params WorkflowTask Send Slack Message Task Params - The parameters for this workflow task.
- workflow
Id String - The ID of the parent workflow
- enabled Boolean
- Enable/disable this workflow task
- name String
- Name of the workflow task
- position Integer
- The position of the workflow task (1 being top of list)
- skip
On BooleanFailure - Skip workflow task if any failures
- task
Params WorkflowTask Send Slack Message Task Params - The parameters for this workflow task.
- workflow
Id string - The ID of the parent workflow
- enabled boolean
- Enable/disable this workflow task
- name string
- Name of the workflow task
- position number
- The position of the workflow task (1 being top of list)
- skip
On booleanFailure - Skip workflow task if any failures
- task_
params WorkflowTask Send Slack Message Task Params Args - The parameters for this workflow task.
- workflow_
id str - The ID of the parent workflow
- enabled bool
- Enable/disable this workflow task
- name str
- Name of the workflow task
- position int
- The position of the workflow task (1 being top of list)
- skip_
on_ boolfailure - Skip workflow task if any failures
- task
Params Property Map - The parameters for this workflow task.
- workflow
Id String - The ID of the parent workflow
- enabled Boolean
- Enable/disable this workflow task
- name String
- Name of the workflow task
- position Number
- The position of the workflow task (1 being top of list)
- skip
On BooleanFailure - Skip workflow task if any failures
Outputs
All input properties are implicitly available as output properties. Additionally, the WorkflowTaskSendSlackMessage resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing WorkflowTaskSendSlackMessage Resource
Get an existing WorkflowTaskSendSlackMessage 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?: WorkflowTaskSendSlackMessageState, opts?: CustomResourceOptions): WorkflowTaskSendSlackMessage
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
enabled: Optional[bool] = None,
name: Optional[str] = None,
position: Optional[int] = None,
skip_on_failure: Optional[bool] = None,
task_params: Optional[WorkflowTaskSendSlackMessageTaskParamsArgs] = None,
workflow_id: Optional[str] = None) -> WorkflowTaskSendSlackMessage
func GetWorkflowTaskSendSlackMessage(ctx *Context, name string, id IDInput, state *WorkflowTaskSendSlackMessageState, opts ...ResourceOption) (*WorkflowTaskSendSlackMessage, error)
public static WorkflowTaskSendSlackMessage Get(string name, Input<string> id, WorkflowTaskSendSlackMessageState? state, CustomResourceOptions? opts = null)
public static WorkflowTaskSendSlackMessage get(String name, Output<String> id, WorkflowTaskSendSlackMessageState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- Enabled bool
- Enable/disable this workflow task
- Name string
- Name of the workflow task
- Position int
- The position of the workflow task (1 being top of list)
- Skip
On boolFailure - Skip workflow task if any failures
- Task
Params WorkflowTask Send Slack Message Task Params - The parameters for this workflow task.
- Workflow
Id string - The ID of the parent workflow
- Enabled bool
- Enable/disable this workflow task
- Name string
- Name of the workflow task
- Position int
- The position of the workflow task (1 being top of list)
- Skip
On boolFailure - Skip workflow task if any failures
- Task
Params WorkflowTask Send Slack Message Task Params Args - The parameters for this workflow task.
- Workflow
Id string - The ID of the parent workflow
- enabled Boolean
- Enable/disable this workflow task
- name String
- Name of the workflow task
- position Integer
- The position of the workflow task (1 being top of list)
- skip
On BooleanFailure - Skip workflow task if any failures
- task
Params WorkflowTask Send Slack Message Task Params - The parameters for this workflow task.
- workflow
Id String - The ID of the parent workflow
- enabled boolean
- Enable/disable this workflow task
- name string
- Name of the workflow task
- position number
- The position of the workflow task (1 being top of list)
- skip
On booleanFailure - Skip workflow task if any failures
- task
Params WorkflowTask Send Slack Message Task Params - The parameters for this workflow task.
- workflow
Id string - The ID of the parent workflow
- enabled bool
- Enable/disable this workflow task
- name str
- Name of the workflow task
- position int
- The position of the workflow task (1 being top of list)
- skip_
on_ boolfailure - Skip workflow task if any failures
- task_
params WorkflowTask Send Slack Message Task Params Args - The parameters for this workflow task.
- workflow_
id str - The ID of the parent workflow
- enabled Boolean
- Enable/disable this workflow task
- name String
- Name of the workflow task
- position Number
- The position of the workflow task (1 being top of list)
- skip
On BooleanFailure - Skip workflow task if any failures
- task
Params Property Map - The parameters for this workflow task.
- workflow
Id String - The ID of the parent workflow
Supporting Types
WorkflowTaskSendSlackMessageTaskParams, WorkflowTaskSendSlackMessageTaskParamsArgs
- Text string
- The message text
- Actionables List<string>
- Value must be one of
update_summary
,update_status
,archive_channel
,manage_incident_roles
,update_incident
,all_commands
,leave_feedback
,manage_form_fields
,manage_action_items
,view_tasks
,add_pagerduty_responders
,add_opsgenie_responders
,add_victor_ops_responders
,snooze_reminder
,pause_reminder
,restart_reminder
,update_status_page
,cancel_incident
. - Broadcast
Thread boolReply To Channel - Value must be one of true or false
- Channels
List<Workflow
Task Send Slack Message Task Params Channel> - Color string
- A hex color
- Parent
Message Dictionary<string, object>Thread Task - Map must contain two fields,
id
andname
. A hash where [id] is the task id of the parent task that sent a message, and [name] is the name of the parent task - Pin
To boolChannel - Value must be one of true or false
- Send
As boolEphemeral - Value must be one of true or false
- Slack
User List<WorkflowGroups Task Send Slack Message Task Params Slack User Group> - Slack
Users List<WorkflowTask Send Slack Message Task Params Slack User> - Task
Type string - Update
Parent boolMessage - Value must be one of true or false
- Text string
- The message text
- Actionables []string
- Value must be one of
update_summary
,update_status
,archive_channel
,manage_incident_roles
,update_incident
,all_commands
,leave_feedback
,manage_form_fields
,manage_action_items
,view_tasks
,add_pagerduty_responders
,add_opsgenie_responders
,add_victor_ops_responders
,snooze_reminder
,pause_reminder
,restart_reminder
,update_status_page
,cancel_incident
. - Broadcast
Thread boolReply To Channel - Value must be one of true or false
- Channels
[]Workflow
Task Send Slack Message Task Params Channel - Color string
- A hex color
- Parent
Message map[string]interface{}Thread Task - Map must contain two fields,
id
andname
. A hash where [id] is the task id of the parent task that sent a message, and [name] is the name of the parent task - Pin
To boolChannel - Value must be one of true or false
- Send
As boolEphemeral - Value must be one of true or false
- Slack
User []WorkflowGroups Task Send Slack Message Task Params Slack User Group - Slack
Users []WorkflowTask Send Slack Message Task Params Slack User - Task
Type string - Update
Parent boolMessage - Value must be one of true or false
- text String
- The message text
- actionables List<String>
- Value must be one of
update_summary
,update_status
,archive_channel
,manage_incident_roles
,update_incident
,all_commands
,leave_feedback
,manage_form_fields
,manage_action_items
,view_tasks
,add_pagerduty_responders
,add_opsgenie_responders
,add_victor_ops_responders
,snooze_reminder
,pause_reminder
,restart_reminder
,update_status_page
,cancel_incident
. - broadcast
Thread BooleanReply To Channel - Value must be one of true or false
- channels
List<Workflow
Task Send Slack Message Task Params Channel> - color String
- A hex color
- parent
Message Map<String,Object>Thread Task - Map must contain two fields,
id
andname
. A hash where [id] is the task id of the parent task that sent a message, and [name] is the name of the parent task - pin
To BooleanChannel - Value must be one of true or false
- send
As BooleanEphemeral - Value must be one of true or false
- slack
User List<WorkflowGroups Task Send Slack Message Task Params Slack User Group> - slack
Users List<WorkflowTask Send Slack Message Task Params Slack User> - task
Type String - update
Parent BooleanMessage - Value must be one of true or false
- text string
- The message text
- actionables string[]
- Value must be one of
update_summary
,update_status
,archive_channel
,manage_incident_roles
,update_incident
,all_commands
,leave_feedback
,manage_form_fields
,manage_action_items
,view_tasks
,add_pagerduty_responders
,add_opsgenie_responders
,add_victor_ops_responders
,snooze_reminder
,pause_reminder
,restart_reminder
,update_status_page
,cancel_incident
. - broadcast
Thread booleanReply To Channel - Value must be one of true or false
- channels
Workflow
Task Send Slack Message Task Params Channel[] - color string
- A hex color
- parent
Message {[key: string]: any}Thread Task - Map must contain two fields,
id
andname
. A hash where [id] is the task id of the parent task that sent a message, and [name] is the name of the parent task - pin
To booleanChannel - Value must be one of true or false
- send
As booleanEphemeral - Value must be one of true or false
- slack
User WorkflowGroups Task Send Slack Message Task Params Slack User Group[] - slack
Users WorkflowTask Send Slack Message Task Params Slack User[] - task
Type string - update
Parent booleanMessage - Value must be one of true or false
- text str
- The message text
- actionables Sequence[str]
- Value must be one of
update_summary
,update_status
,archive_channel
,manage_incident_roles
,update_incident
,all_commands
,leave_feedback
,manage_form_fields
,manage_action_items
,view_tasks
,add_pagerduty_responders
,add_opsgenie_responders
,add_victor_ops_responders
,snooze_reminder
,pause_reminder
,restart_reminder
,update_status_page
,cancel_incident
. - broadcast_
thread_ boolreply_ to_ channel - Value must be one of true or false
- channels
Sequence[Workflow
Task Send Slack Message Task Params Channel] - color str
- A hex color
- parent_
message_ Mapping[str, Any]thread_ task - Map must contain two fields,
id
andname
. A hash where [id] is the task id of the parent task that sent a message, and [name] is the name of the parent task - pin_
to_ boolchannel - Value must be one of true or false
- send_
as_ boolephemeral - Value must be one of true or false
- slack_
user_ Sequence[Workflowgroups Task Send Slack Message Task Params Slack User Group] - slack_
users Sequence[WorkflowTask Send Slack Message Task Params Slack User] - task_
type str - update_
parent_ boolmessage - Value must be one of true or false
- text String
- The message text
- actionables List<String>
- Value must be one of
update_summary
,update_status
,archive_channel
,manage_incident_roles
,update_incident
,all_commands
,leave_feedback
,manage_form_fields
,manage_action_items
,view_tasks
,add_pagerduty_responders
,add_opsgenie_responders
,add_victor_ops_responders
,snooze_reminder
,pause_reminder
,restart_reminder
,update_status_page
,cancel_incident
. - broadcast
Thread BooleanReply To Channel - Value must be one of true or false
- channels List<Property Map>
- color String
- A hex color
- parent
Message Map<Any>Thread Task - Map must contain two fields,
id
andname
. A hash where [id] is the task id of the parent task that sent a message, and [name] is the name of the parent task - pin
To BooleanChannel - Value must be one of true or false
- send
As BooleanEphemeral - Value must be one of true or false
- slack
User List<Property Map>Groups - slack
Users List<Property Map> - task
Type String - update
Parent BooleanMessage - Value must be one of true or false
WorkflowTaskSendSlackMessageTaskParamsChannel, WorkflowTaskSendSlackMessageTaskParamsChannelArgs
WorkflowTaskSendSlackMessageTaskParamsSlackUser, WorkflowTaskSendSlackMessageTaskParamsSlackUserArgs
WorkflowTaskSendSlackMessageTaskParamsSlackUserGroup, WorkflowTaskSendSlackMessageTaskParamsSlackUserGroupArgs
Package Details
- Repository
- rootly rootlyhq/pulumi-rootly
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
rootly
Terraform Provider.