Skip to content

Latest commit

 

History

History
202 lines (144 loc) · 8.95 KB

chat_setup.md

File metadata and controls

202 lines (144 loc) · 8.95 KB

Installing Nautobot Chatops

There are four main phases to enable Nautobot chatops:

  1. Configure the specific chat platform
  2. Install the plugin
  3. Configure nautobot_config.py to support chatops
  4. Grant access to the chatbot in the Nautobot Web UI

Requirements

  • Functioning Nautobot installation
  • Publicly accessible URL for Nautobot or ability/permission to use ngrok to get a publicly accessible URL for Nautobot
  • sudo access on the Nautobot server
  • Administrative access within the Nautobot Web UI

Note: Some chat platforms, such as Slack, require a signed certificate from a trusted provider on the Nautobot server in order to allow the application platform to communicate with the Nautobot server

Platform-specific setup

Plug-In Installation

The plugin is available as a Python package in PyPI and can be installed with pip3 after logging in with the nautobot user account.

sudo -iu nautobot
pip3 install nautobot-chatops

The plugin is compatible with Nautobot 1.0.0beta1 and higher

Once installed, the plugin needs to be enabled in your nautobot_config.py

# In your nautobot_config.py
PLUGINS = ["nautobot_chatops"]

PLUGINS_CONFIG = {
    "nautobot_chatops": {
         #     ADD YOUR SETTINGS HERE
    }
}

Nautobot supports Slack, MS Teams, Mattermost, and Webex as backends but by default all of them are disabled. You need to explicitly enable the chat platform(s) that you want to use in the PLUGINS_CONFIG with one or more of enable_slack, enable_ms_teams, enable_mattermost, or enable_webex.

The plugin behavior can be controlled with the following list of general settings:

Configuration Setting Description Mandatory? Default
delete_input_on_submission After prompting the user for additional inputs, delete the input prompt from the chat history No False

TODO: clarify the above statement, starting from "The plugin behavior can be controlled . . ."

Run Migrations

Once the setup is done, the Nautobot post_upgrade command needs to be run. As the Nautobot user (which following Nautobot install docs is nautobot) execute:

nautobot-server post_upgrade

This command runs migrations and clears the cache as necessary.

Restart Nautobot

As a root user, restart the Nautobot services.

systemctl restart nautobot nautobot-worker

If there is an additional service file for a separate RQ/Celery worker setup, also run:

systemctl restart nautobot-rq-worker

Server Configuration

As the nautobot user, you will now edit the nautobot_config.py file.

There are also some platform-specific requirements to configure.
Some values from your chat platform-specific configuration in the prior section are configured in nautobot_config.py.

Below is a sample configuration snippet in nautobot_config.py that enables Slack. This is meant to serve as a general example of how to configure and enable the chatops plugin.

Note a few details about this example:

  • You must add "nautobot_chatops" to the list defined by PLUGINS
  • The slack_api_token and slack_signing_secret values were taken from the values presented in the Slack platform-specific setup.
  • Alternately, the slack_api_token and slack_signing_secret values could also be stored in an .env file, then referred to by those defined environment variables in PLUGINS_CONFIG.
  • Some commands can use a user's session cache to keep state for some data between commands (e.g. use the same target device between commands). By default, it keeps data for 86400 seconds, but with session_cache_timeout this value can be adjusted.
# Enable installed plugins. Add the name of each plugin to the list.
PLUGINS = ["nautobot_chatops"]

PLUGINS_CONFIG = {
    'nautobot_chatops': {
        'enable_slack': True,
        'slack_api_token': 'xoxb-2078939598626-2078997105202-3QupQHVC3lEhyGtKPpK62fGB',
        'slack_signing_secret': '1be5e964569d52a2e74f13fcefb1213f',
        'session_cache_timeout': 3600,
    }
}

As a sudo-enabled user, restart the nautobot and nautobot-worker process after updating nautobot_config.py.

sudo systemctl restart nautobot.service nautobot-worker.service

Finally, validate that the nautobot and nautobot-worker processes have restarted successfully:

sudo systemctl status nautobot.service nautobot-worker.service

Grant Access to the Chatbot

Nautobot provides an HTTP endpoint(s) for each supported chat platform. Although these endpoints do implement authentication to prevent arbitrary HTTP requests from triggering bot actions, they can accept and act on any validly-formed request from the chat platform, which could originate from any organization, team, channel, or user who has access to the chat system.

For most realistic deployments, open and unrestricted access to the bot from any chat account is undesirable. Therefore, in this version, access to the chatbot defaults to "deny all" when initially installed, but varying scopes (per organization, per channel, per user) and degrees (all commands, all subcommands of a single command, single subcommand of a single command) of access can be granted through Nautobot.

The access grants are maintained in Nautobot's database for persistence, and are change-logged like other Nautobot records.

access grants

Note that access grants are based on the chat platform's internal ID values for users, channels, and organizations; although you can and should attach a user-friendly name to each access grant for reference, it is the ID value that is actually enforced by Nautobot. On some platforms and for some access scopes, the Nautobot UI "Look up Value from Name" button can be used to auto-discover the ID value corresponding to a given name; if this fails, you can always attempt to send a request to Nautobot from the desired user/channel/organization and retrieve the ID value from the resulting error message to use to define a new access grant.

The specific access grants you will want to define will depend on your operational requirements, but some examples are provided below to help you get started.

Example: Unrestricted Access Within a Single Organization

In the simplest realistic configuration example, access to all chatbot commands is granted for all users and all channels in a single organization scope.

Command Subcommand Grant type Name Value
* * organization my-org T202B88NN
* * channel any *
* * user any *

Example: Split Command Access to Different Channels

In this example, Nautobot is providing two separate command groupings, each of which is intended for use by a different team within the organization. Each team has a dedicated channel on the chat platform, to which access is already controlled by other means, so we can allow all users within a given channel access.

Command Subcommand Grant type Name Value
* * organization my-org T202B88NN
support * channel support C2020H455
devops * channel devops C3030I566
* * user any *

Example: Restrict Specific Command and Subcommand to Specific Users in a Specific Channel

In this example, Nautobot has a potentially-destructive subcommand that should only be used by a handful of admin users. Other subcommands under this subcommand can be used by anyone in the devops channel. Other commands are harmless fun and can be used by any user in the organization in any channel.

Command Subcommand Grant type Name Value
* * organization my-org T202B88NN
jokes * channel any *
jokes * user any *
network * channel devops C3030I566
network history user any *
network redeploy user admin1 U2049K991
network redeploy user admin2 U2039K725
network redeploy user admin3 U7924K784
network status user any *
weather * channel any *
weather * user any *

Test Your Chatbot

Now test your chatbot within your specific chat application.