Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion plugins/modules/cp_gaia_initial_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@
description: Password of user admin. Required in case default initial password has not been changed before.
required: False
type: str
grub_password:
description: GRUB maintenance password. Required in case default initial GRUB password has not been changed before.
required: False
type: str
security_management:
description: Install Security Management or Multi domain server.
required: False
Expand Down Expand Up @@ -150,6 +154,7 @@
check_point.gaia.cp_gaia_initial_setup:
wait_for_task: true
security_gateway: {cluster_member: false, activation_key: bbbb, dynamically_assigned_ip: false}
grub_password: NewGrubPassword
"""

RETURN = """
Expand Down Expand Up @@ -207,7 +212,8 @@ def main():
vsnext=dict(type='bool', required=False, default=False),
elastic_xl=dict(type='bool', required=False, default=False)
)
)
),
grub_password=dict(type="str", required=False, no_log=True)
)
fields.update(checkpoint_argument_spec_for_async)
fields.update(checkpoint_argument_spec_for_all)
Expand Down