Skip to content

Latest commit

 

History

History
72 lines (50 loc) · 1.94 KB

README.md

File metadata and controls

72 lines (50 loc) · 1.94 KB

chef_slack Cookbook

Build Status Cookbook Version

This cookbook sends messages to a Slack channel using the Incoming Webhook Integration

Requirements

Platforms

  • Any platform supported by Chef

Chef

  • Chef 12.7+

Cookbooks

  • none

slack_notify Resource Usage

In your metadata.rb you need to add depends chef_slack'. Passing the below will use default attributes

slack_notify "Say Summat!"
slack_notify "send_notification_message" do
  message "This is a notification message"
  webhook_url 'https://hooks.slack.com/services/XXXX/XXXXXXX/XXXXXX'
  not_if { node['im_boring'] }
end
slack_notify "channel_nothing" do
  message "heres a message to kick off later"
  username 'test_user'
  channels ['foo','bar']
  webhook_url 'https://hooks.slack.com/services/XXXX/XXXXXXX/XXXXXX'
  icon_emoji ':tada:'
  action :nothing
end

something "talk_as_test_user_to_multiple_channels" do
  notifies :notify, "slack_notify[channel_nothing]", :immediately
end

License & Authors

Author: Ian Henry <[email protected]>

Author: Jason Rohwedder <[email protected]> https://github.com/KennaSecurity/chef-slack

Copyright:: 2009-2015, Chef Software, Inc

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.