Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove wrong alias on secret_value #44877

Merged
merged 1 commit into from
Aug 31, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 1 addition & 3 deletions lib/ansible/modules/cloud/azure/azure_rm_keyvaultsecret.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,6 @@
description:
- Secret to be secured by keyvault.
required: false
aliases:
- secret
state:
description:
- Assert the state of the subnet. Use 'present' to create or update a secret and
Expand Down Expand Up @@ -100,7 +98,7 @@ def __init__(self):

self.module_arg_spec = dict(
secret_name=dict(type='str', required=True),
secret_value=dict(type='str', aliases=['secret'], no_log=True),
secret_value=dict(type='str', no_log=True),
keyvault_uri=dict(type='str', required=True),
state=dict(type='str', default='present', choices=['present', 'absent'])
)
Expand Down