Skip to content

Development repository for the chef_slack cookbook

License

Notifications You must be signed in to change notification settings

a-ads/chef_slack

 
 

Repository files navigation

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 <ihenry@chef.io>

Author: Jason Rohwedder <jro@risk.io> 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.

About

Development repository for the chef_slack cookbook

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Ruby 100.0%