diff --git a/plugins/modules/provision_intent.py b/plugins/modules/provision_intent.py index c055eb1c08..418c265ea5 100644 --- a/plugins/modules/provision_intent.py +++ b/plugins/modules/provision_intent.py @@ -21,6 +21,16 @@ - cisco.dnac.intent_params author: Abinash Mishra (@abimishr) options: + dnac_log_level: + description: + - Specifies the desired log level for Cisco Catalyst Center logging. + Options - [CRITICAL, ERROR, WARNING, INFO, DEBUG] + type: str + default: WARNING + config_verify: + description: Set to True to verify the Cisco Catalyst Center config after applying the playbook config. + type: bool + default: False state: description: The state of DNAC after module completion. type: str @@ -582,6 +592,8 @@ def main(): 'dnac_version': {'type': 'str', 'default': '2.2.3.3'}, 'dnac_debug': {'type': 'bool', 'default': False}, 'dnac_log': {'type': 'bool', 'default': False}, + "dnac_log_level": {"type": 'str', "default": 'WARNING'}, + "config_verify": {"type": 'bool', "default": False}, 'validate_response_schema': {'type': 'bool', 'default': True}, 'config': {'required': True, 'type': 'list', 'elements': 'dict'}, 'state': {'default': 'merged', 'choices': ['merged', 'deleted']}