Merge pull request #655 from ansible-collections/issue-613

Fix errors reported by ansible-test sanity
This commit is contained in:
Chris Hawk 2025-01-14 12:01:57 -08:00 committed by GitHub
commit a1bcf46abc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
126 changed files with 264 additions and 233 deletions

View file

@ -25,8 +25,8 @@ jobs:
# and test against the minimum version of Python supported by both. If/when we change # and test against the minimum version of Python supported by both. If/when we change
# the integration tests to support parallelism we can revisit. # the integration tests to support parallelism we can revisit.
ansible_version: ansible_version:
- stable-2.16
- stable-2.17 - stable-2.17
- stable-2.18
steps: steps:
- name: check out code - name: check out code
uses: actions/checkout@v4 uses: actions/checkout@v4
@ -35,7 +35,7 @@ jobs:
- name: Set up Python - name: Set up Python
uses: actions/setup-python@v4 uses: actions/setup-python@v4
with: 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 - name: Install dependencies
run: pip install -r requirements.txt run: pip install -r requirements.txt
- name: Install ansible-base (${{ matrix.ansible_version }}) - name: Install ansible-base (${{ matrix.ansible_version }})
@ -70,4 +70,4 @@ jobs:
# run tests # run tests
- name: Run integration tests - name: Run integration tests
# Add the -vvv flag to print out more output # 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

View file

@ -13,10 +13,9 @@ jobs:
# of ansible-core and each major version of Python supported by both. # 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 # https://docs.ansible.com/ansible/latest/reference_appendices/release_and_maintenance.html#ansible-core-support-matrix
ansible_version: ansible_version:
- stable-2.16
- stable-2.17 - stable-2.17
- stable-2.18
python_version: python_version:
- '3.10'
- '3.11' - '3.11'
- '3.12' - '3.12'
steps: steps:
@ -46,10 +45,9 @@ jobs:
strategy: strategy:
matrix: matrix:
ansible_version: ansible_version:
- stable-2.16
- stable-2.17 - stable-2.17
- stable-2.18
python_version: python_version:
- '3.10'
- '3.11' - '3.11'
- '3.12' - '3.12'
steps: steps:

View file

@ -31,10 +31,10 @@ jobs:
with: with:
path: ansible_collections/google/cloud path: ansible_collections/google/cloud
- name: Set up Python 3.10 - name: Set up Python 3.11
uses: actions/setup-python@v4 uses: actions/setup-python@v4
with: with:
python-version: '3.10' python-version: '3.11'
- name: Install dependencies - name: Install dependencies
run: | run: |

View file

@ -26,10 +26,10 @@ jobs:
with: with:
path: ansible_collections/google/cloud path: ansible_collections/google/cloud
- name: Set up Python 3.10 - name: Set up Python 3.11
uses: actions/setup-python@v4 uses: actions/setup-python@v4
with: with:
python-version: '3.10' python-version: '3.11'
- name: Install dependencies - name: Install dependencies
run: | run: |

View file

@ -1,5 +1,5 @@
--- ---
requires_ansible: ">=2.16.0" requires_ansible: ">=2.17.0"
action_groups: action_groups:
gcp: gcp:

View file

@ -46,7 +46,7 @@ RUN yum -y install python-pip
{% endif %} {% endif %}
{# Install of Python3 #} {# 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 \ RUN apt-get update \
&& apt-get install -y --no-install-recommends \ && apt-get install -y --no-install-recommends \
apt-utils python3-setuptools python3-pip apt-utils python3-setuptools python3-pip
@ -99,13 +99,13 @@ RUN locale-gen en_US.UTF-8
RUN mkdir -p /etc/ansible RUN mkdir -p /etc/ansible
RUN echo "[local]\nlocalhost ansible_connection=local" > /etc/ansible/hosts 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"] 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"] VOLUME ["/sys/fs/cgroup", "/tmp", "/run"]
{% endif %} {% endif %}
{% if item.image in ["centos:7", "centos:8"] %} {% if item.image in ["centos:7", "centos:8"] %}
CMD ["/usr/sbin/init"] 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"] CMD ["/lib/systemd/systemd"]
{% endif %} {% endif %}

View file

@ -9,13 +9,13 @@ lint: |
ansible-lint ansible-lint
platforms: platforms:
- name: instance - name: instance
image: ubuntu:20.04 image: ubuntu:24.04
privileged: true privileged: true
ansible.builtin.command: /lib/systemd/systemd ansible.builtin.command: /lib/systemd/systemd
volumes: volumes:
- /sys/fs/cgroup:/sys/fs/cgroup:ro - /sys/fs/cgroup:/sys/fs/cgroup:ro
- name: instance - name: instance
image: debian:10 image: debian:12
privileged: true privileged: true
ansible.builtin.command: /lib/systemd/systemd ansible.builtin.command: /lib/systemd/systemd
volumes: volumes:

View file

@ -46,7 +46,7 @@ RUN yum -y install python-pip
{% endif %} {% endif %}
{# Install of Python3 #} {# 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 \ RUN apt-get update \
&& apt-get install -y --no-install-recommends \ && apt-get install -y --no-install-recommends \
apt-utils python3-setuptools python3-pip apt-utils python3-setuptools python3-pip
@ -99,13 +99,13 @@ RUN locale-gen en_US.UTF-8
RUN mkdir -p /etc/ansible RUN mkdir -p /etc/ansible
RUN echo "[local]\nlocalhost ansible_connection=local" > /etc/ansible/hosts 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"] 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"] VOLUME ["/sys/fs/cgroup", "/tmp", "/run"]
{% endif %} {% endif %}
{% if item.image in ["centos:7", "centos:8"] %} {% if item.image in ["centos:7", "centos:8"] %}
CMD ["/usr/sbin/init"] 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"] CMD ["/lib/systemd/systemd"]
{% endif %} {% endif %}

View file

@ -9,13 +9,13 @@ lint: |
ansible-lint ansible-lint
platforms: platforms:
- name: instance - name: instance
image: ubuntu:20.04 image: ubuntu:24.04
privileged: true privileged: true
ansible.builtin.command: /lib/systemd/systemd ansible.builtin.command: /lib/systemd/systemd
volumes: volumes:
- /sys/fs/cgroup:/sys/fs/cgroup:ro - /sys/fs/cgroup:/sys/fs/cgroup:ro
- name: instance - name: instance
image: debian:10 image: debian:12
privileged: true privileged: true
ansible.builtin.command: /lib/systemd/systemd ansible.builtin.command: /lib/systemd/systemd
volumes: volumes:

View file

@ -7,7 +7,6 @@ __metaclass__ = type
DOCUMENTATION = """ DOCUMENTATION = """
name: gcp_compute name: gcp_compute
plugin_type: inventory
short_description: Google Cloud Compute Engine inventory source short_description: Google Cloud Compute Engine inventory source
requirements: requirements:
- requests >= 2.18.4 - requests >= 2.18.4
@ -27,14 +26,17 @@ DOCUMENTATION = """
description: A list of regions in which to describe GCE instances. description: A list of regions in which to describe GCE instances.
If none provided, it defaults to all zones available to a given project. If none provided, it defaults to all zones available to a given project.
type: list type: list
elements: string
folders: folders:
description: A folder that contains many projects description: A folder that contains many projects
type: list type: list
required: False required: False
elements: string
projects: projects:
description: A list of projects in which to describe GCE instances. description: A list of projects in which to describe GCE instances.
type: list type: list
required: False required: False
elements: string
filters: filters:
description: > description: >
A list of filter value pairs. Available filters are listed here 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 Each additional filter in the list will be added as an AND condition
(filter1 and filter2) (filter1 and filter2)
type: list type: list
elements: string
hostnames: hostnames:
description: A list of options that describe the ordering for which description: A list of options that describe the ordering for which
hostnames should be assigned. Currently supported hostnames are hostnames should be assigned. Currently supported hostnames are
'public_ip', 'private_ip', 'name' or 'labels.vm_name'. 'public_ip', 'private_ip', 'name' or 'labels.vm_name'.
default: ['public_ip', 'private_ip', 'name'] default: ['public_ip', 'private_ip', 'name']
type: list type: list
elements: string
name_suffix: name_suffix:
description: Custom domain suffix. If set, this string will be appended to all hosts. description: Custom domain suffix. If set, this string will be appended to all hosts.
default: "" default: ""
@ -63,6 +67,7 @@ DOCUMENTATION = """
scopes: scopes:
description: list of authentication scopes description: list of authentication scopes
type: list type: list
elements: string
default: ['https://www.googleapis.com/auth/compute'] default: ['https://www.googleapis.com/auth/compute']
env: env:
- name: GCP_SCOPES - name: GCP_SCOPES

View file

@ -5,9 +5,8 @@ from __future__ import (absolute_import, division, print_function)
__metaclass__ = type __metaclass__ = type
DOCUMENTATION = ''' DOCUMENTATION = '''
author:
- Dave Costakos <dcostako@redhat.com>
name: gcp_secret_manager name: gcp_secret_manager
author: Dave Costakos (@davecostakos) <dcostako@redhat.com>
short_description: Get Secrets from Google Cloud as a Lookup plugin short_description: Get Secrets from Google Cloud as a Lookup plugin
description: description:
- retrieve secret keys in Secret Manager for use in playbooks - retrieve secret keys in Secret Manager for use in playbooks
@ -59,7 +58,7 @@ DOCUMENTATION = '''
description: description:
- JSON Object representing the contents of a service_account_file obtained from Google Cloud - 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 - defaults to OS env variable GCP_SERVICE_ACCOUNT_INFO if not present
type: jsonarg type: str
required: False required: False
access_token: access_token:
description: description:
@ -84,6 +83,7 @@ DOCUMENTATION = '''
description: description:
- Authenticaiton scopes for Google Secret Manager - Authenticaiton scopes for Google Secret Manager
type: list type: list
elements: str
default: ["https://www.googleapis.com/auth/cloud-platform"] default: ["https://www.googleapis.com/auth/cloud-platform"]
''' '''

View file

@ -150,7 +150,7 @@ import json
def main(): def main():
module = GcpModule(argument_spec=dict()) module = GcpModule(argument_spec=dict(), supports_check_mode=True)
if not module.params['scopes']: if not module.params['scopes']:
module.params['scopes'] = ['https://www.googleapis.com/auth/cloud-platform'] module.params['scopes'] = ['https://www.googleapis.com/auth/cloud-platform']

View file

@ -311,7 +311,7 @@ import json
def main(): def main():
module = GcpModule(argument_spec=dict()) module = GcpModule(argument_spec=dict(), supports_check_mode=True)
if not module.params['scopes']: if not module.params['scopes']:
module.params['scopes'] = ['https://www.googleapis.com/auth/bigquery'] module.params['scopes'] = ['https://www.googleapis.com/auth/bigquery']

View file

@ -253,6 +253,7 @@ options:
data . data .
required: false required: false
type: int type: int
default: 0
source_format: source_format:
description: description:
- The data format. - The data format.
@ -328,6 +329,7 @@ options:
when reading the data. when reading the data.
required: false required: false
type: int type: int
default: 0
csv_options: csv_options:
description: description:
- Additional properties to set if sourceFormat is set to CSV. - Additional properties to set if sourceFormat is set to CSV.
@ -368,6 +370,7 @@ options:
when reading the data. when reading the data.
required: false required: false
type: int type: int
default: 0
bigtable_options: bigtable_options:
description: description:
- Additional options if sourceFormat is set to BIGTABLE. - Additional options if sourceFormat is set to BIGTABLE.

View file

@ -590,7 +590,7 @@ import json
def main(): 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']: if not module.params['scopes']:
module.params['scopes'] = ['https://www.googleapis.com/auth/bigquery'] module.params['scopes'] = ['https://www.googleapis.com/auth/bigquery']

View file

@ -188,7 +188,7 @@ import json
def main(): def main():
module = GcpModule(argument_spec=dict()) module = GcpModule(argument_spec=dict(), supports_check_mode=True)
if not module.params['scopes']: if not module.params['scopes']:
module.params['scopes'] = ['https://www.googleapis.com/auth/cloud-platform'] module.params['scopes'] = ['https://www.googleapis.com/auth/cloud-platform']

View file

@ -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'))), 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( build=dict(
type='dict', type='dict',
options=dict( options=dict(
@ -1568,7 +1568,11 @@ def main():
queue_ttl=dict(type='str'), queue_ttl=dict(type='str'),
logs_bucket=dict(type='str'), logs_bucket=dict(type='str'),
timeout=dict(default='600s', 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( steps=dict(
required=True, required=True,
type='list', type='list',
@ -1580,7 +1584,7 @@ def main():
id=dict(type='str'), id=dict(type='str'),
entrypoint=dict(type='str'), entrypoint=dict(type='str'),
dir=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'), timeout=dict(type='str'),
timing=dict(type='str'), timing=dict(type='str'),
volumes=dict( volumes=dict(
@ -1609,7 +1613,7 @@ def main():
worker_pool=dict(type='str'), worker_pool=dict(type='str'),
logging=dict(type='str'), logging=dict(type='str'),
env=dict(type='list', elements='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'))), volumes=dict(type='list', elements='dict', options=dict(name=dict(type='str'), path=dict(type='str'))),
), ),
), ),

View file

@ -814,7 +814,7 @@ import json
def main(): def main():
module = GcpModule(argument_spec=dict()) module = GcpModule(argument_spec=dict(), supports_check_mode=True)
if not module.params['scopes']: if not module.params['scopes']:
module.params['scopes'] = ['https://www.googleapis.com/auth/cloud-platform'] module.params['scopes'] = ['https://www.googleapis.com/auth/cloud-platform']

View file

@ -273,7 +273,7 @@ import json
def main(): 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']: if not module.params['scopes']:
module.params['scopes'] = ['https://www.googleapis.com/auth/cloud-platform'] module.params['scopes'] = ['https://www.googleapis.com/auth/cloud-platform']

View file

@ -681,8 +681,8 @@ def main():
http_method=dict(type='str'), http_method=dict(type='str'),
body=dict(type='str'), body=dict(type='str'),
headers=dict(type='dict'), headers=dict(type='dict'),
oauth_token=dict(type='dict', options=dict(service_account_email=dict(required=True, type='str'), scope=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', options=dict(service_account_email=dict(required=True, type='str'), audience=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'), region=dict(required=True, type='str'),

View file

@ -379,7 +379,7 @@ import json
def main(): 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']: if not module.params['scopes']:
module.params['scopes'] = ['https://www.googleapis.com/auth/cloud-platform'] module.params['scopes'] = ['https://www.googleapis.com/auth/cloud-platform']

View file

@ -279,7 +279,7 @@ import json
def main(): 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']: if not module.params['scopes']:
module.params['scopes'] = ['https://www.googleapis.com/auth/cloud-platform'] module.params['scopes'] = ['https://www.googleapis.com/auth/cloud-platform']

View file

@ -235,7 +235,7 @@ import json
def main(): 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']: if not module.params['scopes']:
module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] module.params['scopes'] = ['https://www.googleapis.com/auth/compute']

View file

@ -320,7 +320,7 @@ import json
def main(): 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']: if not module.params['scopes']:
module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] module.params['scopes'] = ['https://www.googleapis.com/auth/compute']

View file

@ -252,7 +252,7 @@ import json
def main(): 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']: if not module.params['scopes']:
module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] module.params['scopes'] = ['https://www.googleapis.com/auth/compute']

View file

@ -88,7 +88,7 @@ options:
completely drained, offering 0% of its available Capacity. Valid range is completely drained, offering 0% of its available Capacity. Valid range is
[0.0,1.0]. [0.0,1.0].
required: false required: false
default: '1.0' default: '1'
type: str type: str
description: description:
description: description:
@ -422,6 +422,11 @@ options:
elements: str elements: str
required: false required: false
type: list 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:
description: description:
- An optional description of this resource. - An optional description of this resource.
@ -478,7 +483,7 @@ options:
- The load balancing algorithm used within the scope of the locality. - 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 - The possible values are - * ROUND_ROBIN - This is a simple policy in which each
healthy backend is selected in round robin order. 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." and picks the host which has fewer active requests."
- "* RING_HASH - The ring/modulo hash load balancer implements consistent hashing - "* 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 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. be used to disable ejection or to ramp it up slowly. Defaults to 0.
required: false required: false
type: int type: int
default: 0
enforcing_success_rate: enforcing_success_rate:
description: description:
- The percentage chance that a host will be actually ejected when an outlier - 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 load balancing algorithm used within the scope of the locality.
- The possible values are - * ROUND_ROBIN - This is a simple policy in which each - The possible values are - * ROUND_ROBIN - This is a simple policy in which each
healthy backend is selected in round robin order. 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." picks the host which has fewer active requests."
- "* RING_HASH - The ring/modulo hash load balancer implements consistent hashing - "* 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 to backends. The algorithm has the property that the addition/removal of a host
@ -1490,6 +1496,7 @@ def main():
options=dict( options=dict(
cache_key_policy=dict( cache_key_policy=dict(
type="dict", type="dict",
no_log=False,
options=dict( options=dict(
include_host=dict(type="bool"), include_host=dict(type="bool"),
include_protocol=dict(type="bool"), include_protocol=dict(type="bool"),

View file

@ -549,7 +549,7 @@ resources:
- The load balancing algorithm used within the scope of the locality. - The load balancing algorithm used within the scope of the locality.
- The possible values are - * ROUND_ROBIN - This is a simple policy in which - The possible values are - * ROUND_ROBIN - This is a simple policy in which
each healthy backend is selected in round robin order. 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." and picks the host which has fewer active requests."
- "* RING_HASH - The ring/modulo hash load balancer implements consistent hashing - "* RING_HASH - The ring/modulo hash load balancer implements consistent hashing
to backends. The algorithm has the property that the addition/removal of a to backends. The algorithm has the property that the addition/removal of a
@ -762,7 +762,7 @@ import json
def main(): 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']: if not module.params['scopes']:
module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] module.params['scopes'] = ['https://www.googleapis.com/auth/compute']

View file

@ -570,14 +570,20 @@ def main():
provisioned_iops=dict(type='int'), provisioned_iops=dict(type='int'),
zone=dict(required=True, type='str'), zone=dict(required=True, type='str'),
source_image_encryption_key=dict( 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( 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=dict(type='dict', no_log=True),
source_snapshot_encryption_key=dict( 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'))
), ),
) )
) )

View file

@ -375,7 +375,7 @@ import json
def main(): 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']: if not module.params['scopes']:
module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] module.params['scopes'] = ['https://www.googleapis.com/auth/compute']

View file

@ -175,7 +175,7 @@ import json
def main(): 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']: if not module.params['scopes']:
module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] module.params['scopes'] = ['https://www.googleapis.com/auth/compute']

View file

@ -322,7 +322,7 @@ import json
def main(): 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']: if not module.params['scopes']:
module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] module.params['scopes'] = ['https://www.googleapis.com/auth/compute']

View file

@ -314,7 +314,7 @@ import json
def main(): 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']: if not module.params['scopes']:
module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] module.params['scopes'] = ['https://www.googleapis.com/auth/compute']

View file

@ -205,7 +205,7 @@ import json
def main(): 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']: if not module.params['scopes']:
module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] module.params['scopes'] = ['https://www.googleapis.com/auth/compute']

View file

@ -289,7 +289,7 @@ import json
def main(): 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']: if not module.params['scopes']:
module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] module.params['scopes'] = ['https://www.googleapis.com/auth/compute']

View file

@ -457,7 +457,6 @@ options:
- Indicates whether or not to export logs. This is false by default, which - Indicates whether or not to export logs. This is false by default, which
means no health check logging will be done. means no health check logging will be done.
required: false required: false
default: 'false'
type: bool type: bool
project: project:
description: description:

View file

@ -527,7 +527,7 @@ import json
def main(): 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']: if not module.params['scopes']:
module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] module.params['scopes'] = ['https://www.googleapis.com/auth/compute']

View file

@ -204,7 +204,7 @@ import json
def main(): 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']: if not module.params['scopes']:
module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] module.params['scopes'] = ['https://www.googleapis.com/auth/compute']

View file

@ -204,7 +204,7 @@ import json
def main(): 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']: if not module.params['scopes']:
module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] module.params['scopes'] = ['https://www.googleapis.com/auth/compute']

View file

@ -545,13 +545,13 @@ def main():
disk_size_gb=dict(type='int'), disk_size_gb=dict(type='int'),
family=dict(type='str'), family=dict(type='str'),
guest_os_features=dict(type='list', elements='dict', options=dict(type=dict(required=True, 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'), labels=dict(type='dict'),
licenses=dict(type='list', elements='str'), licenses=dict(type='list', elements='str'),
name=dict(required=True, type='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'))), 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=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_disk_id=dict(type='str'),
source_image=dict(type='dict'), source_image=dict(type='dict'),
source_snapshot=dict(type='dict'), source_snapshot=dict(type='dict'),

View file

@ -351,7 +351,7 @@ import json
def main(): 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']: if not module.params['scopes']:
module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] module.params['scopes'] = ['https://www.googleapis.com/auth/compute']

View file

@ -1119,7 +1119,9 @@ def main():
auto_delete=dict(type='bool'), auto_delete=dict(type='bool'),
boot=dict(type='bool'), boot=dict(type='bool'),
device_name=dict(type='str'), 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'), index=dict(type='int'),
initialize_params=dict( initialize_params=dict(
type='dict', type='dict',
@ -1128,7 +1130,7 @@ def main():
disk_size_gb=dict(type='int'), disk_size_gb=dict(type='int'),
disk_type=dict(type='str'), disk_type=dict(type='str'),
source_image=dict(type='str', aliases=['image', 'image_family']), 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'), interface=dict(type='str'),

View file

@ -213,7 +213,7 @@ import json
def main(): 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']: if not module.params['scopes']:
module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] module.params['scopes'] = ['https://www.googleapis.com/auth/compute']

View file

@ -288,7 +288,7 @@ import json
def main(): 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']: if not module.params['scopes']:
module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] module.params['scopes'] = ['https://www.googleapis.com/auth/compute']

View file

@ -621,7 +621,8 @@ def main():
argument_spec=dict( argument_spec=dict(
filters=dict(type="list", elements="str"), filters=dict(type="list", elements="str"),
zone=dict(required=True, type="str"), zone=dict(required=True, type="str"),
) ),
supports_check_mode=True
) )
if not module.params["scopes"]: if not module.params["scopes"]:

View file

@ -1019,7 +1019,9 @@ def main():
auto_delete=dict(type='bool'), auto_delete=dict(type='bool'),
boot=dict(type='bool'), boot=dict(type='bool'),
device_name=dict(type='str'), 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'), index=dict(type='int'),
initialize_params=dict( initialize_params=dict(
type='dict', type='dict',
@ -1028,7 +1030,7 @@ def main():
disk_size_gb=dict(type='int'), disk_size_gb=dict(type='int'),
disk_type=dict(type='str'), disk_type=dict(type='str'),
source_image=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'), interface=dict(type='str'),

View file

@ -560,7 +560,7 @@ import json
def main(): 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']: if not module.params['scopes']:
module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] module.params['scopes'] = ['https://www.googleapis.com/auth/compute']

View file

@ -320,7 +320,7 @@ import json
def main(): 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']: if not module.params['scopes']:
module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] module.params['scopes'] = ['https://www.googleapis.com/auth/compute']

View file

@ -192,7 +192,7 @@ import json
def main(): 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']: if not module.params['scopes']:
module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] module.params['scopes'] = ['https://www.googleapis.com/auth/compute']

View file

@ -202,7 +202,7 @@ import json
def main(): 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']: if not module.params['scopes']:
module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] module.params['scopes'] = ['https://www.googleapis.com/auth/compute']

View file

@ -219,7 +219,7 @@ import json
def main(): 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']: if not module.params['scopes']:
module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] module.params['scopes'] = ['https://www.googleapis.com/auth/compute']

View file

@ -220,7 +220,7 @@ import json
def main(): 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']: if not module.params['scopes']:
module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] module.params['scopes'] = ['https://www.googleapis.com/auth/compute']

View file

@ -320,7 +320,7 @@ import json
def main(): 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']: if not module.params['scopes']:
module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] module.params['scopes'] = ['https://www.googleapis.com/auth/compute']

View file

@ -476,7 +476,7 @@ options:
- The load balancing algorithm used within the scope of the locality. - 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 - The possible values are - * ROUND_ROBIN - This is a simple policy in which each
healthy backend is selected in round robin order. 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." and picks the host which has fewer active requests."
- "* RING_HASH - The ring/modulo hash load balancer implements consistent hashing - "* 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 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. be used to disable ejection or to ramp it up slowly. Defaults to 0.
required: false required: false
type: int type: int
default: 0
enforcing_success_rate: enforcing_success_rate:
description: description:
- The percentage chance that a host will be actually ejected when an outlier - 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 load balancing algorithm used within the scope of the locality.
- The possible values are - * ROUND_ROBIN - This is a simple policy in which each - The possible values are - * ROUND_ROBIN - This is a simple policy in which each
healthy backend is selected in round robin order. 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." picks the host which has fewer active requests."
- "* RING_HASH - The ring/modulo hash load balancer implements consistent hashing - "* 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 to backends. The algorithm has the property that the addition/removal of a host
@ -1507,6 +1508,7 @@ def main():
options=dict( options=dict(
cache_key_policy=dict( cache_key_policy=dict(
type='dict', type='dict',
no_log=False,
options=dict( options=dict(
include_host=dict(type='bool'), include_host=dict(type='bool'),
include_protocol=dict(type='bool'), include_protocol=dict(type='bool'),

View file

@ -559,7 +559,7 @@ resources:
- The load balancing algorithm used within the scope of the locality. - The load balancing algorithm used within the scope of the locality.
- The possible values are - * ROUND_ROBIN - This is a simple policy in which - The possible values are - * ROUND_ROBIN - This is a simple policy in which
each healthy backend is selected in round robin order. 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." and picks the host which has fewer active requests."
- "* RING_HASH - The ring/modulo hash load balancer implements consistent hashing - "* RING_HASH - The ring/modulo hash load balancer implements consistent hashing
to backends. The algorithm has the property that the addition/removal of a to backends. The algorithm has the property that the addition/removal of a
@ -787,7 +787,7 @@ import json
def main(): 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']: if not module.params['scopes']:
module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] module.params['scopes'] = ['https://www.googleapis.com/auth/compute']

View file

@ -430,9 +430,9 @@ def main():
replica_zones=dict(required=True, type='list', elements='str'), replica_zones=dict(required=True, type='list', elements='str'),
type=dict(type='str'), type=dict(type='str'),
region=dict(required=True, 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=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))),
) )
) )

View file

@ -293,7 +293,7 @@ import json
def main(): 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']: if not module.params['scopes']:
module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] module.params['scopes'] = ['https://www.googleapis.com/auth/compute']

View file

@ -452,7 +452,6 @@ options:
- Indicates whether or not to export logs. This is false by default, which - Indicates whether or not to export logs. This is false by default, which
means no health check logging will be done. means no health check logging will be done.
required: false required: false
default: 'false'
type: bool type: bool
region: region:
description: description:

View file

@ -538,7 +538,7 @@ import json
def main(): 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']: if not module.params['scopes']:
module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] module.params['scopes'] = ['https://www.googleapis.com/auth/compute']

View file

@ -301,7 +301,7 @@ import json
def main(): 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']: if not module.params['scopes']:
module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] module.params['scopes'] = ['https://www.googleapis.com/auth/compute']

View file

@ -176,7 +176,7 @@ import json
def main(): 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']: if not module.params['scopes']:
module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] module.params['scopes'] = ['https://www.googleapis.com/auth/compute']

View file

@ -183,7 +183,7 @@ import json
def main(): 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']: if not module.params['scopes']:
module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] module.params['scopes'] = ['https://www.googleapis.com/auth/compute']

View file

@ -302,7 +302,6 @@ options:
is considered a match if the match criteria above are NOT met. is considered a match if the match criteria above are NOT met.
Defaults to false. Defaults to false.
required: false required: false
default: 'false'
type: bool type: bool
prefix_match: prefix_match:
description: description:
@ -364,7 +363,6 @@ options:
- Specifies that prefixMatch and fullPathMatch matches are case sensitive. - Specifies that prefixMatch and fullPathMatch matches are case sensitive.
- Defaults to false. - Defaults to false.
required: false required: false
default: 'false'
type: bool type: bool
metadata_filters: metadata_filters:
description: description:
@ -499,7 +497,6 @@ options:
to the Access- Control-Allow-Credentials header. Defaults to to the Access- Control-Allow-Credentials header. Defaults to
false. false.
required: false required: false
default: 'false'
type: bool type: bool
allow_headers: allow_headers:
description: description:
@ -535,7 +532,6 @@ options:
- which indicates that the CORS policy is in effect. Defaults - which indicates that the CORS policy is in effect. Defaults
to false. to false.
required: false required: false
default: 'false'
type: bool type: bool
expose_headers: expose_headers:
description: description:
@ -882,7 +878,6 @@ options:
used in TargetHttpProxys. Setting this true for TargetHttpsProxy used in TargetHttpProxys. Setting this true for TargetHttpsProxy
is not permitted. The default is set to false. is not permitted. The default is set to false.
required: false required: false
default: 'false'
type: bool type: bool
path_redirect: path_redirect:
description: description:
@ -926,7 +921,6 @@ options:
query portion of the original URL is retained. The default value query portion of the original URL is retained. The default value
is false. is false.
required: false required: false
default: 'false'
type: bool type: bool
path_rules: path_rules:
description: description:
@ -993,7 +987,6 @@ options:
to the Access- Control-Allow-Credentials header. Defaults to to the Access- Control-Allow-Credentials header. Defaults to
false. false.
required: false required: false
default: 'false'
type: bool type: bool
allow_headers: allow_headers:
description: description:
@ -1373,7 +1366,6 @@ options:
used in TargetHttpProxys. Setting this true for TargetHttpsProxy used in TargetHttpProxys. Setting this true for TargetHttpsProxy
is not permitted. The default is set to false. is not permitted. The default is set to false.
required: false required: false
default: 'false'
type: bool type: bool
path_redirect: path_redirect:
description: description:
@ -1416,7 +1408,6 @@ options:
is removed prior to redirecting the request. If set to false, the is removed prior to redirecting the request. If set to false, the
query portion of the original URL is retained. query portion of the original URL is retained.
required: false required: false
default: 'false'
type: bool type: bool
default_url_redirect: default_url_redirect:
description: description:
@ -1441,7 +1432,6 @@ options:
in TargetHttpProxys. Setting this true for TargetHttpsProxy is not permitted. in TargetHttpProxys. Setting this true for TargetHttpsProxy is not permitted.
The default is set to false. The default is set to false.
required: false required: false
default: 'false'
type: bool type: bool
path_redirect: path_redirect:
description: description:
@ -1483,7 +1473,6 @@ options:
removed prior to redirecting the request. If set to false, the query removed prior to redirecting the request. If set to false, the query
portion of the original URL is retained. portion of the original URL is retained.
required: false required: false
default: 'false'
type: bool type: bool
tests: tests:
description: description:
@ -1541,7 +1530,6 @@ options:
Setting this true for TargetHttpsProxy is not permitted. The default is Setting this true for TargetHttpsProxy is not permitted. The default is
set to false. set to false.
required: false required: false
default: 'false'
type: bool type: bool
path_redirect: path_redirect:
description: description:
@ -1582,7 +1570,6 @@ options:
prior to redirecting the request. If set to false, the query portion of prior to redirecting the request. If set to false, the query portion of
the original URL is retained. the original URL is retained.
required: false required: false
default: 'false'
type: bool type: bool
region: region:
description: description:

View file

@ -1604,7 +1604,7 @@ import json
def main(): 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']: if not module.params['scopes']:
module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] module.params['scopes'] = ['https://www.googleapis.com/auth/compute']

View file

@ -73,7 +73,6 @@ options:
this reservation. Otherwise, it can be consumed by VMs with affinity for any this reservation. Otherwise, it can be consumed by VMs with affinity for any
reservation. Defaults to false. reservation. Defaults to false.
required: false required: false
default: 'false'
type: bool type: bool
specific_reservation: specific_reservation:
description: description:

View file

@ -258,7 +258,7 @@ import json
def main(): 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']: if not module.params['scopes']:
module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] module.params['scopes'] = ['https://www.googleapis.com/auth/compute']

View file

@ -346,7 +346,7 @@ import json
def main(): 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']: if not module.params['scopes']:
module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] module.params['scopes'] = ['https://www.googleapis.com/auth/compute']

View file

@ -217,7 +217,7 @@ import json
def main(): 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']: if not module.params['scopes']:
module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] module.params['scopes'] = ['https://www.googleapis.com/auth/compute']

View file

@ -222,7 +222,7 @@ import json
def main(): 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']: if not module.params['scopes']:
module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] module.params['scopes'] = ['https://www.googleapis.com/auth/compute']

View file

@ -388,10 +388,14 @@ def main():
source_disk=dict(required=True, type='dict'), source_disk=dict(required=True, type='dict'),
zone=dict(type='str'), zone=dict(type='str'),
snapshot_encryption_key=dict( 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( 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'))
), ),
) )
) )

View file

@ -260,7 +260,7 @@ import json
def main(): 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']: if not module.params['scopes']:
module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] module.params['scopes'] = ['https://www.googleapis.com/auth/compute']

View file

@ -171,7 +171,7 @@ import json
def main(): 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']: if not module.params['scopes']:
module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] module.params['scopes'] = ['https://www.googleapis.com/auth/compute']

View file

@ -207,7 +207,7 @@ import json
def main(): 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']: if not module.params['scopes']:
module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] module.params['scopes'] = ['https://www.googleapis.com/auth/compute']

View file

@ -226,7 +226,7 @@ import json
def main(): 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']: if not module.params['scopes']:
module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] module.params['scopes'] = ['https://www.googleapis.com/auth/compute']

View file

@ -171,7 +171,7 @@ import json
def main(): 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']: if not module.params['scopes']:
module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] module.params['scopes'] = ['https://www.googleapis.com/auth/compute']

View file

@ -193,7 +193,7 @@ import json
def main(): 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']: if not module.params['scopes']:
module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] module.params['scopes'] = ['https://www.googleapis.com/auth/compute']

View file

@ -178,7 +178,7 @@ import json
def main(): 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']: if not module.params['scopes']:
module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] module.params['scopes'] = ['https://www.googleapis.com/auth/compute']

View file

@ -224,7 +224,7 @@ import json
def main(): 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']: if not module.params['scopes']:
module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] module.params['scopes'] = ['https://www.googleapis.com/auth/compute']

View file

@ -183,7 +183,7 @@ import json
def main(): 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']: if not module.params['scopes']:
module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] module.params['scopes'] = ['https://www.googleapis.com/auth/compute']

View file

@ -175,7 +175,7 @@ import json
def main(): 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']: if not module.params['scopes']:
module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] module.params['scopes'] = ['https://www.googleapis.com/auth/compute']

View file

@ -186,7 +186,7 @@ import json
def main(): 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']: if not module.params['scopes']:
module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] module.params['scopes'] = ['https://www.googleapis.com/auth/compute']

View file

@ -70,6 +70,11 @@ options:
the resource. the resource.
required: false required: false
type: str 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: header_action:
description: description:
- Specifies changes to request and response headers that need to take effect for - 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 to the Access- Control-Allow-Credentials header. Defaults to
false. false.
required: false required: false
default: 'false'
type: bool type: bool
allow_headers: allow_headers:
description: description:
@ -737,7 +741,6 @@ options:
used in TargetHttpProxys. Setting this true for TargetHttpsProxy used in TargetHttpProxys. Setting this true for TargetHttpsProxy
is not permitted. The default is set to false. is not permitted. The default is set to false.
required: false required: false
default: 'false'
type: bool type: bool
path_redirect: path_redirect:
description: description:
@ -780,7 +783,6 @@ options:
is removed prior to redirecting the request. If set to false, the is removed prior to redirecting the request. If set to false, the
query portion of the original URL is retained. query portion of the original URL is retained.
required: false required: false
default: 'false'
type: bool type: bool
route_rules: route_rules:
description: description:
@ -948,7 +950,6 @@ options:
is considered a match if the match criteria above are NOT met. is considered a match if the match criteria above are NOT met.
Defaults to false. Defaults to false.
required: false required: false
default: 'false'
type: bool type: bool
prefix_match: prefix_match:
description: description:
@ -1010,7 +1011,6 @@ options:
- Specifies that prefixMatch and fullPathMatch matches are case sensitive. - Specifies that prefixMatch and fullPathMatch matches are case sensitive.
- Defaults to false. - Defaults to false.
required: false required: false
default: 'false'
type: bool type: bool
metadata_filters: metadata_filters:
description: description:
@ -1145,7 +1145,6 @@ options:
to the Access- Control-Allow-Credentials header. Defaults to to the Access- Control-Allow-Credentials header. Defaults to
false. false.
required: false required: false
default: 'false'
type: bool type: bool
allow_headers: allow_headers:
description: description:
@ -1181,7 +1180,6 @@ options:
- which indicates that the CORS policy is in effect. Defaults - which indicates that the CORS policy is in effect. Defaults
to false. to false.
required: false required: false
default: 'false'
type: bool type: bool
expose_headers: expose_headers:
description: description:
@ -1531,7 +1529,6 @@ options:
- Setting this true for TargetHttpsProxy is not permitted. Defaults - Setting this true for TargetHttpsProxy is not permitted. Defaults
to false. to false.
required: false required: false
default: 'false'
type: bool type: bool
path_redirect: path_redirect:
description: description:
@ -1569,7 +1566,6 @@ options:
is removed prior to redirecting the request. If set to false, the is removed prior to redirecting the request. If set to false, the
query portion of the original URL is retained. Defaults to false. query portion of the original URL is retained. Defaults to false.
required: false required: false
default: 'false'
type: bool type: bool
default_url_redirect: default_url_redirect:
description: description:
@ -1594,7 +1590,6 @@ options:
in TargetHttpProxys. Setting this true for TargetHttpsProxy is not permitted. in TargetHttpProxys. Setting this true for TargetHttpsProxy is not permitted.
The default is set to false. The default is set to false.
required: false required: false
default: 'false'
type: bool type: bool
path_redirect: path_redirect:
description: description:
@ -1636,7 +1631,6 @@ options:
removed prior to redirecting the request. If set to false, the query removed prior to redirecting the request. If set to false, the query
portion of the original URL is retained. portion of the original URL is retained.
required: false required: false
default: 'false'
type: bool type: bool
default_route_action: default_route_action:
description: description:
@ -1733,7 +1727,6 @@ options:
- If true, headerValue is set for the header, discarding any - If true, headerValue is set for the header, discarding any
values that were set for that header. values that were set for that header.
required: false required: false
default: 'false'
type: bool type: bool
response_headers_to_remove: response_headers_to_remove:
description: description:
@ -1767,7 +1760,6 @@ options:
- If true, headerValue is set for the header, discarding any - If true, headerValue is set for the header, discarding any
values that were set for that header. values that were set for that header.
required: false required: false
default: 'false'
type: bool type: bool
url_rewrite: url_rewrite:
description: description:
@ -1960,14 +1952,12 @@ options:
that the actual request can include user credentials. that the actual request can include user credentials.
- This translates to the Access-Control-Allow-Credentials header. - This translates to the Access-Control-Allow-Credentials header.
required: false required: false
default: 'false'
type: bool type: bool
disabled: disabled:
description: description:
- If true, specifies the CORS policy is disabled. The default value - If true, specifies the CORS policy is disabled. The default value
is false, which indicates that the CORS policy is in effect. is false, which indicates that the CORS policy is in effect.
required: false required: false
default: 'false'
type: bool type: bool
fault_injection_policy: fault_injection_policy:
description: description:
@ -2095,7 +2085,6 @@ options:
Setting this true for TargetHttpsProxy is not permitted. The default is Setting this true for TargetHttpsProxy is not permitted. The default is
set to false. set to false.
required: false required: false
default: 'false'
type: bool type: bool
path_redirect: path_redirect:
description: description:
@ -2136,7 +2125,6 @@ options:
prior to redirecting the request. If set to false, the query portion of prior to redirecting the request. If set to false, the query portion of
the original URL is retained. The default is set to false. the original URL is retained. The default is set to false.
required: false required: false
default: 'false'
type: bool type: bool
default_route_action: default_route_action:
description: description:
@ -2231,8 +2219,6 @@ options:
exist for the header. exist for the header.
- If true, headerValue is set for the header, discarding any values - If true, headerValue is set for the header, discarding any values
that were set for that header. that were set for that header.
required: false
default: 'false'
type: bool type: bool
response_headers_to_remove: response_headers_to_remove:
description: description:
@ -2266,7 +2252,6 @@ options:
- If true, headerValue is set for the header, discarding any values - If true, headerValue is set for the header, discarding any values
that were set for that header. that were set for that header.
required: false required: false
default: 'false'
type: bool type: bool
url_rewrite: url_rewrite:
description: description:
@ -2456,14 +2441,12 @@ options:
the actual request can include user credentials. the actual request can include user credentials.
- This translates to the Access-Control-Allow-Credentials header. - This translates to the Access-Control-Allow-Credentials header.
required: false required: false
default: 'false'
type: bool type: bool
disabled: disabled:
description: description:
- If true, specifies the CORS policy is disabled. The default value is - If true, specifies the CORS policy is disabled. The default value is
false, which indicates that the CORS policy is in effect. false, which indicates that the CORS policy is in effect.
required: false required: false
default: 'false'
type: bool type: bool
fault_injection_policy: fault_injection_policy:
description: description:

View file

@ -2487,7 +2487,7 @@ import json
def main(): 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']: if not module.params['scopes']:
module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] module.params['scopes'] = ['https://www.googleapis.com/auth/compute']

View file

@ -247,7 +247,7 @@ import json
def main(): 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']: if not module.params['scopes']:
module.params['scopes'] = ['https://www.googleapis.com/auth/compute'] module.params['scopes'] = ['https://www.googleapis.com/auth/compute']

View file

@ -1528,7 +1528,9 @@ def main():
accelerators=dict(type='list', elements='dict', options=dict(accelerator_count=dict(type='str'), accelerator_type=dict(type='str'))), accelerators=dict(type='list', elements='dict', options=dict(accelerator_count=dict(type='str'), accelerator_type=dict(type='str'))),
disk_type=dict(type='str'), disk_type=dict(type='str'),
min_cpu_platform=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( shielded_instance_config=dict(
type='dict', options=dict(enable_secure_boot=dict(type='bool'), enable_integrity_monitoring=dict(type='bool')) type='dict', options=dict(enable_secure_boot=dict(type='bool'), enable_integrity_monitoring=dict(type='bool'))
), ),
@ -1538,7 +1540,7 @@ def main():
type='dict', type='dict',
options=dict( options=dict(
username=dict(type='str'), 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'))), client_certificate_config=dict(type='dict', options=dict(issue_client_certificate=dict(type='bool'))),
), ),
), ),

View file

@ -859,7 +859,7 @@ import json
def main(): 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']: if not module.params['scopes']:
module.params['scopes'] = ['https://www.googleapis.com/auth/cloud-platform'] module.params['scopes'] = ['https://www.googleapis.com/auth/cloud-platform']

View file

@ -764,7 +764,9 @@ def main():
accelerators=dict(type='list', elements='dict', options=dict(accelerator_count=dict(type='int'), accelerator_type=dict(type='str'))), accelerators=dict(type='list', elements='dict', options=dict(accelerator_count=dict(type='int'), accelerator_type=dict(type='str'))),
disk_type=dict(type='str'), disk_type=dict(type='str'),
min_cpu_platform=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( shielded_instance_config=dict(
type='dict', options=dict(enable_secure_boot=dict(type='bool'), enable_integrity_monitoring=dict(type='bool')) type='dict', options=dict(enable_secure_boot=dict(type='bool'), enable_integrity_monitoring=dict(type='bool'))
), ),

View file

@ -450,7 +450,8 @@ import json
def main(): 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']: if not module.params['scopes']:
module.params['scopes'] = ['https://www.googleapis.com/auth/cloud-platform'] module.params['scopes'] = ['https://www.googleapis.com/auth/cloud-platform']

View file

@ -508,8 +508,12 @@ def main():
default_key_specs=dict( default_key_specs=dict(
type='list', type='list',
elements='dict', elements='dict',
no_log=False,
options=dict( 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')
), ),
), ),
), ),

View file

@ -308,7 +308,7 @@ import json
def main(): 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']: if not module.params['scopes']:
module.params['scopes'] = ['https://www.googleapis.com/auth/ndev.clouddns.readwrite'] module.params['scopes'] = ['https://www.googleapis.com/auth/ndev.clouddns.readwrite']

View file

@ -160,7 +160,7 @@ import json
def main(): 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']: if not module.params['scopes']:
module.params['scopes'] = ['https://www.googleapis.com/auth/ndev.clouddns.readwrite'] module.params['scopes'] = ['https://www.googleapis.com/auth/ndev.clouddns.readwrite']

View file

@ -213,7 +213,7 @@ import json
def main(): 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']: if not module.params['scopes']:
module.params['scopes'] = ['https://www.googleapis.com/auth/cloud-platform'] module.params['scopes'] = ['https://www.googleapis.com/auth/cloud-platform']

View file

@ -156,7 +156,7 @@ import json
def main(): def main():
module = GcpModule(argument_spec=dict()) module = GcpModule(argument_spec=dict(), supports_check_mode=True)
if not module.params['scopes']: if not module.params['scopes']:
module.params['scopes'] = ['https://www.googleapis.com/auth/iam'] module.params['scopes'] = ['https://www.googleapis.com/auth/iam']

View file

@ -155,7 +155,7 @@ import json
def main(): def main():
module = GcpModule(argument_spec=dict()) module = GcpModule(argument_spec=dict(), supports_check_mode=True)
if not module.params['scopes']: if not module.params['scopes']:
module.params['scopes'] = ['https://www.googleapis.com/auth/iam'] module.params['scopes'] = ['https://www.googleapis.com/auth/iam']

View file

@ -104,6 +104,7 @@ options:
- If set to true, the request will create a CryptoKey without any CryptoKeyVersions. - 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. You must use the `google_kms_key_ring_import_job` resource to import the CryptoKeyVersion.
required: false required: false
default: false
type: bool type: bool
project: project:
description: description:
@ -284,7 +285,7 @@ def main():
purpose=dict(default='ENCRYPT_DECRYPT', type='str'), purpose=dict(default='ENCRYPT_DECRYPT', type='str'),
rotation_period=dict(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'))), 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), skip_initial_version_creation=dict(type='bool', default=False),
) )
) )

View file

@ -198,7 +198,7 @@ import json
def main(): 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']: if not module.params['scopes']:
module.params['scopes'] = ['https://www.googleapis.com/auth/cloudkms'] module.params['scopes'] = ['https://www.googleapis.com/auth/cloudkms']

View file

@ -151,7 +151,7 @@ import json
def main(): 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']: if not module.params['scopes']:
module.params['scopes'] = ['https://www.googleapis.com/auth/cloudkms'] module.params['scopes'] = ['https://www.googleapis.com/auth/cloudkms']

View file

@ -528,7 +528,8 @@ def main():
labels=dict( labels=dict(
type='list', type='list',
elements='dict', 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'), display_name=dict(type='str'),
), ),

View file

@ -302,7 +302,7 @@ import json
def main(): def main():
module = GcpModule(argument_spec=dict()) module = GcpModule(argument_spec=dict(), supports_check_mode=True)
if not module.params['scopes']: if not module.params['scopes']:
module.params['scopes'] = ['https://www.googleapis.com/auth/cloud-platform'] module.params['scopes'] = ['https://www.googleapis.com/auth/cloud-platform']

View file

@ -169,7 +169,7 @@ import json
def main(): def main():
module = GcpModule(argument_spec=dict()) module = GcpModule(argument_spec=dict(), supports_check_mode=True)
if not module.params['scopes']: if not module.params['scopes']:
module.params['scopes'] = ['https://www.googleapis.com/auth/cloud-platform'] module.params['scopes'] = ['https://www.googleapis.com/auth/cloud-platform']

View file

@ -260,7 +260,7 @@ import json
def main(): 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']: if not module.params['scopes']:
module.params['scopes'] = ['https://www.googleapis.com/auth/cloud-platform'] module.params['scopes'] = ['https://www.googleapis.com/auth/cloud-platform']

Some files were not shown because too many files have changed in this diff Show more