Skip to content

Commit c4f5525

Browse files
cs_project.py: pass cleanup=true in deleteProject API (#122)
1 parent dc89b6d commit c4f5525

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

plugins/modules/cs_project.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,8 @@ def absent_project(self):
222222
self.result['changed'] = True
223223

224224
args = {
225-
'id': project['id']
225+
'id': project['id'],
226+
'cleanup': True
226227
}
227228
if not self.module.check_mode:
228229
res = self.query_api('deleteProject', **args)

0 commit comments

Comments
 (0)