From a981ee6bcab611cc7ab136952beb5aafe7eec5c0 Mon Sep 17 00:00:00 2001 From: Lee Goolsbee Date: Mon, 27 Jul 2020 19:00:07 -0500 Subject: [PATCH] Slack: drop unused validate_certs option --- plugins/modules/notification/slack.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/plugins/modules/notification/slack.py b/plugins/modules/notification/slack.py index 9d44c34abb..ed31f663b3 100644 --- a/plugins/modules/notification/slack.py +++ b/plugins/modules/notification/slack.py @@ -86,12 +86,6 @@ options: choices: - 'full' - 'none' - validate_certs: - description: - - If C(no), SSL certificates will not be validated. This should only be used - on personally controlled sites using self-signed certificates. - type: bool - default: 'yes' color: description: - Allow text to use default colors - use the default of 'normal' to not send a custom color bar at the start of the message. @@ -354,7 +348,6 @@ def main(): icon_emoji=dict(type='str', default=None), link_names=dict(type='int', default=1, choices=[0, 1]), parse=dict(type='str', default=None, choices=['none', 'full']), - validate_certs=dict(default=True, type='bool'), color=dict(type='str', default='normal'), attachments=dict(type='list', required=False, default=None), blocks=dict(type='list', required=False, default=None)