Skip to content

Commit

Permalink
doc fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
resmo committed Sep 25, 2024
1 parent 271b448 commit 8bc270f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion plugins/modules/cs_instance.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,7 @@
- Optional data (ASCII) that can be sent to the instance upon a successful deployment.
- The data will be automatically base64 encoded.
- Consider switching to HTTP_POST by using I(CLOUDSTACK_METHOD=post) to increase the HTTP_GET size limit of 2KB to 32 KB.
- Mutually exclusive with I(user_data_name) option.
type: str
user_data_details:
description:
Expand All @@ -189,7 +190,8 @@
version_added: 2.5.0
user_data_name:
description:
- Name of user data to be used. This have precedence over I(user_data).
- Name of user data to be used.
- Mutually exclusive with I(user_data) option.
type: str
version_added: 2.5.0
force:
Expand Down Expand Up @@ -1171,6 +1173,7 @@ def main():
),
mutually_exclusive=(
['template', 'iso'],
["user_data", "user_data_name"],
),
supports_check_mode=True
)
Expand Down

0 comments on commit 8bc270f

Please sign in to comment.