mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-23 13:20:23 -07:00
Added no_log flag for all the sensitive fields. (#24386)
This commit is contained in:
parent
e6934e42be
commit
6aa32d3e9d
4 changed files with 7 additions and 7 deletions
|
@ -108,9 +108,9 @@ options:
|
||||||
client_log_config:
|
client_log_config:
|
||||||
description:
|
description:
|
||||||
- Configure which logs are sent to the avi controller from ses and how they are processed.
|
- Configure which logs are sent to the avi controller from ses and how they are processed.
|
||||||
client_log_syslog_config:
|
client_log_streaming_config:
|
||||||
description:
|
description:
|
||||||
- Configure to send logs to a remote syslog server.
|
- Configure to stream logs to an external server.
|
||||||
- Field introduced in 17.1.1.
|
- Field introduced in 17.1.1.
|
||||||
version_added: "2.4"
|
version_added: "2.4"
|
||||||
conn_lossy_ooo_threshold:
|
conn_lossy_ooo_threshold:
|
||||||
|
@ -460,7 +460,7 @@ def main():
|
||||||
apdex_server_rtt_threshold=dict(type='int',),
|
apdex_server_rtt_threshold=dict(type='int',),
|
||||||
apdex_server_rtt_tolerated_factor=dict(type='float',),
|
apdex_server_rtt_tolerated_factor=dict(type='float',),
|
||||||
client_log_config=dict(type='dict',),
|
client_log_config=dict(type='dict',),
|
||||||
client_log_syslog_config=dict(type='dict',),
|
client_log_streaming_config=dict(type='dict',),
|
||||||
conn_lossy_ooo_threshold=dict(type='int',),
|
conn_lossy_ooo_threshold=dict(type='int',),
|
||||||
conn_lossy_timeo_rexmt_threshold=dict(type='int',),
|
conn_lossy_timeo_rexmt_threshold=dict(type='int',),
|
||||||
conn_lossy_total_rexmt_threshold=dict(type='int',),
|
conn_lossy_total_rexmt_threshold=dict(type='int',),
|
||||||
|
|
|
@ -75,7 +75,7 @@ options:
|
||||||
east_west_ipam_provider_ref:
|
east_west_ipam_provider_ref:
|
||||||
description:
|
description:
|
||||||
- Ipam profile for east-west services.
|
- Ipam profile for east-west services.
|
||||||
- Please use virtual subnets in this ipam profile that do not conflict with the underlay networks or any overlay networks in the cluster.
|
- Warning - please use virtual subnets in this ipam profile that do not conflict with the underlay networks or any overlay networks in the cluster.
|
||||||
- For example in aws and gcp, 169.254.0.0/16 is used for storing instance metadata.
|
- For example in aws and gcp, 169.254.0.0/16 is used for storing instance metadata.
|
||||||
- Hence, it should not be used in this profile.
|
- Hence, it should not be used in this profile.
|
||||||
- It is a reference to an object of type ipamdnsproviderprofile.
|
- It is a reference to an object of type ipamdnsproviderprofile.
|
||||||
|
@ -158,7 +158,7 @@ extends_documentation_fragment:
|
||||||
|
|
||||||
|
|
||||||
EXAMPLES = '''
|
EXAMPLES = '''
|
||||||
- name: Create a VMWare cloud with write access mode
|
- name: Create a VMware cloud with write access mode
|
||||||
avi_cloud:
|
avi_cloud:
|
||||||
username: ''
|
username: ''
|
||||||
controller: ''
|
controller: ''
|
||||||
|
|
|
@ -101,7 +101,7 @@ def main():
|
||||||
state=dict(default='present',
|
state=dict(default='present',
|
||||||
choices=['absent', 'present']),
|
choices=['absent', 'present']),
|
||||||
name=dict(type='str', required=True),
|
name=dict(type='str', required=True),
|
||||||
private_key=dict(type='str',),
|
private_key=dict(type='str', no_log=True,),
|
||||||
public_key=dict(type='str',),
|
public_key=dict(type='str',),
|
||||||
tenant_ref=dict(type='str',),
|
tenant_ref=dict(type='str',),
|
||||||
url=dict(type='str',),
|
url=dict(type='str',),
|
||||||
|
|
|
@ -149,7 +149,7 @@ def main():
|
||||||
enckey_base64=dict(type='str',),
|
enckey_base64=dict(type='str',),
|
||||||
enckey_name=dict(type='str',),
|
enckey_name=dict(type='str',),
|
||||||
hardwaresecuritymodulegroup_ref=dict(type='str',),
|
hardwaresecuritymodulegroup_ref=dict(type='str',),
|
||||||
key=dict(type='str',),
|
key=dict(type='str', no_log=True,),
|
||||||
key_params=dict(type='dict',),
|
key_params=dict(type='dict',),
|
||||||
name=dict(type='str', required=True),
|
name=dict(type='str', required=True),
|
||||||
status=dict(type='str',),
|
status=dict(type='str',),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue