diff --git a/plugins/modules/de.py b/plugins/modules/de.py index 1e78f1c..e95d33a 100644 --- a/plugins/modules/de.py +++ b/plugins/modules/de.py @@ -61,22 +61,22 @@ required: False maximum_instances: description: - - Maximum Instances for the CDE Service + - Maximum Instances for the CDE Service type: int required: False minimum_spot_instances: description: - - Minimum Spot Instances for the CDE Service + - Minimum Spot Instances for the CDE Service type: int required: False maximum_spot_instances: description: - - Maximum Spot Instances for the CDE Service + - Maximum Spot Instances for the CDE Service type: int required: False chart_value_overrides: description: - - Chart overrides for enabling a service + - Chart overrides for enabling a service type: list elements: dict required: False @@ -88,48 +88,48 @@ required: False enable_public_endpoint: description: - - Creates a CDE endpoint (Load Balancer) in a publicly accessible subnet + - Creates a CDE endpoint (Load Balancer) in a publicly accessible subnet type: bool required: False enable_private_network: description: - - Create a fully private CDE instance + - Create a fully private CDE instance type: bool required: False loadbalancer_ips: description: - - List of CIDRs allowed to access the load balancer. + - List of CIDRs allowed to access the load balancer. type: list elements: str required: False enable_workload_analytics: description: - - If set false, diagnostic information about job and query execution is sent to Cloudera Workload Manager + - If set false, diagnostic information about job and query execution is sent to Cloudera Workload Manager type: bool required: False initial_instances: description: - - Initial Instances when the service is enabled + - Initial Instances when the service is enabled type: int required: False initial_spot_instances: description: - - Initial spot Instances when the service is enabled + - Initial spot Instances when the service is enabled type: int required: False root_volume_size: description: - - EBS volume size in GB + - EBS volume size in GB type: int required: False skip_validation: description: - - Skip Validation check. + - Skip Validation check. type: bool required: False tags: description: - - User defined labels that tag all provisioned cloud resources + - User defined labels that tag all provisioned cloud resources type: dict required: False suboptions: @@ -140,12 +140,12 @@ required: False use_ssd: description: - - Instance local storage (SSD) would be used for the workload filesystem (Example - spark local directory). Currently supported only for aws services + - Instance local storage (SSD) would be used for the workload filesystem (Example - spark local directory). Currently supported only for aws services type: bool required: False whitelist_ips: description: - - List of CIDRs that would be allowed to access Kubernetes master API server + - List of CIDRs that would be allowed to access Kubernetes master API server type: list elements: str required: False @@ -248,6 +248,7 @@ elements: complex contains: ChartValueOverridesResponse: + description: Response object containing chart value overrides. type: list returned: always contains: @@ -517,7 +518,7 @@ def main(): root_volume_size=dict(required=False, type='int', default=100), skip_validation=dict(required=False, type='bool', default=False), tags=dict(required=False, type='dict', default=None), - use_ssd=dict(required=False, type='bool', default=True), + use_ssd=dict(required=False, type='bool', default=None), whitelist_ips=dict(required=False, type='list', elements='str', default=None), force=dict(required=False, type='bool', default=False, aliases=['force_delete']), state=dict(required=False, type='str', choices=['present', 'absent'], default='present'),