diff --git a/.github/workflows/ansible-integration-tests.yml b/.github/workflows/ansible-integration-tests.yml index ce18e0e..990354e 100644 --- a/.github/workflows/ansible-integration-tests.yml +++ b/.github/workflows/ansible-integration-tests.yml @@ -25,8 +25,8 @@ jobs: # and test against the minimum version of Python supported by both. If/when we change # the integration tests to support parallelism we can revisit. ansible_version: - - stable-2.16 - stable-2.17 + - stable-2.18 steps: - name: check out code uses: actions/checkout@v4 @@ -35,7 +35,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v4 with: - python-version: '3.10' # this is the minimum version required for Ansible 2.16 + python-version: '3.11' # this is the minimum version required for Ansible 2.17 - name: Install dependencies run: pip install -r requirements.txt - name: Install ansible-base (${{ matrix.ansible_version }}) @@ -70,4 +70,4 @@ jobs: # run tests - name: Run integration tests # Add the -vvv flag to print out more output - run: ansible-test integration -v --color --python 3.10 --venv-system-site-packages + run: ansible-test integration -v --color --python 3.11 --venv-system-site-packages diff --git a/.github/workflows/ansible-test.yml b/.github/workflows/ansible-test.yml index e9fea6a..cfdb2d0 100644 --- a/.github/workflows/ansible-test.yml +++ b/.github/workflows/ansible-test.yml @@ -13,10 +13,9 @@ jobs: # of ansible-core and each major version of Python supported by both. # https://docs.ansible.com/ansible/latest/reference_appendices/release_and_maintenance.html#ansible-core-support-matrix ansible_version: - - stable-2.16 - stable-2.17 + - stable-2.18 python_version: - - '3.10' - '3.11' - '3.12' steps: @@ -46,10 +45,9 @@ jobs: strategy: matrix: ansible_version: - - stable-2.16 - stable-2.17 + - stable-2.18 python_version: - - '3.10' - '3.11' - '3.12' steps: diff --git a/.github/workflows/gcloud.yml b/.github/workflows/gcloud.yml index 711ef94..c1819b8 100644 --- a/.github/workflows/gcloud.yml +++ b/.github/workflows/gcloud.yml @@ -31,10 +31,10 @@ jobs: with: path: ansible_collections/google/cloud - - name: Set up Python 3.10 + - name: Set up Python 3.11 uses: actions/setup-python@v4 with: - python-version: '3.10' + python-version: '3.11' - name: Install dependencies run: | diff --git a/.github/workflows/gcsfuse.yml b/.github/workflows/gcsfuse.yml index 8898703..bd91844 100644 --- a/.github/workflows/gcsfuse.yml +++ b/.github/workflows/gcsfuse.yml @@ -26,10 +26,10 @@ jobs: with: path: ansible_collections/google/cloud - - name: Set up Python 3.10 + - name: Set up Python 3.11 uses: actions/setup-python@v4 with: - python-version: '3.10' + python-version: '3.11' - name: Install dependencies run: | diff --git a/meta/runtime.yml b/meta/runtime.yml index 0f2f2a5..2034d6a 100644 --- a/meta/runtime.yml +++ b/meta/runtime.yml @@ -1,5 +1,5 @@ --- -requires_ansible: ">=2.16.0" +requires_ansible: ">=2.17.0" action_groups: gcp: diff --git a/molecule/gcloud/Dockerfile.j2 b/molecule/gcloud/Dockerfile.j2 index 5c2401c..c246fd9 100644 --- a/molecule/gcloud/Dockerfile.j2 +++ b/molecule/gcloud/Dockerfile.j2 @@ -46,7 +46,7 @@ RUN yum -y install python-pip {% endif %} {# Install of Python3 #} -{% if item.image in ["ubuntu:18.04", "ubuntu:20.04", "debian:10"] %} +{% if item.image in ["ubuntu:18.04", "ubuntu:20.04", "ubuntu:24.04", "debian:10", "debian:11", "debian:12"] %} RUN apt-get update \ && apt-get install -y --no-install-recommends \ apt-utils python3-setuptools python3-pip @@ -99,13 +99,13 @@ RUN locale-gen en_US.UTF-8 RUN mkdir -p /etc/ansible RUN echo "[local]\nlocalhost ansible_connection=local" > /etc/ansible/hosts -{% if item.image in ["centos:7", "centos:8", "debian:9", "debian:10"] %} +{% if item.image in ["centos:7", "centos:8", "debian:9", "debian:10", "debian:11", "debian:12"] %} VOLUME ["/sys/fs/cgroup"] -{% elif item.image in ["ubuntu:16.04", "ubuntu:18.04", "ubuntu:20.04"] %} +{% elif item.image in ["ubuntu:16.04", "ubuntu:18.04", "ubuntu:20.04", "ubuntu:24.04"] %} VOLUME ["/sys/fs/cgroup", "/tmp", "/run"] {% endif %} {% if item.image in ["centos:7", "centos:8"] %} CMD ["/usr/sbin/init"] -{% elif item.image in ["ubuntu:16.04", "ubuntu:18.04", "ubuntu:20.04", "debian:9", "debian:10"] %} +{% elif item.image in ["ubuntu:16.04", "ubuntu:18.04", "ubuntu:20.04", "ubuntu:24.04", "debian:9", "debian:10", "debian:11", "debian:12"] %} CMD ["/lib/systemd/systemd"] {% endif %} diff --git a/molecule/gcloud/molecule.yml b/molecule/gcloud/molecule.yml index 707639a..1fa069d 100644 --- a/molecule/gcloud/molecule.yml +++ b/molecule/gcloud/molecule.yml @@ -9,13 +9,13 @@ lint: | ansible-lint platforms: - name: instance - image: ubuntu:20.04 + image: ubuntu:24.04 privileged: true ansible.builtin.command: /lib/systemd/systemd volumes: - /sys/fs/cgroup:/sys/fs/cgroup:ro - name: instance - image: debian:10 + image: debian:12 privileged: true ansible.builtin.command: /lib/systemd/systemd volumes: diff --git a/molecule/gcsfuse/Dockerfile.j2 b/molecule/gcsfuse/Dockerfile.j2 index 5c2401c..c246fd9 100644 --- a/molecule/gcsfuse/Dockerfile.j2 +++ b/molecule/gcsfuse/Dockerfile.j2 @@ -46,7 +46,7 @@ RUN yum -y install python-pip {% endif %} {# Install of Python3 #} -{% if item.image in ["ubuntu:18.04", "ubuntu:20.04", "debian:10"] %} +{% if item.image in ["ubuntu:18.04", "ubuntu:20.04", "ubuntu:24.04", "debian:10", "debian:11", "debian:12"] %} RUN apt-get update \ && apt-get install -y --no-install-recommends \ apt-utils python3-setuptools python3-pip @@ -99,13 +99,13 @@ RUN locale-gen en_US.UTF-8 RUN mkdir -p /etc/ansible RUN echo "[local]\nlocalhost ansible_connection=local" > /etc/ansible/hosts -{% if item.image in ["centos:7", "centos:8", "debian:9", "debian:10"] %} +{% if item.image in ["centos:7", "centos:8", "debian:9", "debian:10", "debian:11", "debian:12"] %} VOLUME ["/sys/fs/cgroup"] -{% elif item.image in ["ubuntu:16.04", "ubuntu:18.04", "ubuntu:20.04"] %} +{% elif item.image in ["ubuntu:16.04", "ubuntu:18.04", "ubuntu:20.04", "ubuntu:24.04"] %} VOLUME ["/sys/fs/cgroup", "/tmp", "/run"] {% endif %} {% if item.image in ["centos:7", "centos:8"] %} CMD ["/usr/sbin/init"] -{% elif item.image in ["ubuntu:16.04", "ubuntu:18.04", "ubuntu:20.04", "debian:9", "debian:10"] %} +{% elif item.image in ["ubuntu:16.04", "ubuntu:18.04", "ubuntu:20.04", "ubuntu:24.04", "debian:9", "debian:10", "debian:11", "debian:12"] %} CMD ["/lib/systemd/systemd"] {% endif %} diff --git a/molecule/gcsfuse/molecule.yml b/molecule/gcsfuse/molecule.yml index 707639a..1fa069d 100644 --- a/molecule/gcsfuse/molecule.yml +++ b/molecule/gcsfuse/molecule.yml @@ -9,13 +9,13 @@ lint: | ansible-lint platforms: - name: instance - image: ubuntu:20.04 + image: ubuntu:24.04 privileged: true ansible.builtin.command: /lib/systemd/systemd volumes: - /sys/fs/cgroup:/sys/fs/cgroup:ro - name: instance - image: debian:10 + image: debian:12 privileged: true ansible.builtin.command: /lib/systemd/systemd volumes: diff --git a/plugins/inventory/gcp_compute.py b/plugins/inventory/gcp_compute.py index f4743b2..69fb4b7 100644 --- a/plugins/inventory/gcp_compute.py +++ b/plugins/inventory/gcp_compute.py @@ -7,7 +7,6 @@ __metaclass__ = type DOCUMENTATION = """ name: gcp_compute - plugin_type: inventory short_description: Google Cloud Compute Engine inventory source requirements: - requests >= 2.18.4 @@ -27,14 +26,17 @@ DOCUMENTATION = """ description: A list of regions in which to describe GCE instances. If none provided, it defaults to all zones available to a given project. type: list + elements: string folders: description: A folder that contains many projects type: list required: False + elements: string projects: description: A list of projects in which to describe GCE instances. type: list required: False + elements: string filters: description: > A list of filter value pairs. Available filters are listed here @@ -42,12 +44,14 @@ DOCUMENTATION = """ Each additional filter in the list will be added as an AND condition (filter1 and filter2) type: list + elements: string hostnames: description: A list of options that describe the ordering for which hostnames should be assigned. Currently supported hostnames are 'public_ip', 'private_ip', 'name' or 'labels.vm_name'. default: ['public_ip', 'private_ip', 'name'] type: list + elements: string name_suffix: description: Custom domain suffix. If set, this string will be appended to all hosts. default: "" @@ -63,6 +67,7 @@ DOCUMENTATION = """ scopes: description: list of authentication scopes type: list + elements: string default: ['https://www.googleapis.com/auth/compute'] env: - name: GCP_SCOPES diff --git a/plugins/lookup/gcp_secret_manager.py b/plugins/lookup/gcp_secret_manager.py index b3eeaf9..14824a9 100644 --- a/plugins/lookup/gcp_secret_manager.py +++ b/plugins/lookup/gcp_secret_manager.py @@ -5,9 +5,8 @@ from __future__ import (absolute_import, division, print_function) __metaclass__ = type DOCUMENTATION = ''' - author: - - Dave Costakos name: gcp_secret_manager + author: Dave Costakos (@davecostakos) short_description: Get Secrets from Google Cloud as a Lookup plugin description: - retrieve secret keys in Secret Manager for use in playbooks @@ -59,7 +58,7 @@ DOCUMENTATION = ''' description: - JSON Object representing the contents of a service_account_file obtained from Google Cloud - defaults to OS env variable GCP_SERVICE_ACCOUNT_INFO if not present - type: jsonarg + type: str required: False access_token: description: @@ -84,6 +83,7 @@ DOCUMENTATION = ''' description: - Authenticaiton scopes for Google Secret Manager type: list + elements: str default: ["https://www.googleapis.com/auth/cloud-platform"] ''' diff --git a/plugins/modules/gcp_appengine_firewall_rule_info.py b/plugins/modules/gcp_appengine_firewall_rule_info.py index 7206b15..ad9a22a 100644 --- a/plugins/modules/gcp_appengine_firewall_rule_info.py +++ b/plugins/modules/gcp_appengine_firewall_rule_info.py @@ -150,7 +150,7 @@ import json def main(): - module = GcpModule(argument_spec=dict()) + module = GcpModule(argument_spec=dict(), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/cloud-platform'] diff --git a/plugins/modules/gcp_bigquery_dataset_info.py b/plugins/modules/gcp_bigquery_dataset_info.py index ca689a6..d972b37 100644 --- a/plugins/modules/gcp_bigquery_dataset_info.py +++ b/plugins/modules/gcp_bigquery_dataset_info.py @@ -311,7 +311,7 @@ import json def main(): - module = GcpModule(argument_spec=dict()) + module = GcpModule(argument_spec=dict(), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/bigquery'] diff --git a/plugins/modules/gcp_bigquery_table.py b/plugins/modules/gcp_bigquery_table.py index 7136fa6..0eaebb1 100644 --- a/plugins/modules/gcp_bigquery_table.py +++ b/plugins/modules/gcp_bigquery_table.py @@ -253,6 +253,7 @@ options: data . required: false type: int + default: 0 source_format: description: - The data format. @@ -328,6 +329,7 @@ options: when reading the data. required: false type: int + default: 0 csv_options: description: - Additional properties to set if sourceFormat is set to CSV. @@ -368,6 +370,7 @@ options: when reading the data. required: false type: int + default: 0 bigtable_options: description: - Additional options if sourceFormat is set to BIGTABLE. diff --git a/plugins/modules/gcp_bigquery_table_info.py b/plugins/modules/gcp_bigquery_table_info.py index a67af95..40d0ae2 100644 --- a/plugins/modules/gcp_bigquery_table_info.py +++ b/plugins/modules/gcp_bigquery_table_info.py @@ -590,7 +590,7 @@ import json def main(): - module = GcpModule(argument_spec=dict(dataset=dict(type='str'))) + module = GcpModule(argument_spec=dict(dataset=dict(type='str')), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/bigquery'] diff --git a/plugins/modules/gcp_bigtable_instance_info.py b/plugins/modules/gcp_bigtable_instance_info.py index 6c8f416..5336f9e 100644 --- a/plugins/modules/gcp_bigtable_instance_info.py +++ b/plugins/modules/gcp_bigtable_instance_info.py @@ -188,7 +188,7 @@ import json def main(): - module = GcpModule(argument_spec=dict()) + module = GcpModule(argument_spec=dict(), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/cloud-platform'] diff --git a/plugins/modules/gcp_cloudbuild_trigger.py b/plugins/modules/gcp_cloudbuild_trigger.py index b252f86..218135a 100644 --- a/plugins/modules/gcp_cloudbuild_trigger.py +++ b/plugins/modules/gcp_cloudbuild_trigger.py @@ -1536,7 +1536,7 @@ def main(): ), ), pubsub_config=dict(type='dict', options=dict(topic=dict(required=True, type='str'), service_account_email=dict(type='str'))), - webhook_config=dict(type='dict', options=dict(secret=dict(required=True, type='str'))), + webhook_config=dict(type='dict', options=dict(secret=dict(required=True, type='str', no_log=True))), build=dict( type='dict', options=dict( @@ -1568,7 +1568,11 @@ def main(): queue_ttl=dict(type='str'), logs_bucket=dict(type='str'), timeout=dict(default='600s', type='str'), - secrets=dict(type='list', elements='dict', options=dict(kms_key_name=dict(required=True, type='str'), secret_env=dict(type='dict'))), + secrets=dict( + type='list', + elements='dict', + no_log=True, + options=dict(kms_key_name=dict(required=True, type='str'), secret_env=dict(type='dict', no_log=True))), steps=dict( required=True, type='list', @@ -1580,7 +1584,7 @@ def main(): id=dict(type='str'), entrypoint=dict(type='str'), dir=dict(type='str'), - secret_env=dict(type='list', elements='str'), + secret_env=dict(type='list', elements='str', no_log=True), timeout=dict(type='str'), timing=dict(type='str'), volumes=dict( @@ -1609,7 +1613,7 @@ def main(): worker_pool=dict(type='str'), logging=dict(type='str'), env=dict(type='list', elements='str'), - secret_env=dict(type='list', elements='str'), + secret_env=dict(type='list', elements='str', no_log=True), volumes=dict(type='list', elements='dict', options=dict(name=dict(type='str'), path=dict(type='str'))), ), ), diff --git a/plugins/modules/gcp_cloudbuild_trigger_info.py b/plugins/modules/gcp_cloudbuild_trigger_info.py index c8a9202..2f6fcfd 100644 --- a/plugins/modules/gcp_cloudbuild_trigger_info.py +++ b/plugins/modules/gcp_cloudbuild_trigger_info.py @@ -814,7 +814,7 @@ import json def main(): - module = GcpModule(argument_spec=dict()) + module = GcpModule(argument_spec=dict(), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/cloud-platform'] diff --git a/plugins/modules/gcp_cloudfunctions_cloud_function_info.py b/plugins/modules/gcp_cloudfunctions_cloud_function_info.py index 075fd86..778f2b5 100644 --- a/plugins/modules/gcp_cloudfunctions_cloud_function_info.py +++ b/plugins/modules/gcp_cloudfunctions_cloud_function_info.py @@ -273,7 +273,7 @@ import json def main(): - module = GcpModule(argument_spec=dict(location=dict(required=True, type='str'))) + module = GcpModule(argument_spec=dict(location=dict(required=True, type='str')), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/cloud-platform'] diff --git a/plugins/modules/gcp_cloudscheduler_job.py b/plugins/modules/gcp_cloudscheduler_job.py index 8a93053..e2adf59 100644 --- a/plugins/modules/gcp_cloudscheduler_job.py +++ b/plugins/modules/gcp_cloudscheduler_job.py @@ -681,8 +681,8 @@ def main(): http_method=dict(type='str'), body=dict(type='str'), headers=dict(type='dict'), - oauth_token=dict(type='dict', options=dict(service_account_email=dict(required=True, type='str'), scope=dict(type='str'))), - oidc_token=dict(type='dict', options=dict(service_account_email=dict(required=True, type='str'), audience=dict(type='str'))), + oauth_token=dict(type='dict', no_log=True, options=dict(service_account_email=dict(required=True, type='str'), scope=dict(type='str'))), + oidc_token=dict(type='dict', no_log=True, options=dict(service_account_email=dict(required=True, type='str'), audience=dict(type='str'))), ), ), region=dict(required=True, type='str'), diff --git a/plugins/modules/gcp_cloudscheduler_job_info.py b/plugins/modules/gcp_cloudscheduler_job_info.py index 29ba123..0c03f71 100644 --- a/plugins/modules/gcp_cloudscheduler_job_info.py +++ b/plugins/modules/gcp_cloudscheduler_job_info.py @@ -379,7 +379,7 @@ import json def main(): - module = GcpModule(argument_spec=dict(region=dict(required=True, type='str'))) + module = GcpModule(argument_spec=dict(region=dict(required=True, type='str')), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/cloud-platform'] diff --git a/plugins/modules/gcp_cloudtasks_queue_info.py b/plugins/modules/gcp_cloudtasks_queue_info.py index 631b10d..f006fe8 100644 --- a/plugins/modules/gcp_cloudtasks_queue_info.py +++ b/plugins/modules/gcp_cloudtasks_queue_info.py @@ -279,7 +279,7 @@ import json def main(): - module = GcpModule(argument_spec=dict(location=dict(required=True, type='str'))) + module = GcpModule(argument_spec=dict(location=dict(required=True, type='str')), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/cloud-platform'] diff --git a/plugins/modules/gcp_compute_address_info.py b/plugins/modules/gcp_compute_address_info.py index 247d892..b919a30 100644 --- a/plugins/modules/gcp_compute_address_info.py +++ b/plugins/modules/gcp_compute_address_info.py @@ -235,7 +235,7 @@ import json def main(): - module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'), region=dict(required=True, type='str'))) + module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'), region=dict(required=True, type='str')), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] diff --git a/plugins/modules/gcp_compute_autoscaler_info.py b/plugins/modules/gcp_compute_autoscaler_info.py index 110c10d..f908fec 100644 --- a/plugins/modules/gcp_compute_autoscaler_info.py +++ b/plugins/modules/gcp_compute_autoscaler_info.py @@ -320,7 +320,7 @@ import json def main(): - module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'), zone=dict(required=True, type='str'))) + module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'), zone=dict(required=True, type='str')), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] diff --git a/plugins/modules/gcp_compute_backend_bucket_info.py b/plugins/modules/gcp_compute_backend_bucket_info.py index aaf40e3..8a50429 100644 --- a/plugins/modules/gcp_compute_backend_bucket_info.py +++ b/plugins/modules/gcp_compute_backend_bucket_info.py @@ -252,7 +252,7 @@ import json def main(): - module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'))) + module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str')), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] diff --git a/plugins/modules/gcp_compute_backend_service.py b/plugins/modules/gcp_compute_backend_service.py index b259848..6decbc8 100644 --- a/plugins/modules/gcp_compute_backend_service.py +++ b/plugins/modules/gcp_compute_backend_service.py @@ -88,7 +88,7 @@ options: completely drained, offering 0% of its available Capacity. Valid range is [0.0,1.0]. required: false - default: '1.0' + default: '1' type: str description: description: @@ -422,6 +422,11 @@ options: elements: str required: false type: list + fingerprint: + description: + - Fingerprint of this resource. A hash of the contents stored in this object. This + field is used in optimistic locking. + type: str description: description: - An optional description of this resource. @@ -478,7 +483,7 @@ options: - The load balancing algorithm used within the scope of the locality. - The possible values are - * ROUND_ROBIN - This is a simple policy in which each healthy backend is selected in round robin order. - - "* LEAST_REQUEST - An O(1) algorithm which selects two random healthy hosts + - "* LEAST_REQUEST - An algorithm which selects two random healthy hosts and picks the host which has fewer active requests." - "* RING_HASH - The ring/modulo hash load balancer implements consistent hashing to backends. The algorithm has the property that the addition/removal of a host @@ -566,6 +571,7 @@ options: be used to disable ejection or to ramp it up slowly. Defaults to 0. required: false type: int + default: 0 enforcing_success_rate: description: - The percentage chance that a host will be actually ejected when an outlier @@ -1210,7 +1216,7 @@ localityLbPolicy: - The load balancing algorithm used within the scope of the locality. - The possible values are - * ROUND_ROBIN - This is a simple policy in which each healthy backend is selected in round robin order. - - "* LEAST_REQUEST - An O(1) algorithm which selects two random healthy hosts and + - "* LEAST_REQUEST - An algorithm which selects two random healthy hosts and picks the host which has fewer active requests." - "* RING_HASH - The ring/modulo hash load balancer implements consistent hashing to backends. The algorithm has the property that the addition/removal of a host @@ -1490,6 +1496,7 @@ def main(): options=dict( cache_key_policy=dict( type="dict", + no_log=False, options=dict( include_host=dict(type="bool"), include_protocol=dict(type="bool"), diff --git a/plugins/modules/gcp_compute_backend_service_info.py b/plugins/modules/gcp_compute_backend_service_info.py index 5e71577..54171d6 100644 --- a/plugins/modules/gcp_compute_backend_service_info.py +++ b/plugins/modules/gcp_compute_backend_service_info.py @@ -549,7 +549,7 @@ resources: - The load balancing algorithm used within the scope of the locality. - The possible values are - * ROUND_ROBIN - This is a simple policy in which each healthy backend is selected in round robin order. - - "* LEAST_REQUEST - An O(1) algorithm which selects two random healthy hosts + - "* LEAST_REQUEST - An algorithm which selects two random healthy hosts and picks the host which has fewer active requests." - "* RING_HASH - The ring/modulo hash load balancer implements consistent hashing to backends. The algorithm has the property that the addition/removal of a @@ -762,7 +762,7 @@ import json def main(): - module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'))) + module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str')), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] diff --git a/plugins/modules/gcp_compute_disk.py b/plugins/modules/gcp_compute_disk.py index 8409cac..d3880ee 100644 --- a/plugins/modules/gcp_compute_disk.py +++ b/plugins/modules/gcp_compute_disk.py @@ -570,14 +570,20 @@ def main(): provisioned_iops=dict(type='int'), zone=dict(required=True, type='str'), source_image_encryption_key=dict( - type='dict', no_log=True, options=dict(raw_key=dict(type='str'), kms_key_name=dict(type='str'), kms_key_service_account=dict(type='str')) + type='dict', + no_log=True, + options=dict(raw_key=dict(type='str', no_log=True), kms_key_name=dict(type='str'), kms_key_service_account=dict(type='str')) ), disk_encryption_key=dict( - type='dict', no_log=True, options=dict(raw_key=dict(type='str'), kms_key_name=dict(type='str'), kms_key_service_account=dict(type='str')) + type='dict', + no_log=True, + options=dict(raw_key=dict(type='str', no_log=True), kms_key_name=dict(type='str'), kms_key_service_account=dict(type='str')) ), source_snapshot=dict(type='dict', no_log=True), source_snapshot_encryption_key=dict( - type='dict', no_log=True, options=dict(raw_key=dict(type='str'), kms_key_name=dict(type='str'), kms_key_service_account=dict(type='str')) + type='dict', + no_log=True, + options=dict(raw_key=dict(type='str', no_log=True), kms_key_name=dict(type='str'), kms_key_service_account=dict(type='str')) ), ) ) diff --git a/plugins/modules/gcp_compute_disk_info.py b/plugins/modules/gcp_compute_disk_info.py index 8e36468..c8e4be1 100644 --- a/plugins/modules/gcp_compute_disk_info.py +++ b/plugins/modules/gcp_compute_disk_info.py @@ -375,7 +375,7 @@ import json def main(): - module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'), zone=dict(required=True, type='str'))) + module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'), zone=dict(required=True, type='str')), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] diff --git a/plugins/modules/gcp_compute_external_vpn_gateway_info.py b/plugins/modules/gcp_compute_external_vpn_gateway_info.py index 6e2e0d0..ffd36e4 100644 --- a/plugins/modules/gcp_compute_external_vpn_gateway_info.py +++ b/plugins/modules/gcp_compute_external_vpn_gateway_info.py @@ -175,7 +175,7 @@ import json def main(): - module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'))) + module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str')), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] diff --git a/plugins/modules/gcp_compute_firewall_info.py b/plugins/modules/gcp_compute_firewall_info.py index dfc105e..e5cb830 100644 --- a/plugins/modules/gcp_compute_firewall_info.py +++ b/plugins/modules/gcp_compute_firewall_info.py @@ -322,7 +322,7 @@ import json def main(): - module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'))) + module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str')), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] diff --git a/plugins/modules/gcp_compute_forwarding_rule_info.py b/plugins/modules/gcp_compute_forwarding_rule_info.py index 87dcb89..d8a8e58 100644 --- a/plugins/modules/gcp_compute_forwarding_rule_info.py +++ b/plugins/modules/gcp_compute_forwarding_rule_info.py @@ -314,7 +314,7 @@ import json def main(): - module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'), region=dict(required=True, type='str'))) + module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'), region=dict(required=True, type='str')), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] diff --git a/plugins/modules/gcp_compute_global_address_info.py b/plugins/modules/gcp_compute_global_address_info.py index 34aa175..377b5f4 100644 --- a/plugins/modules/gcp_compute_global_address_info.py +++ b/plugins/modules/gcp_compute_global_address_info.py @@ -205,7 +205,7 @@ import json def main(): - module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'))) + module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str')), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] diff --git a/plugins/modules/gcp_compute_global_forwarding_rule_info.py b/plugins/modules/gcp_compute_global_forwarding_rule_info.py index 735d622..68f9de4 100644 --- a/plugins/modules/gcp_compute_global_forwarding_rule_info.py +++ b/plugins/modules/gcp_compute_global_forwarding_rule_info.py @@ -289,7 +289,7 @@ import json def main(): - module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'))) + module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str')), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] diff --git a/plugins/modules/gcp_compute_health_check.py b/plugins/modules/gcp_compute_health_check.py index ca4c642..54ab300 100644 --- a/plugins/modules/gcp_compute_health_check.py +++ b/plugins/modules/gcp_compute_health_check.py @@ -457,7 +457,6 @@ options: - Indicates whether or not to export logs. This is false by default, which means no health check logging will be done. required: false - default: 'false' type: bool project: description: diff --git a/plugins/modules/gcp_compute_health_check_info.py b/plugins/modules/gcp_compute_health_check_info.py index b6876f2..78662af 100644 --- a/plugins/modules/gcp_compute_health_check_info.py +++ b/plugins/modules/gcp_compute_health_check_info.py @@ -527,7 +527,7 @@ import json def main(): - module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'))) + module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str')), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] diff --git a/plugins/modules/gcp_compute_http_health_check_info.py b/plugins/modules/gcp_compute_http_health_check_info.py index 547fdc9..cfd394d 100644 --- a/plugins/modules/gcp_compute_http_health_check_info.py +++ b/plugins/modules/gcp_compute_http_health_check_info.py @@ -204,7 +204,7 @@ import json def main(): - module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'))) + module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str')), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] diff --git a/plugins/modules/gcp_compute_https_health_check_info.py b/plugins/modules/gcp_compute_https_health_check_info.py index 58af6d4..4597ca3 100644 --- a/plugins/modules/gcp_compute_https_health_check_info.py +++ b/plugins/modules/gcp_compute_https_health_check_info.py @@ -204,7 +204,7 @@ import json def main(): - module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'))) + module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str')), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] diff --git a/plugins/modules/gcp_compute_image.py b/plugins/modules/gcp_compute_image.py index 66d897a..741536e 100644 --- a/plugins/modules/gcp_compute_image.py +++ b/plugins/modules/gcp_compute_image.py @@ -545,13 +545,13 @@ def main(): disk_size_gb=dict(type='int'), family=dict(type='str'), guest_os_features=dict(type='list', elements='dict', options=dict(type=dict(required=True, type='str'))), - image_encryption_key=dict(type='dict', no_log=True, options=dict(raw_key=dict(type='str'))), + image_encryption_key=dict(type='dict', no_log=True, options=dict(raw_key=dict(type='str', no_log=True))), labels=dict(type='dict'), licenses=dict(type='list', elements='str'), name=dict(required=True, type='str'), raw_disk=dict(type='dict', options=dict(container_type=dict(type='str'), sha1_checksum=dict(type='str'), source=dict(required=True, type='str'))), source_disk=dict(type='dict'), - source_disk_encryption_key=dict(type='dict', no_log=True, options=dict(raw_key=dict(type='str'))), + source_disk_encryption_key=dict(type='dict', no_log=True, options=dict(raw_key=dict(type='str', no_log=True))), source_disk_id=dict(type='str'), source_image=dict(type='dict'), source_snapshot=dict(type='dict'), diff --git a/plugins/modules/gcp_compute_image_info.py b/plugins/modules/gcp_compute_image_info.py index 2f1acd1..dff5da9 100644 --- a/plugins/modules/gcp_compute_image_info.py +++ b/plugins/modules/gcp_compute_image_info.py @@ -351,7 +351,7 @@ import json def main(): - module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'))) + module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str')), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] diff --git a/plugins/modules/gcp_compute_instance.py b/plugins/modules/gcp_compute_instance.py index 1d7f56e..3c30338 100644 --- a/plugins/modules/gcp_compute_instance.py +++ b/plugins/modules/gcp_compute_instance.py @@ -1119,7 +1119,9 @@ def main(): auto_delete=dict(type='bool'), boot=dict(type='bool'), device_name=dict(type='str'), - disk_encryption_key=dict(type='dict', options=dict(raw_key=dict(type='str'), rsa_encrypted_key=dict(type='str'))), + disk_encryption_key=dict(type='dict', + no_log=True, + options=dict(raw_key=dict(type='str', no_log=True), rsa_encrypted_key=dict(type='str', no_log=True))), index=dict(type='int'), initialize_params=dict( type='dict', @@ -1128,7 +1130,7 @@ def main(): disk_size_gb=dict(type='int'), disk_type=dict(type='str'), source_image=dict(type='str', aliases=['image', 'image_family']), - source_image_encryption_key=dict(type='dict', options=dict(raw_key=dict(type='str'))), + source_image_encryption_key=dict(type='dict', no_log=True, options=dict(raw_key=dict(type='str', no_log=True))), ), ), interface=dict(type='str'), diff --git a/plugins/modules/gcp_compute_instance_group_info.py b/plugins/modules/gcp_compute_instance_group_info.py index a8d3045..da030c5 100644 --- a/plugins/modules/gcp_compute_instance_group_info.py +++ b/plugins/modules/gcp_compute_instance_group_info.py @@ -213,7 +213,7 @@ import json def main(): - module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'), zone=dict(required=True, type='str'))) + module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'), zone=dict(required=True, type='str')), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] diff --git a/plugins/modules/gcp_compute_instance_group_manager_info.py b/plugins/modules/gcp_compute_instance_group_manager_info.py index 16a6e57..5caf7c2 100644 --- a/plugins/modules/gcp_compute_instance_group_manager_info.py +++ b/plugins/modules/gcp_compute_instance_group_manager_info.py @@ -288,7 +288,7 @@ import json def main(): - module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'), zone=dict(required=True, type='str'))) + module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'), zone=dict(required=True, type='str')), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] diff --git a/plugins/modules/gcp_compute_instance_info.py b/plugins/modules/gcp_compute_instance_info.py index e12b957..22d87e9 100644 --- a/plugins/modules/gcp_compute_instance_info.py +++ b/plugins/modules/gcp_compute_instance_info.py @@ -621,7 +621,8 @@ def main(): argument_spec=dict( filters=dict(type="list", elements="str"), zone=dict(required=True, type="str"), - ) + ), + supports_check_mode=True ) if not module.params["scopes"]: diff --git a/plugins/modules/gcp_compute_instance_template.py b/plugins/modules/gcp_compute_instance_template.py index ce4a8eb..4eb1a7c 100644 --- a/plugins/modules/gcp_compute_instance_template.py +++ b/plugins/modules/gcp_compute_instance_template.py @@ -1019,7 +1019,9 @@ def main(): auto_delete=dict(type='bool'), boot=dict(type='bool'), device_name=dict(type='str'), - disk_encryption_key=dict(type='dict', no_log=True, options=dict(raw_key=dict(type='str'), rsa_encrypted_key=dict(type='str'))), + disk_encryption_key=dict(type='dict', + no_log=True, + options=dict(raw_key=dict(type='str', no_log=True), rsa_encrypted_key=dict(type='str', no_log=True))), index=dict(type='int'), initialize_params=dict( type='dict', @@ -1028,7 +1030,7 @@ def main(): disk_size_gb=dict(type='int'), disk_type=dict(type='str'), source_image=dict(type='str'), - source_image_encryption_key=dict(type='dict', no_log=True, options=dict(raw_key=dict(type='str'))), + source_image_encryption_key=dict(type='dict', no_log=True, options=dict(raw_key=dict(type='str', no_log=True))), ), ), interface=dict(type='str'), diff --git a/plugins/modules/gcp_compute_instance_template_info.py b/plugins/modules/gcp_compute_instance_template_info.py index 2d337cf..943cf02 100644 --- a/plugins/modules/gcp_compute_instance_template_info.py +++ b/plugins/modules/gcp_compute_instance_template_info.py @@ -560,7 +560,7 @@ import json def main(): - module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'))) + module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str')), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] diff --git a/plugins/modules/gcp_compute_interconnect_attachment_info.py b/plugins/modules/gcp_compute_interconnect_attachment_info.py index 20b90be..0d30dba 100644 --- a/plugins/modules/gcp_compute_interconnect_attachment_info.py +++ b/plugins/modules/gcp_compute_interconnect_attachment_info.py @@ -320,7 +320,7 @@ import json def main(): - module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'), region=dict(required=True, type='str'))) + module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'), region=dict(required=True, type='str')), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] diff --git a/plugins/modules/gcp_compute_network_endpoint_group_info.py b/plugins/modules/gcp_compute_network_endpoint_group_info.py index b36afb0..e34941a 100644 --- a/plugins/modules/gcp_compute_network_endpoint_group_info.py +++ b/plugins/modules/gcp_compute_network_endpoint_group_info.py @@ -192,7 +192,7 @@ import json def main(): - module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'), zone=dict(required=True, type='str'))) + module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'), zone=dict(required=True, type='str')), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] diff --git a/plugins/modules/gcp_compute_network_info.py b/plugins/modules/gcp_compute_network_info.py index 7896fac..854687e 100644 --- a/plugins/modules/gcp_compute_network_info.py +++ b/plugins/modules/gcp_compute_network_info.py @@ -202,7 +202,7 @@ import json def main(): - module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'))) + module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str')), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] diff --git a/plugins/modules/gcp_compute_node_group_info.py b/plugins/modules/gcp_compute_node_group_info.py index 6864c28..a09934e 100644 --- a/plugins/modules/gcp_compute_node_group_info.py +++ b/plugins/modules/gcp_compute_node_group_info.py @@ -219,7 +219,7 @@ import json def main(): - module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'), zone=dict(required=True, type='str'))) + module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'), zone=dict(required=True, type='str')), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] diff --git a/plugins/modules/gcp_compute_node_template_info.py b/plugins/modules/gcp_compute_node_template_info.py index 5219bc6..0a5a53e 100644 --- a/plugins/modules/gcp_compute_node_template_info.py +++ b/plugins/modules/gcp_compute_node_template_info.py @@ -220,7 +220,7 @@ import json def main(): - module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'), region=dict(required=True, type='str'))) + module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'), region=dict(required=True, type='str')), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] diff --git a/plugins/modules/gcp_compute_region_autoscaler_info.py b/plugins/modules/gcp_compute_region_autoscaler_info.py index 64114af..6775944 100644 --- a/plugins/modules/gcp_compute_region_autoscaler_info.py +++ b/plugins/modules/gcp_compute_region_autoscaler_info.py @@ -320,7 +320,7 @@ import json def main(): - module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'), region=dict(required=True, type='str'))) + module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'), region=dict(required=True, type='str')), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] diff --git a/plugins/modules/gcp_compute_region_backend_service.py b/plugins/modules/gcp_compute_region_backend_service.py index 557e92d..832cfe5 100644 --- a/plugins/modules/gcp_compute_region_backend_service.py +++ b/plugins/modules/gcp_compute_region_backend_service.py @@ -476,7 +476,7 @@ options: - The load balancing algorithm used within the scope of the locality. - The possible values are - * ROUND_ROBIN - This is a simple policy in which each healthy backend is selected in round robin order. - - "* LEAST_REQUEST - An O(1) algorithm which selects two random healthy hosts + - "* LEAST_REQUEST - An algorithm which selects two random healthy hosts and picks the host which has fewer active requests." - "* RING_HASH - The ring/modulo hash load balancer implements consistent hashing to backends. The algorithm has the property that the addition/removal of a host @@ -566,6 +566,7 @@ options: be used to disable ejection or to ramp it up slowly. Defaults to 0. required: false type: int + default: 0 enforcing_success_rate: description: - The percentage chance that a host will be actually ejected when an outlier @@ -1222,7 +1223,7 @@ localityLbPolicy: - The load balancing algorithm used within the scope of the locality. - The possible values are - * ROUND_ROBIN - This is a simple policy in which each healthy backend is selected in round robin order. - - "* LEAST_REQUEST - An O(1) algorithm which selects two random healthy hosts and + - "* LEAST_REQUEST - An algorithm which selects two random healthy hosts and picks the host which has fewer active requests." - "* RING_HASH - The ring/modulo hash load balancer implements consistent hashing to backends. The algorithm has the property that the addition/removal of a host @@ -1507,6 +1508,7 @@ def main(): options=dict( cache_key_policy=dict( type='dict', + no_log=False, options=dict( include_host=dict(type='bool'), include_protocol=dict(type='bool'), diff --git a/plugins/modules/gcp_compute_region_backend_service_info.py b/plugins/modules/gcp_compute_region_backend_service_info.py index 685f48f..99c2b75 100644 --- a/plugins/modules/gcp_compute_region_backend_service_info.py +++ b/plugins/modules/gcp_compute_region_backend_service_info.py @@ -559,7 +559,7 @@ resources: - The load balancing algorithm used within the scope of the locality. - The possible values are - * ROUND_ROBIN - This is a simple policy in which each healthy backend is selected in round robin order. - - "* LEAST_REQUEST - An O(1) algorithm which selects two random healthy hosts + - "* LEAST_REQUEST - An algorithm which selects two random healthy hosts and picks the host which has fewer active requests." - "* RING_HASH - The ring/modulo hash load balancer implements consistent hashing to backends. The algorithm has the property that the addition/removal of a @@ -787,7 +787,7 @@ import json def main(): - module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'), region=dict(required=True, type='str'))) + module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'), region=dict(required=True, type='str')), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] diff --git a/plugins/modules/gcp_compute_region_disk.py b/plugins/modules/gcp_compute_region_disk.py index 673d925..705f7aa 100644 --- a/plugins/modules/gcp_compute_region_disk.py +++ b/plugins/modules/gcp_compute_region_disk.py @@ -430,9 +430,9 @@ def main(): replica_zones=dict(required=True, type='list', elements='str'), type=dict(type='str'), region=dict(required=True, type='str'), - disk_encryption_key=dict(type='dict', no_log=True, options=dict(raw_key=dict(type='str'))), + disk_encryption_key=dict(type='dict', no_log=True, options=dict(raw_key=dict(type='str', no_log=True))), source_snapshot=dict(type='dict'), - source_snapshot_encryption_key=dict(type='dict', no_log=True, options=dict(raw_key=dict(type='str'))), + source_snapshot_encryption_key=dict(type='dict', no_log=True, options=dict(raw_key=dict(type='str', no_log=True))), ) ) diff --git a/plugins/modules/gcp_compute_region_disk_info.py b/plugins/modules/gcp_compute_region_disk_info.py index 6e70b4d..76d4a70 100644 --- a/plugins/modules/gcp_compute_region_disk_info.py +++ b/plugins/modules/gcp_compute_region_disk_info.py @@ -293,7 +293,7 @@ import json def main(): - module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'), region=dict(required=True, type='str'))) + module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'), region=dict(required=True, type='str')), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] diff --git a/plugins/modules/gcp_compute_region_health_check.py b/plugins/modules/gcp_compute_region_health_check.py index fcbad21..2e489c1 100644 --- a/plugins/modules/gcp_compute_region_health_check.py +++ b/plugins/modules/gcp_compute_region_health_check.py @@ -452,7 +452,6 @@ options: - Indicates whether or not to export logs. This is false by default, which means no health check logging will be done. required: false - default: 'false' type: bool region: description: diff --git a/plugins/modules/gcp_compute_region_health_check_info.py b/plugins/modules/gcp_compute_region_health_check_info.py index 38b4a7c..8367f32 100644 --- a/plugins/modules/gcp_compute_region_health_check_info.py +++ b/plugins/modules/gcp_compute_region_health_check_info.py @@ -538,7 +538,7 @@ import json def main(): - module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'), region=dict(type='str'))) + module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'), region=dict(type='str')), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] diff --git a/plugins/modules/gcp_compute_region_instance_group_manager_info.py b/plugins/modules/gcp_compute_region_instance_group_manager_info.py index 43816fd..fa5be22 100644 --- a/plugins/modules/gcp_compute_region_instance_group_manager_info.py +++ b/plugins/modules/gcp_compute_region_instance_group_manager_info.py @@ -301,7 +301,7 @@ import json def main(): - module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'), region=dict(required=True, type='str'))) + module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'), region=dict(required=True, type='str')), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] diff --git a/plugins/modules/gcp_compute_region_target_http_proxy_info.py b/plugins/modules/gcp_compute_region_target_http_proxy_info.py index f53beca..6537b31 100644 --- a/plugins/modules/gcp_compute_region_target_http_proxy_info.py +++ b/plugins/modules/gcp_compute_region_target_http_proxy_info.py @@ -176,7 +176,7 @@ import json def main(): - module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'), region=dict(required=True, type='str'))) + module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'), region=dict(required=True, type='str')), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] diff --git a/plugins/modules/gcp_compute_region_target_https_proxy_info.py b/plugins/modules/gcp_compute_region_target_https_proxy_info.py index fdb9f99..f28c382 100644 --- a/plugins/modules/gcp_compute_region_target_https_proxy_info.py +++ b/plugins/modules/gcp_compute_region_target_https_proxy_info.py @@ -183,7 +183,7 @@ import json def main(): - module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'), region=dict(required=True, type='str'))) + module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'), region=dict(required=True, type='str')), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] diff --git a/plugins/modules/gcp_compute_region_url_map.py b/plugins/modules/gcp_compute_region_url_map.py index 1d8c9c3..9428488 100644 --- a/plugins/modules/gcp_compute_region_url_map.py +++ b/plugins/modules/gcp_compute_region_url_map.py @@ -302,7 +302,6 @@ options: is considered a match if the match criteria above are NOT met. Defaults to false. required: false - default: 'false' type: bool prefix_match: description: @@ -364,7 +363,6 @@ options: - Specifies that prefixMatch and fullPathMatch matches are case sensitive. - Defaults to false. required: false - default: 'false' type: bool metadata_filters: description: @@ -499,7 +497,6 @@ options: to the Access- Control-Allow-Credentials header. Defaults to false. required: false - default: 'false' type: bool allow_headers: description: @@ -535,7 +532,6 @@ options: - which indicates that the CORS policy is in effect. Defaults to false. required: false - default: 'false' type: bool expose_headers: description: @@ -882,7 +878,6 @@ options: used in TargetHttpProxys. Setting this true for TargetHttpsProxy is not permitted. The default is set to false. required: false - default: 'false' type: bool path_redirect: description: @@ -926,7 +921,6 @@ options: query portion of the original URL is retained. The default value is false. required: false - default: 'false' type: bool path_rules: description: @@ -993,7 +987,6 @@ options: to the Access- Control-Allow-Credentials header. Defaults to false. required: false - default: 'false' type: bool allow_headers: description: @@ -1373,7 +1366,6 @@ options: used in TargetHttpProxys. Setting this true for TargetHttpsProxy is not permitted. The default is set to false. required: false - default: 'false' type: bool path_redirect: description: @@ -1416,7 +1408,6 @@ options: is removed prior to redirecting the request. If set to false, the query portion of the original URL is retained. required: false - default: 'false' type: bool default_url_redirect: description: @@ -1441,7 +1432,6 @@ options: in TargetHttpProxys. Setting this true for TargetHttpsProxy is not permitted. The default is set to false. required: false - default: 'false' type: bool path_redirect: description: @@ -1483,7 +1473,6 @@ options: removed prior to redirecting the request. If set to false, the query portion of the original URL is retained. required: false - default: 'false' type: bool tests: description: @@ -1541,7 +1530,6 @@ options: Setting this true for TargetHttpsProxy is not permitted. The default is set to false. required: false - default: 'false' type: bool path_redirect: description: @@ -1582,7 +1570,6 @@ options: prior to redirecting the request. If set to false, the query portion of the original URL is retained. required: false - default: 'false' type: bool region: description: diff --git a/plugins/modules/gcp_compute_region_url_map_info.py b/plugins/modules/gcp_compute_region_url_map_info.py index 3b5cdb7..8bcb520 100644 --- a/plugins/modules/gcp_compute_region_url_map_info.py +++ b/plugins/modules/gcp_compute_region_url_map_info.py @@ -1604,7 +1604,7 @@ import json def main(): - module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'), region=dict(required=True, type='str'))) + module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'), region=dict(required=True, type='str')), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] diff --git a/plugins/modules/gcp_compute_reservation.py b/plugins/modules/gcp_compute_reservation.py index c0a9dd0..b8cc710 100644 --- a/plugins/modules/gcp_compute_reservation.py +++ b/plugins/modules/gcp_compute_reservation.py @@ -73,7 +73,6 @@ options: this reservation. Otherwise, it can be consumed by VMs with affinity for any reservation. Defaults to false. required: false - default: 'false' type: bool specific_reservation: description: diff --git a/plugins/modules/gcp_compute_reservation_info.py b/plugins/modules/gcp_compute_reservation_info.py index ba42f85..e6c2197 100644 --- a/plugins/modules/gcp_compute_reservation_info.py +++ b/plugins/modules/gcp_compute_reservation_info.py @@ -258,7 +258,7 @@ import json def main(): - module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'), zone=dict(required=True, type='str'))) + module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'), zone=dict(required=True, type='str')), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] diff --git a/plugins/modules/gcp_compute_resource_policy_info.py b/plugins/modules/gcp_compute_resource_policy_info.py index 545a3bf..2cec554 100644 --- a/plugins/modules/gcp_compute_resource_policy_info.py +++ b/plugins/modules/gcp_compute_resource_policy_info.py @@ -346,7 +346,7 @@ import json def main(): - module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'), region=dict(required=True, type='str'))) + module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'), region=dict(required=True, type='str')), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] diff --git a/plugins/modules/gcp_compute_route_info.py b/plugins/modules/gcp_compute_route_info.py index 86e9ab4..e0a5c4d 100644 --- a/plugins/modules/gcp_compute_route_info.py +++ b/plugins/modules/gcp_compute_route_info.py @@ -217,7 +217,7 @@ import json def main(): - module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'))) + module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str')), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] diff --git a/plugins/modules/gcp_compute_router_info.py b/plugins/modules/gcp_compute_router_info.py index d595d19..057a0b6 100644 --- a/plugins/modules/gcp_compute_router_info.py +++ b/plugins/modules/gcp_compute_router_info.py @@ -222,7 +222,7 @@ import json def main(): - module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'), region=dict(required=True, type='str'))) + module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'), region=dict(required=True, type='str')), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] diff --git a/plugins/modules/gcp_compute_snapshot.py b/plugins/modules/gcp_compute_snapshot.py index 5759fbf..494b2ac 100644 --- a/plugins/modules/gcp_compute_snapshot.py +++ b/plugins/modules/gcp_compute_snapshot.py @@ -388,10 +388,14 @@ def main(): source_disk=dict(required=True, type='dict'), zone=dict(type='str'), snapshot_encryption_key=dict( - type='dict', no_log=True, options=dict(raw_key=dict(type='str'), kms_key_name=dict(type='str'), kms_key_service_account=dict(type='str')) + type='dict', + no_log=True, + options=dict(raw_key=dict(type='str', no_log=True), kms_key_name=dict(type='str'), kms_key_service_account=dict(type='str')) ), source_disk_encryption_key=dict( - type='dict', no_log=True, options=dict(raw_key=dict(type='str'), kms_key_name=dict(type='str'), kms_key_service_account=dict(type='str')) + type='dict', + no_log=True, + options=dict(raw_key=dict(type='str', no_log=True), kms_key_name=dict(type='str'), kms_key_service_account=dict(type='str')) ), ) ) diff --git a/plugins/modules/gcp_compute_snapshot_info.py b/plugins/modules/gcp_compute_snapshot_info.py index 26963f3..d885e89 100644 --- a/plugins/modules/gcp_compute_snapshot_info.py +++ b/plugins/modules/gcp_compute_snapshot_info.py @@ -260,7 +260,7 @@ import json def main(): - module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'))) + module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str')), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] diff --git a/plugins/modules/gcp_compute_ssl_certificate_info.py b/plugins/modules/gcp_compute_ssl_certificate_info.py index 27b4ce2..87b80fa 100644 --- a/plugins/modules/gcp_compute_ssl_certificate_info.py +++ b/plugins/modules/gcp_compute_ssl_certificate_info.py @@ -171,7 +171,7 @@ import json def main(): - module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'))) + module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str')), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] diff --git a/plugins/modules/gcp_compute_ssl_policy_info.py b/plugins/modules/gcp_compute_ssl_policy_info.py index 04219c8..0fd69eb 100644 --- a/plugins/modules/gcp_compute_ssl_policy_info.py +++ b/plugins/modules/gcp_compute_ssl_policy_info.py @@ -207,7 +207,7 @@ import json def main(): - module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'))) + module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str')), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] diff --git a/plugins/modules/gcp_compute_subnetwork_info.py b/plugins/modules/gcp_compute_subnetwork_info.py index 5b126f2..d8ae2c2 100644 --- a/plugins/modules/gcp_compute_subnetwork_info.py +++ b/plugins/modules/gcp_compute_subnetwork_info.py @@ -226,7 +226,7 @@ import json def main(): - module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'), region=dict(required=True, type='str'))) + module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'), region=dict(required=True, type='str')), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] diff --git a/plugins/modules/gcp_compute_target_http_proxy_info.py b/plugins/modules/gcp_compute_target_http_proxy_info.py index 6a78af4..21f3090 100644 --- a/plugins/modules/gcp_compute_target_http_proxy_info.py +++ b/plugins/modules/gcp_compute_target_http_proxy_info.py @@ -171,7 +171,7 @@ import json def main(): - module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'))) + module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str')), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] diff --git a/plugins/modules/gcp_compute_target_https_proxy_info.py b/plugins/modules/gcp_compute_target_https_proxy_info.py index b4186a9..36fab9e 100644 --- a/plugins/modules/gcp_compute_target_https_proxy_info.py +++ b/plugins/modules/gcp_compute_target_https_proxy_info.py @@ -193,7 +193,7 @@ import json def main(): - module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'))) + module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str')), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] diff --git a/plugins/modules/gcp_compute_target_instance_info.py b/plugins/modules/gcp_compute_target_instance_info.py index 791fb0a..5fe4415 100644 --- a/plugins/modules/gcp_compute_target_instance_info.py +++ b/plugins/modules/gcp_compute_target_instance_info.py @@ -178,7 +178,7 @@ import json def main(): - module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'), zone=dict(required=True, type='str'))) + module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'), zone=dict(required=True, type='str')), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] diff --git a/plugins/modules/gcp_compute_target_pool_info.py b/plugins/modules/gcp_compute_target_pool_info.py index 54345a1..58c2db5 100644 --- a/plugins/modules/gcp_compute_target_pool_info.py +++ b/plugins/modules/gcp_compute_target_pool_info.py @@ -224,7 +224,7 @@ import json def main(): - module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'), region=dict(required=True, type='str'))) + module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'), region=dict(required=True, type='str')), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] diff --git a/plugins/modules/gcp_compute_target_ssl_proxy_info.py b/plugins/modules/gcp_compute_target_ssl_proxy_info.py index e23e841..ff6b11d 100644 --- a/plugins/modules/gcp_compute_target_ssl_proxy_info.py +++ b/plugins/modules/gcp_compute_target_ssl_proxy_info.py @@ -183,7 +183,7 @@ import json def main(): - module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'))) + module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str')), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] diff --git a/plugins/modules/gcp_compute_target_tcp_proxy_info.py b/plugins/modules/gcp_compute_target_tcp_proxy_info.py index 65cc775..c4e0619 100644 --- a/plugins/modules/gcp_compute_target_tcp_proxy_info.py +++ b/plugins/modules/gcp_compute_target_tcp_proxy_info.py @@ -175,7 +175,7 @@ import json def main(): - module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'))) + module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str')), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] diff --git a/plugins/modules/gcp_compute_target_vpn_gateway_info.py b/plugins/modules/gcp_compute_target_vpn_gateway_info.py index 8d9763b..67f71be 100644 --- a/plugins/modules/gcp_compute_target_vpn_gateway_info.py +++ b/plugins/modules/gcp_compute_target_vpn_gateway_info.py @@ -186,7 +186,7 @@ import json def main(): - module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'), region=dict(required=True, type='str'))) + module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'), region=dict(required=True, type='str')), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] diff --git a/plugins/modules/gcp_compute_url_map.py b/plugins/modules/gcp_compute_url_map.py index 2856e59..f71ea3e 100644 --- a/plugins/modules/gcp_compute_url_map.py +++ b/plugins/modules/gcp_compute_url_map.py @@ -70,6 +70,11 @@ options: the resource. required: false type: str + fingerprint: + description: + - Fingerprint of this resource. A hash of the contents stored in this object. This + field is used in optimistic locking. + type: str header_action: description: - Specifies changes to request and response headers that need to take effect for @@ -357,7 +362,6 @@ options: to the Access- Control-Allow-Credentials header. Defaults to false. required: false - default: 'false' type: bool allow_headers: description: @@ -737,7 +741,6 @@ options: used in TargetHttpProxys. Setting this true for TargetHttpsProxy is not permitted. The default is set to false. required: false - default: 'false' type: bool path_redirect: description: @@ -780,7 +783,6 @@ options: is removed prior to redirecting the request. If set to false, the query portion of the original URL is retained. required: false - default: 'false' type: bool route_rules: description: @@ -948,7 +950,6 @@ options: is considered a match if the match criteria above are NOT met. Defaults to false. required: false - default: 'false' type: bool prefix_match: description: @@ -1010,7 +1011,6 @@ options: - Specifies that prefixMatch and fullPathMatch matches are case sensitive. - Defaults to false. required: false - default: 'false' type: bool metadata_filters: description: @@ -1145,7 +1145,6 @@ options: to the Access- Control-Allow-Credentials header. Defaults to false. required: false - default: 'false' type: bool allow_headers: description: @@ -1181,7 +1180,6 @@ options: - which indicates that the CORS policy is in effect. Defaults to false. required: false - default: 'false' type: bool expose_headers: description: @@ -1531,7 +1529,6 @@ options: - Setting this true for TargetHttpsProxy is not permitted. Defaults to false. required: false - default: 'false' type: bool path_redirect: description: @@ -1569,7 +1566,6 @@ options: is removed prior to redirecting the request. If set to false, the query portion of the original URL is retained. Defaults to false. required: false - default: 'false' type: bool default_url_redirect: description: @@ -1594,7 +1590,6 @@ options: in TargetHttpProxys. Setting this true for TargetHttpsProxy is not permitted. The default is set to false. required: false - default: 'false' type: bool path_redirect: description: @@ -1636,7 +1631,6 @@ options: removed prior to redirecting the request. If set to false, the query portion of the original URL is retained. required: false - default: 'false' type: bool default_route_action: description: @@ -1733,7 +1727,6 @@ options: - If true, headerValue is set for the header, discarding any values that were set for that header. required: false - default: 'false' type: bool response_headers_to_remove: description: @@ -1767,7 +1760,6 @@ options: - If true, headerValue is set for the header, discarding any values that were set for that header. required: false - default: 'false' type: bool url_rewrite: description: @@ -1960,14 +1952,12 @@ options: that the actual request can include user credentials. - This translates to the Access-Control-Allow-Credentials header. required: false - default: 'false' type: bool disabled: description: - If true, specifies the CORS policy is disabled. The default value is false, which indicates that the CORS policy is in effect. required: false - default: 'false' type: bool fault_injection_policy: description: @@ -2095,7 +2085,6 @@ options: Setting this true for TargetHttpsProxy is not permitted. The default is set to false. required: false - default: 'false' type: bool path_redirect: description: @@ -2136,7 +2125,6 @@ options: prior to redirecting the request. If set to false, the query portion of the original URL is retained. The default is set to false. required: false - default: 'false' type: bool default_route_action: description: @@ -2231,8 +2219,6 @@ options: exist for the header. - If true, headerValue is set for the header, discarding any values that were set for that header. - required: false - default: 'false' type: bool response_headers_to_remove: description: @@ -2266,7 +2252,6 @@ options: - If true, headerValue is set for the header, discarding any values that were set for that header. required: false - default: 'false' type: bool url_rewrite: description: @@ -2456,14 +2441,12 @@ options: the actual request can include user credentials. - This translates to the Access-Control-Allow-Credentials header. required: false - default: 'false' type: bool disabled: description: - If true, specifies the CORS policy is disabled. The default value is false, which indicates that the CORS policy is in effect. required: false - default: 'false' type: bool fault_injection_policy: description: diff --git a/plugins/modules/gcp_compute_url_map_info.py b/plugins/modules/gcp_compute_url_map_info.py index fa5431a..8ee58d7 100644 --- a/plugins/modules/gcp_compute_url_map_info.py +++ b/plugins/modules/gcp_compute_url_map_info.py @@ -2487,7 +2487,7 @@ import json def main(): - module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'))) + module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str')), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] diff --git a/plugins/modules/gcp_compute_vpn_tunnel_info.py b/plugins/modules/gcp_compute_vpn_tunnel_info.py index 7b3430a..9cf5e16 100644 --- a/plugins/modules/gcp_compute_vpn_tunnel_info.py +++ b/plugins/modules/gcp_compute_vpn_tunnel_info.py @@ -247,7 +247,7 @@ import json def main(): - module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'), region=dict(required=True, type='str'))) + module = GcpModule(argument_spec=dict(filters=dict(type='list', elements='str'), region=dict(required=True, type='str')), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] diff --git a/plugins/modules/gcp_container_cluster.py b/plugins/modules/gcp_container_cluster.py index 0a5d949..34596a5 100644 --- a/plugins/modules/gcp_container_cluster.py +++ b/plugins/modules/gcp_container_cluster.py @@ -1528,7 +1528,9 @@ def main(): accelerators=dict(type='list', elements='dict', options=dict(accelerator_count=dict(type='str'), accelerator_type=dict(type='str'))), disk_type=dict(type='str'), min_cpu_platform=dict(type='str'), - taints=dict(type='list', elements='dict', options=dict(key=dict(type='str'), value=dict(type='str'), effect=dict(type='str'))), + taints=dict(type='list', + elements='dict', + options=dict(key=dict(type='str', no_log=False), value=dict(type='str'), effect=dict(type='str'))), shielded_instance_config=dict( type='dict', options=dict(enable_secure_boot=dict(type='bool'), enable_integrity_monitoring=dict(type='bool')) ), @@ -1538,7 +1540,7 @@ def main(): type='dict', options=dict( username=dict(type='str'), - password=dict(type='str'), + password=dict(type='str', no_log=True), client_certificate_config=dict(type='dict', options=dict(issue_client_certificate=dict(type='bool'))), ), ), diff --git a/plugins/modules/gcp_container_cluster_info.py b/plugins/modules/gcp_container_cluster_info.py index 0b90433..d94e564 100644 --- a/plugins/modules/gcp_container_cluster_info.py +++ b/plugins/modules/gcp_container_cluster_info.py @@ -859,7 +859,7 @@ import json def main(): - module = GcpModule(argument_spec=dict(location=dict(required=True, type='str', aliases=['region', 'zone']))) + module = GcpModule(argument_spec=dict(location=dict(required=True, type='str', aliases=['region', 'zone'])), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/cloud-platform'] diff --git a/plugins/modules/gcp_container_node_pool.py b/plugins/modules/gcp_container_node_pool.py index 1740837..a0b9c71 100644 --- a/plugins/modules/gcp_container_node_pool.py +++ b/plugins/modules/gcp_container_node_pool.py @@ -764,7 +764,9 @@ def main(): accelerators=dict(type='list', elements='dict', options=dict(accelerator_count=dict(type='int'), accelerator_type=dict(type='str'))), disk_type=dict(type='str'), min_cpu_platform=dict(type='str'), - taints=dict(type='list', elements='dict', options=dict(key=dict(type='str'), value=dict(type='str'), effect=dict(type='str'))), + taints=dict(type='list', + elements='dict', + options=dict(key=dict(type='str', no_log=False), value=dict(type='str'), effect=dict(type='str'))), shielded_instance_config=dict( type='dict', options=dict(enable_secure_boot=dict(type='bool'), enable_integrity_monitoring=dict(type='bool')) ), diff --git a/plugins/modules/gcp_container_node_pool_info.py b/plugins/modules/gcp_container_node_pool_info.py index e27412a..a3de8ac 100644 --- a/plugins/modules/gcp_container_node_pool_info.py +++ b/plugins/modules/gcp_container_node_pool_info.py @@ -450,7 +450,8 @@ import json def main(): - module = GcpModule(argument_spec=dict(location=dict(required=True, type='str', aliases=['region', 'zone']), cluster=dict(required=True, type='dict'))) + module = GcpModule(argument_spec=dict(location=dict(required=True, type='str', aliases=['region', 'zone']), cluster=dict(required=True, type='dict')), + supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/cloud-platform'] diff --git a/plugins/modules/gcp_dns_managed_zone.py b/plugins/modules/gcp_dns_managed_zone.py index 83c327a..8aec272 100644 --- a/plugins/modules/gcp_dns_managed_zone.py +++ b/plugins/modules/gcp_dns_managed_zone.py @@ -508,8 +508,12 @@ def main(): default_key_specs=dict( type='list', elements='dict', + no_log=False, options=dict( - algorithm=dict(type='str'), key_length=dict(type='int'), key_type=dict(type='str'), kind=dict(default='dns#dnsKeySpec', type='str') + algorithm=dict(type='str'), + key_length=dict(type='int', no_log=False), + key_type=dict(type='str'), + kind=dict(default='dns#dnsKeySpec', type='str') ), ), ), diff --git a/plugins/modules/gcp_dns_managed_zone_info.py b/plugins/modules/gcp_dns_managed_zone_info.py index 333bfce..d39aef2 100644 --- a/plugins/modules/gcp_dns_managed_zone_info.py +++ b/plugins/modules/gcp_dns_managed_zone_info.py @@ -308,7 +308,7 @@ import json def main(): - module = GcpModule(argument_spec=dict(dns_name=dict(type='list', elements='str'))) + module = GcpModule(argument_spec=dict(dns_name=dict(type='list', elements='str')), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/ndev.clouddns.readwrite'] diff --git a/plugins/modules/gcp_dns_resource_record_set_info.py b/plugins/modules/gcp_dns_resource_record_set_info.py index 622c310..1dba0a7 100644 --- a/plugins/modules/gcp_dns_resource_record_set_info.py +++ b/plugins/modules/gcp_dns_resource_record_set_info.py @@ -160,7 +160,7 @@ import json def main(): - module = GcpModule(argument_spec=dict(managed_zone=dict(required=True, type='dict'))) + module = GcpModule(argument_spec=dict(managed_zone=dict(required=True, type='dict')), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/ndev.clouddns.readwrite'] diff --git a/plugins/modules/gcp_filestore_instance_info.py b/plugins/modules/gcp_filestore_instance_info.py index 55ab27c..af81ccd 100644 --- a/plugins/modules/gcp_filestore_instance_info.py +++ b/plugins/modules/gcp_filestore_instance_info.py @@ -213,7 +213,7 @@ import json def main(): - module = GcpModule(argument_spec=dict(zone=dict(required=True, type='str'))) + module = GcpModule(argument_spec=dict(zone=dict(required=True, type='str')), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/cloud-platform'] diff --git a/plugins/modules/gcp_iam_role_info.py b/plugins/modules/gcp_iam_role_info.py index 35874cc..879bd08 100644 --- a/plugins/modules/gcp_iam_role_info.py +++ b/plugins/modules/gcp_iam_role_info.py @@ -156,7 +156,7 @@ import json def main(): - module = GcpModule(argument_spec=dict()) + module = GcpModule(argument_spec=dict(), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/iam'] diff --git a/plugins/modules/gcp_iam_service_account_info.py b/plugins/modules/gcp_iam_service_account_info.py index b201718..6e33023 100644 --- a/plugins/modules/gcp_iam_service_account_info.py +++ b/plugins/modules/gcp_iam_service_account_info.py @@ -155,7 +155,7 @@ import json def main(): - module = GcpModule(argument_spec=dict()) + module = GcpModule(argument_spec=dict(), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/iam'] diff --git a/plugins/modules/gcp_kms_crypto_key.py b/plugins/modules/gcp_kms_crypto_key.py index 40bfae9..4829081 100644 --- a/plugins/modules/gcp_kms_crypto_key.py +++ b/plugins/modules/gcp_kms_crypto_key.py @@ -104,6 +104,7 @@ options: - If set to true, the request will create a CryptoKey without any CryptoKeyVersions. You must use the `google_kms_key_ring_import_job` resource to import the CryptoKeyVersion. required: false + default: false type: bool project: description: @@ -284,7 +285,7 @@ def main(): purpose=dict(default='ENCRYPT_DECRYPT', type='str'), rotation_period=dict(type='str'), version_template=dict(type='dict', options=dict(algorithm=dict(required=True, type='str'), protection_level=dict(type='str'))), - key_ring=dict(required=True, type='str'), + key_ring=dict(required=True, type='str', no_log=False), skip_initial_version_creation=dict(type='bool', default=False), ) ) diff --git a/plugins/modules/gcp_kms_crypto_key_info.py b/plugins/modules/gcp_kms_crypto_key_info.py index bc40b48..621b84a 100644 --- a/plugins/modules/gcp_kms_crypto_key_info.py +++ b/plugins/modules/gcp_kms_crypto_key_info.py @@ -198,7 +198,7 @@ import json def main(): - module = GcpModule(argument_spec=dict(key_ring=dict(required=True, type='str'))) + module = GcpModule(argument_spec=dict(key_ring=dict(required=True, type='str', no_log=False)), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/cloudkms'] diff --git a/plugins/modules/gcp_kms_key_ring_info.py b/plugins/modules/gcp_kms_key_ring_info.py index 39d3de9..d0b1fc7 100644 --- a/plugins/modules/gcp_kms_key_ring_info.py +++ b/plugins/modules/gcp_kms_key_ring_info.py @@ -151,7 +151,7 @@ import json def main(): - module = GcpModule(argument_spec=dict(location=dict(required=True, type='str'))) + module = GcpModule(argument_spec=dict(location=dict(required=True, type='str')), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/cloudkms'] diff --git a/plugins/modules/gcp_logging_metric.py b/plugins/modules/gcp_logging_metric.py index f897324..262895d 100644 --- a/plugins/modules/gcp_logging_metric.py +++ b/plugins/modules/gcp_logging_metric.py @@ -528,7 +528,8 @@ def main(): labels=dict( type='list', elements='dict', - options=dict(key=dict(required=True, type='str'), description=dict(type='str'), value_type=dict(default='STRING', type='str')), + options=dict(key=dict(required=True, type='str', no_log=False), + description=dict(type='str'), value_type=dict(default='STRING', type='str')), ), display_name=dict(type='str'), ), diff --git a/plugins/modules/gcp_logging_metric_info.py b/plugins/modules/gcp_logging_metric_info.py index 76c323c..c1a3cde 100644 --- a/plugins/modules/gcp_logging_metric_info.py +++ b/plugins/modules/gcp_logging_metric_info.py @@ -302,7 +302,7 @@ import json def main(): - module = GcpModule(argument_spec=dict()) + module = GcpModule(argument_spec=dict(), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/cloud-platform'] diff --git a/plugins/modules/gcp_mlengine_model_info.py b/plugins/modules/gcp_mlengine_model_info.py index 11f28ae..3328927 100644 --- a/plugins/modules/gcp_mlengine_model_info.py +++ b/plugins/modules/gcp_mlengine_model_info.py @@ -169,7 +169,7 @@ import json def main(): - module = GcpModule(argument_spec=dict()) + module = GcpModule(argument_spec=dict(), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/cloud-platform'] diff --git a/plugins/modules/gcp_mlengine_version_info.py b/plugins/modules/gcp_mlengine_version_info.py index ecf9281..04523a7 100644 --- a/plugins/modules/gcp_mlengine_version_info.py +++ b/plugins/modules/gcp_mlengine_version_info.py @@ -260,7 +260,7 @@ import json def main(): - module = GcpModule(argument_spec=dict(model=dict(required=True, type='dict'))) + module = GcpModule(argument_spec=dict(model=dict(required=True, type='dict')), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/cloud-platform'] diff --git a/plugins/modules/gcp_pubsub_subscription.py b/plugins/modules/gcp_pubsub_subscription.py index 41a0c2d..af101c8 100644 --- a/plugins/modules/gcp_pubsub_subscription.py +++ b/plugins/modules/gcp_pubsub_subscription.py @@ -93,7 +93,7 @@ options: max_duration: description: - Subscription writes a new output file if the specified value of max duration is exceeded. Min 60s, max 600s. - required: true + required: false type: str max_bytes: description: @@ -108,7 +108,7 @@ options: output_format: description: - Specify the format of the output files that are to be stored in a Cloud Storage bucket as text or avro. - required: true + required: false type: str write_metadata: description: @@ -654,7 +654,9 @@ def main(): push_config=dict( type='dict', options=dict( - oidc_token=dict(type='dict', options=dict(service_account_email=dict(required=True, type='str'), audience=dict(type='str'))), + oidc_token=dict(type='dict', + no_log=False, + options=dict(service_account_email=dict(required=True, type='str'), audience=dict(type='str'))), push_endpoint=dict(required=True, type='str'), attributes=dict(type='dict'), ), diff --git a/plugins/modules/gcp_pubsub_subscription_info.py b/plugins/modules/gcp_pubsub_subscription_info.py index b911131..dd20c93 100644 --- a/plugins/modules/gcp_pubsub_subscription_info.py +++ b/plugins/modules/gcp_pubsub_subscription_info.py @@ -333,7 +333,7 @@ import json def main(): - module = GcpModule(argument_spec=dict()) + module = GcpModule(argument_spec=dict(), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/pubsub'] diff --git a/plugins/modules/gcp_pubsub_topic_info.py b/plugins/modules/gcp_pubsub_topic_info.py index 0dc6f4e..7b8627d 100644 --- a/plugins/modules/gcp_pubsub_topic_info.py +++ b/plugins/modules/gcp_pubsub_topic_info.py @@ -180,7 +180,7 @@ import json def main(): - module = GcpModule(argument_spec=dict()) + module = GcpModule(argument_spec=dict(), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/pubsub'] diff --git a/plugins/modules/gcp_redis_instance.py b/plugins/modules/gcp_redis_instance.py index ac8724a..cef6eca 100644 --- a/plugins/modules/gcp_redis_instance.py +++ b/plugins/modules/gcp_redis_instance.py @@ -60,7 +60,6 @@ options: to "true" AUTH is enabled on the instance. - Default value is "false" meaning AUTH is disabled. required: false - default: 'false' type: bool authorized_network: description: diff --git a/plugins/modules/gcp_redis_instance_info.py b/plugins/modules/gcp_redis_instance_info.py index 33a9241..593b063 100644 --- a/plugins/modules/gcp_redis_instance_info.py +++ b/plugins/modules/gcp_redis_instance_info.py @@ -291,7 +291,7 @@ import json def main(): - module = GcpModule(argument_spec=dict(region=dict(required=True, type='str'))) + module = GcpModule(argument_spec=dict(region=dict(required=True, type='str')), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/cloud-platform'] diff --git a/plugins/modules/gcp_resourcemanager_project_info.py b/plugins/modules/gcp_resourcemanager_project_info.py index 7d97829..1e747b7 100644 --- a/plugins/modules/gcp_resourcemanager_project_info.py +++ b/plugins/modules/gcp_resourcemanager_project_info.py @@ -86,7 +86,7 @@ options: description: - Indicates the number of projects that should be returned by the API request - type: str + type: int notes: - for authentication, you can set service_account_file using the C(GCP_SERVICE_ACCOUNT_FILE) env variable. @@ -190,7 +190,7 @@ import json def main(): module = GcpModule(argument_spec=dict( page_size=dict(type='int') - )) + ), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/cloud-platform'] diff --git a/plugins/modules/gcp_runtimeconfig_config_info.py b/plugins/modules/gcp_runtimeconfig_config_info.py index 063c1ce..c082140 100644 --- a/plugins/modules/gcp_runtimeconfig_config_info.py +++ b/plugins/modules/gcp_runtimeconfig_config_info.py @@ -135,7 +135,7 @@ import json def main(): - module = GcpModule(argument_spec=dict()) + module = GcpModule(argument_spec=dict(), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/cloudruntimeconfig'] diff --git a/plugins/modules/gcp_runtimeconfig_variable_info.py b/plugins/modules/gcp_runtimeconfig_variable_info.py index ec1adb9..0e619dc 100644 --- a/plugins/modules/gcp_runtimeconfig_variable_info.py +++ b/plugins/modules/gcp_runtimeconfig_variable_info.py @@ -151,7 +151,7 @@ import json def main(): - module = GcpModule(argument_spec=dict(config=dict(required=True, type='str'))) + module = GcpModule(argument_spec=dict(config=dict(required=True, type='str')), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/cloudruntimeconfig'] diff --git a/plugins/modules/gcp_secret_manager.py b/plugins/modules/gcp_secret_manager.py index a02a402..a1e325e 100644 --- a/plugins/modules/gcp_secret_manager.py +++ b/plugins/modules/gcp_secret_manager.py @@ -25,7 +25,7 @@ description: - Add/remove versions of secrets. - Please note that other features like etags, replication, annontation expected to be managed outside of Ansible. short_description: Access and Update Google Cloud Secrets Manager objects -author: Dave Costakos @RedHat +author: Dave Costakos (@davecostakos) requirements: - python >= 2.6 - requests >= 2.18.4 @@ -44,6 +44,7 @@ options: - application - machineaccount - serviceaccount + - accesstoken service_account_contents: description: - The contents of a Service Account JSON file, either in a dictionary or as a @@ -58,11 +59,21 @@ options: - An optional service account email address if machineaccount is selected and the user does not wish to use the default email. type: str + access_token: + description: + - An OAuth2 access token if credential type is accesstoken. + type: str scopes: description: - Array of scopes to be used type: list elements: str + env_type: + description: + - Specifies which Ansible environment you're running this module within. + - This should not be set unless you know what you're doing. + - This only alters the User Agent string for any API requests. + type: str name: description: - Name of the secret to be used @@ -105,6 +116,7 @@ options: - only used in creation - Note that the "value" piece of a label must contain only readable chars type: dict + default: {} notes: - 'API Reference: U(https://cloud.google.com/secret-manager/docs/reference/rests)' - 'Official Documentation: U(https://cloud.google.com/secret-manager/docs/overview)' @@ -171,41 +183,42 @@ resources: description: List of resources returned: always type: complex - name: - description: - - The name of the secret - returned: success - type: str - version: - description: - - the version number of the secret returned - returned: success - type: str - url: - description: - - the Google Cloud URL used to make the request - returned: success - type: str - status_code: - description: - - the HTTP status code of the response to Google Cloud - returned: success - type: str - msg: - description: - - A message indicating what was done (or not done) - returned: success, failure - type: str - value: - description: - - The decrypted secret value, please use care with this - returned: success - type: str - payload: - description: - - The base 64 secret payload including CRC for validation - retunred: success - type: dict + contains: + name: + description: + - The name of the secret + returned: success + type: str + version: + description: + - the version number of the secret returned + returned: success + type: str + url: + description: + - the Google Cloud URL used to make the request + returned: success + type: str + status_code: + description: + - the HTTP status code of the response to Google Cloud + returned: success + type: str + msg: + description: + - A message indicating what was done (or not done) + returned: success, failure + type: str + value: + description: + - The decrypted secret value, please use care with this + returned: success + type: str + payload: + description: + - The base 64 secret payload including CRC for validation + returned: success + type: dict ''' ################################################################################ diff --git a/plugins/modules/gcp_serviceusage_service_info.py b/plugins/modules/gcp_serviceusage_service_info.py index 1c49512..b5c88d3 100644 --- a/plugins/modules/gcp_serviceusage_service_info.py +++ b/plugins/modules/gcp_serviceusage_service_info.py @@ -178,7 +178,7 @@ import json def main(): - module = GcpModule(argument_spec=dict()) + module = GcpModule(argument_spec=dict(), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/cloud-platform'] diff --git a/plugins/modules/gcp_sourcerepo_repository_info.py b/plugins/modules/gcp_sourcerepo_repository_info.py index 4a0d809..607e624 100644 --- a/plugins/modules/gcp_sourcerepo_repository_info.py +++ b/plugins/modules/gcp_sourcerepo_repository_info.py @@ -142,7 +142,7 @@ import json def main(): - module = GcpModule(argument_spec=dict()) + module = GcpModule(argument_spec=dict(), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/cloud-platform'] diff --git a/plugins/modules/gcp_spanner_database_info.py b/plugins/modules/gcp_spanner_database_info.py index 2f45553..84a7b47 100644 --- a/plugins/modules/gcp_spanner_database_info.py +++ b/plugins/modules/gcp_spanner_database_info.py @@ -167,7 +167,7 @@ import json def main(): - module = GcpModule(argument_spec=dict(instance=dict(required=True, type='dict'))) + module = GcpModule(argument_spec=dict(instance=dict(required=True, type='dict')), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/spanner.admin'] diff --git a/plugins/modules/gcp_spanner_instance_info.py b/plugins/modules/gcp_spanner_instance_info.py index 90e25dd..64bc7a0 100644 --- a/plugins/modules/gcp_spanner_instance_info.py +++ b/plugins/modules/gcp_spanner_instance_info.py @@ -165,7 +165,7 @@ import json def main(): - module = GcpModule(argument_spec=dict()) + module = GcpModule(argument_spec=dict(), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/spanner.admin'] diff --git a/plugins/modules/gcp_sql_database_info.py b/plugins/modules/gcp_sql_database_info.py index dfc9bc9..adb9046 100644 --- a/plugins/modules/gcp_sql_database_info.py +++ b/plugins/modules/gcp_sql_database_info.py @@ -158,7 +158,7 @@ import json def main(): - module = GcpModule(argument_spec=dict(instance=dict(required=True, type='str'))) + module = GcpModule(argument_spec=dict(instance=dict(required=True, type='str')), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/sqlservice.admin'] diff --git a/plugins/modules/gcp_sql_instance.py b/plugins/modules/gcp_sql_instance.py index 9f18a2f..9999dd1 100644 --- a/plugins/modules/gcp_sql_instance.py +++ b/plugins/modules/gcp_sql_instance.py @@ -848,11 +848,11 @@ def main(): options=dict( ca_certificate=dict(type='str'), client_certificate=dict(type='str'), - client_key=dict(type='str'), + client_key=dict(type='str', no_log=True), connect_retry_interval=dict(type='int'), dump_file_path=dict(type='str'), master_heartbeat_period=dict(type='int'), - password=dict(type='str'), + password=dict(type='str', no_log=True), ssl_cipher=dict(type='str'), username=dict(type='str'), verify_server_certificate=dict(type='bool'), diff --git a/plugins/modules/gcp_sql_instance_info.py b/plugins/modules/gcp_sql_instance_info.py index afbc7c3..8f734c3 100644 --- a/plugins/modules/gcp_sql_instance_info.py +++ b/plugins/modules/gcp_sql_instance_info.py @@ -519,7 +519,7 @@ import json def main(): - module = GcpModule(argument_spec=dict()) + module = GcpModule(argument_spec=dict(), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/sqlservice.admin'] diff --git a/plugins/modules/gcp_sql_ssl_cert.py b/plugins/modules/gcp_sql_ssl_cert.py index 02519b3..4d06ce2 100644 --- a/plugins/modules/gcp_sql_ssl_cert.py +++ b/plugins/modules/gcp_sql_ssl_cert.py @@ -234,7 +234,7 @@ def main(): expiration_time=dict(type='str'), instance=dict(required=True, type='dict'), sha1_fingerprint=dict(type='str'), - private_key=dict(type='str'), + private_key=dict(type='str', no_log=False), ) ) diff --git a/plugins/modules/gcp_sql_user.py b/plugins/modules/gcp_sql_user.py index ca2cbf4..b049410 100644 --- a/plugins/modules/gcp_sql_user.py +++ b/plugins/modules/gcp_sql_user.py @@ -195,7 +195,7 @@ def main(): host=dict(required=True, type='str'), name=dict(required=True, type='str'), instance=dict(required=True, type='dict'), - password=dict(type='str'), + password=dict(type='str', no_log=True), ) ) diff --git a/plugins/modules/gcp_sql_user_info.py b/plugins/modules/gcp_sql_user_info.py index 762a735..b03048d 100644 --- a/plugins/modules/gcp_sql_user_info.py +++ b/plugins/modules/gcp_sql_user_info.py @@ -158,7 +158,7 @@ import json def main(): - module = GcpModule(argument_spec=dict(instance=dict(required=True, type='dict'))) + module = GcpModule(argument_spec=dict(instance=dict(required=True, type='dict')), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/sqlservice.admin'] diff --git a/plugins/modules/gcp_storage_default_object_acl.py b/plugins/modules/gcp_storage_default_object_acl.py index 5bfea2f..45c615f 100644 --- a/plugins/modules/gcp_storage_default_object_acl.py +++ b/plugins/modules/gcp_storage_default_object_acl.py @@ -62,6 +62,10 @@ options: - The name of the bucket. required: true type: dict + object: + description: + - The target of the ACL. + type: str entity: description: - 'The entity holding the permission, in one of the following forms: * user-{{userId}} diff --git a/plugins/modules/gcp_storage_object.py b/plugins/modules/gcp_storage_object.py index 1411d0f..aef0829 100644 --- a/plugins/modules/gcp_storage_object.py +++ b/plugins/modules/gcp_storage_object.py @@ -43,7 +43,6 @@ options: src: description: - Source location of file (may be local machine or cloud depending on action). Cloud locations need to be urlencoded including slashes. - required: true type: path dest: description: diff --git a/plugins/modules/gcp_tpu_node.py b/plugins/modules/gcp_tpu_node.py index 32d599e..87bcc47 100644 --- a/plugins/modules/gcp_tpu_node.py +++ b/plugins/modules/gcp_tpu_node.py @@ -94,7 +94,6 @@ options: to peer the TPU Node to is a Shared VPC network, the node must be created with this this field enabled. required: false - default: 'false' type: bool scheduling_config: description: diff --git a/plugins/modules/gcp_tpu_node_info.py b/plugins/modules/gcp_tpu_node_info.py index a01d08a..5c8007e 100644 --- a/plugins/modules/gcp_tpu_node_info.py +++ b/plugins/modules/gcp_tpu_node_info.py @@ -227,7 +227,7 @@ import json def main(): - module = GcpModule(argument_spec=dict(zone=dict(type='str'))) + module = GcpModule(argument_spec=dict(zone=dict(type='str')), supports_check_mode=True) if not module.params['scopes']: module.params['scopes'] = ['https://www.googleapis.com/auth/cloud-platform'] diff --git a/roles/gcloud/defaults/main.yml b/roles/gcloud/defaults/main.yml index deeec69..6e27932 100644 --- a/roles/gcloud/defaults/main.yml +++ b/roles/gcloud/defaults/main.yml @@ -12,7 +12,7 @@ gcloud_yum_baseurl: https://packages.cloud.google.com/yum/repos/cloud-sdk-el7-x8 gcloud_yum_key: https://packages.cloud.google.com/yum/doc/yum-key.gpg # default values for gcloud archive installation -gcloud_version: 268.0.0 +gcloud_version: 505.0.0 gcloud_archive_name: google-cloud-sdk-{{ gcloud_version }}-linux-{{ ansible_architecture }}.tar.gz gcloud_archive_url: https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/{{ gcloud_archive_name }} gcloud_archive_path: /usr/lib diff --git a/roles/gcloud/meta/main.yml b/roles/gcloud/meta/main.yml index 049ed0e..2567187 100644 --- a/roles/gcloud/meta/main.yml +++ b/roles/gcloud/meta/main.yml @@ -8,6 +8,9 @@ galaxy_info: platforms: - name: Ubuntu versions: + - focal + - jammy + - noble - precise - trusty - xenial diff --git a/roles/gcloud/tasks/package/debian.yml b/roles/gcloud/tasks/package/debian.yml index 726c79e..7fc5867 100644 --- a/roles/gcloud/tasks/package/debian.yml +++ b/roles/gcloud/tasks/package/debian.yml @@ -9,20 +9,20 @@ ansible.builtin.apt_repository: repo: deb {{ gcloud_apt_url }} {{ gcloud_apt_repo }} main state: present - filename: google-cloud-sdk + filename: google-cloud-cli -- name: Gcloud | Debian | Install the google-cloud-sdk package +- name: Gcloud | Debian | Install the google-cloud-cli package ansible.builtin.apt: - name: google-cloud-sdk + name: google-cloud-cli update_cache: "yes" register: task_result until: task_result is success retries: 10 delay: 2 -- name: Gcloud | Debian | Install the google-cloud-sdk additional components +- name: Gcloud | Debian | Install the google-cloud-cli additional components ansible.builtin.apt: - name: google-cloud-sdk-{{ item }} + name: google-cloud-cli-{{ item }} update_cache: "yes" register: task_result until: task_result is success