Skip to content

Commit

Permalink
Merge pull request #64 from LBGarber/default-booted-nil
Browse files Browse the repository at this point in the history
Default 'booted' to nil
  • Loading branch information
LBGarber authored Sep 15, 2021
2 parents 836faf9 + 743c4a5 commit a85181b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/modules/instance.rst
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Parameters
The label of the config to boot from.


booted (False, bool, True)
booted (False, bool, None)
Whether the new Instance should be booted.

This will default to True if the Instance is deployed from an Image or Backup.
Expand Down
3 changes: 1 addition & 2 deletions plugins/modules/instance.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
required: false
type: str
booted:
default: true
description:
- Whether the new Instance should be booted.
- This will default to True if the Instance is deployed from an Image or Backup.
Expand Down Expand Up @@ -773,7 +772,7 @@
]),

booted=dict(
type='bool', default=True,
type='bool',
description=[
'Whether the new Instance should be booted.',
'This will default to True if the Instance is deployed from an Image or Backup.'
Expand Down

0 comments on commit a85181b

Please sign in to comment.