mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-04-06 10:50:28 -07:00
kubectlpath
is mistakenly required true (#293)
Signed-off-by: Modular Magician <magic-modules@google.com>
This commit is contained in:
parent
777f193f87
commit
8bfa580005
1 changed files with 2 additions and 2 deletions
|
@ -53,7 +53,7 @@ options:
|
|||
- The file will not be created if this path is unset.
|
||||
- Any existing file at this path will be completely overwritten.
|
||||
- This requires the PyYaml library.
|
||||
required: true
|
||||
required: false
|
||||
version_added: 2.9
|
||||
kubectl_context:
|
||||
description:
|
||||
|
@ -973,7 +973,7 @@ def main():
|
|||
module = GcpModule(
|
||||
argument_spec=dict(
|
||||
state=dict(default='present', choices=['present', 'absent'], type='str'),
|
||||
kubectl_path=dict(required=True, type='str'),
|
||||
kubectl_path=dict(type='str'),
|
||||
kubectl_context=dict(type='str'),
|
||||
name=dict(type='str'),
|
||||
description=dict(type='str'),
|
||||
|
|
Loading…
Add table
Reference in a new issue