Skip to content

Commit

Permalink
Merge pull request #44 from roumano/max_connections_not_required
Browse files Browse the repository at this point in the history
Remove mandatory max_connections value
  • Loading branch information
pescobar authored Dec 14, 2023
2 parents 7bef687 + b234481 commit 739c815
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions plugins/modules/guacamole_connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,6 @@
max_connections:
description:
- Max simultaneous connections allowed for this connection
required: true
type: int
max_connections_per_user:
Expand Down Expand Up @@ -551,7 +550,7 @@ def main():
rdp_width=dict(type='int'),
rdp_height=dict(type='int'),
state=dict(type='str', choices=['absent', 'present'], default='present'),
max_connections=dict(type='int', default=1),
max_connections=dict(type='int', required=False),
max_connections_per_user=dict(type='int'),
recording_path=dict(type='str', required=False),
recording_include_keys=dict(type='bool', required=False),
Expand Down

0 comments on commit 739c815

Please sign in to comment.