Enable required YAML lint rules and fix results

This commit is contained in:
Chris Hawk 2025-01-14 15:15:59 -08:00
parent 3de16da36a
commit 4ee4cc60b5
91 changed files with 225 additions and 223 deletions

View file

@ -1,7 +1,5 @@
---
profile: production
parseable: true
skip_list:
- ANSIBLE0010
use_default_rules: true
verbosity: 1

View file

@ -33,7 +33,7 @@ jobs:
- name: Run ansible-test sanity
run: ansible-test sanity -v --color
- name: Install ansible-lint
run: pip install ansible-lint==24.7.0
run: pip install ansible-lint
- name: Run ansible-lint
run: ansible-lint
unit:

View file

@ -15,7 +15,8 @@ rules:
commas:
max-spaces-after: -1
level: error
comments: disable
comments:
min-spaces-from-content: 1
comments-indentation: disable
document-start: disable
empty-lines:
@ -29,5 +30,8 @@ rules:
new-line-at-end-of-file: disable
new-lines:
type: unix
octal-values:
forbid-implicit-octal: true
forbid-explicit-octal: true
trailing-spaces: disable
truthy: disable

View file

@ -33,7 +33,7 @@ license:
# The path to the license file for the collection. This path is relative to the root of the collection. This key is
# mutually exclusive with 'license'
#license_file: ''
# license_file: ''
# A list of tags you want to associate with the collection for indexing/searching. A tag name has the same character
# requirements as 'namespace' and 'name'
@ -48,13 +48,13 @@ tags:
# collection label 'namespace.name'. The value is a version range
# L(specifiers,https://python-semanticversion.readthedocs.io/en/latest/#requirement-specification). Multiple version
# range specifiers can be set and are separated by ','
#dependencies: {}
# dependencies: {}
# The URL of the originating SCM repository
repository: https://github.com/ansible-collections/google.cloud
# The URL to any online docs
#documentation: http://docs.example.com
# documentation: http://docs.example.com
# The URL to the homepage of the collection/project
homepage: http://cloud.google.com

View file

@ -27,7 +27,7 @@ galaxy_info:
# this branch. If Travis integration is configured, only notifications for this
# branch will be accepted. Otherwise, in all cases, the repo's default branch
# (usually master) will be used.
#github_branch:
# github_branch:
#
# Provide a list of supported platforms, and for each platform a list of versions.

View file

@ -22,7 +22,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a firewall rule
google.cloud.gcp_appengine_firewall_rule:
priority: 1000
@ -64,7 +64,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a firewall rule
google.cloud.gcp_appengine_firewall_rule:
priority: 1000

View file

@ -22,7 +22,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a dataset
google.cloud.gcp_bigquery_dataset:
name: my_example_dataset
@ -64,7 +64,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a dataset
google.cloud.gcp_bigquery_dataset:
name: my_example_dataset

View file

@ -35,7 +35,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a table
google.cloud.gcp_bigquery_table:
name: example_table
@ -84,7 +84,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a table
google.cloud.gcp_bigquery_table:
name: example_table
@ -133,7 +133,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#---------------------------------------------------------
# ---------------------------------------------------------
# Post-test teardown
# If errors happen, don't crash the playbook!
- name: Delete a dataset

View file

@ -25,7 +25,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a instance
google.cloud.gcp_bigtable_instance:
name: my-instance
@ -71,7 +71,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a instance
google.cloud.gcp_bigtable_instance:
name: my-instance

View file

@ -25,7 +25,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a cloud function
google.cloud.gcp_cloudfunctions_cloud_function:
name: "{{ resource_name }}"
@ -76,7 +76,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a cloud function
google.cloud.gcp_cloudfunctions_cloud_function:
name: "{{ resource_name }}"

View file

@ -32,7 +32,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a job
google.cloud.gcp_cloudscheduler_job:
name: job
@ -95,7 +95,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a job
google.cloud.gcp_cloudscheduler_job:
name: job

View file

@ -21,7 +21,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a queue
google.cloud.gcp_cloudtasks_queue:
name: "{{ resource_name }}"
@ -62,7 +62,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a queue
google.cloud.gcp_cloudtasks_queue:
name: "{{ resource_name }}"

View file

@ -21,7 +21,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a address
google.cloud.gcp_compute_address:
name: test-address1
@ -64,7 +64,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a address
google.cloud.gcp_compute_address:
name: test-address1

View file

@ -79,7 +79,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a autoscaler
google.cloud.gcp_compute_autoscaler:
name: "{{ resource_name }}"
@ -136,7 +136,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a autoscaler
google.cloud.gcp_compute_autoscaler:
name: "{{ resource_name }}"
@ -193,7 +193,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#---------------------------------------------------------
# ---------------------------------------------------------
# Post-test teardown
# If errors happen, don't crash the playbook!
- name: Delete a instance group manager

View file

@ -31,7 +31,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a backend bucket
google.cloud.gcp_compute_backend_bucket:
name: "{{ resource_name }}"
@ -77,7 +77,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a backend bucket
google.cloud.gcp_compute_backend_bucket:
name: "{{ resource_name }}"
@ -123,7 +123,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#---------------------------------------------------------
# ---------------------------------------------------------
# Post-test teardown
# If errors happen, don't crash the playbook!
- name: Delete a bucket

View file

@ -46,7 +46,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a backend service
google.cloud.gcp_compute_backend_service:
name: "{{ resource_name }}"
@ -96,7 +96,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a backend service
google.cloud.gcp_compute_backend_service:
name: "{{ resource_name }}"
@ -146,7 +146,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#---------------------------------------------------------
# ---------------------------------------------------------
# Post-test teardown
# If errors happen, don't crash the playbook!
- name: Delete a HTTP health check

View file

@ -24,7 +24,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a disk
google.cloud.gcp_compute_disk:
name: "{{ resource_name }}"
@ -73,7 +73,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a disk
google.cloud.gcp_compute_disk:
name: "{{ resource_name }}"

View file

@ -25,7 +25,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a external vpn gateway
google.cloud.gcp_compute_external_vpn_gateway:
name: "{{ resource_name }}"
@ -75,7 +75,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a external vpn gateway
google.cloud.gcp_compute_external_vpn_gateway:
name: "{{ resource_name }}"

View file

@ -29,7 +29,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a firewall
google.cloud.gcp_compute_firewall:
name: "{{ resource_name }}"
@ -87,7 +87,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a firewall
google.cloud.gcp_compute_firewall:
name: "{{ resource_name }}"

View file

@ -42,7 +42,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a firewall
google.cloud.gcp_compute_firewall:
name: "{{ resource_name }}"
@ -119,7 +119,7 @@
ansible.builtin.assert:
that:
- results['resources'][0]['allowed'][0]['ports'][0] == '55'
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a firewall
google.cloud.gcp_compute_firewall:
name: "{{ resource_name }}"

View file

@ -43,7 +43,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a forwarding rule
google.cloud.gcp_compute_forwarding_rule:
name: "{{ resource_name }}"
@ -94,7 +94,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a forwarding rule
google.cloud.gcp_compute_forwarding_rule:
name: "{{ resource_name }}"
@ -145,7 +145,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#---------------------------------------------------------
# ---------------------------------------------------------
# Post-test teardown
# If errors happen, don't crash the playbook!
- name: Delete a target pool

View file

@ -20,7 +20,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a global address
google.cloud.gcp_compute_global_address:
name: "{{ resource_name }}"
@ -60,7 +60,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a global address
google.cloud.gcp_compute_global_address:
name: "{{ resource_name }}"

View file

@ -84,7 +84,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a global forwarding rule
google.cloud.gcp_compute_global_forwarding_rule:
name: "{{ resource_name }}"
@ -132,7 +132,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a global forwarding rule
google.cloud.gcp_compute_global_forwarding_rule:
name: "{{ resource_name }}"
@ -180,7 +180,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#---------------------------------------------------------
# ---------------------------------------------------------
# Post-test teardown
# If errors happen, don't crash the playbook!
- name: Delete a target HTTP proxy

View file

@ -28,7 +28,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a health check
google.cloud.gcp_compute_health_check:
name: "{{ resource_name }}"
@ -84,7 +84,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a health check
google.cloud.gcp_compute_health_check:
name: "{{ resource_name }}"

View file

@ -24,7 +24,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a HTTP health check
google.cloud.gcp_compute_http_health_check:
name: "{{ resource_name }}"
@ -72,7 +72,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a HTTP health check
google.cloud.gcp_compute_http_health_check:
name: "{{ resource_name }}"

View file

@ -24,7 +24,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a HTTPS health check
google.cloud.gcp_compute_https_health_check:
name: "{{ resource_name }}"
@ -72,7 +72,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a HTTPS health check
google.cloud.gcp_compute_https_health_check:
name: "{{ resource_name }}"

View file

@ -30,7 +30,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a image
google.cloud.gcp_compute_image:
name: "{{ resource_name }}"
@ -72,7 +72,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a image
google.cloud.gcp_compute_image:
name: "{{ resource_name }}"
@ -114,7 +114,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#---------------------------------------------------------
# ---------------------------------------------------------
# Post-test teardown
# If errors happen, don't crash the playbook!
- name: Delete a disk

View file

@ -70,7 +70,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a instance
google.cloud.gcp_compute_instance:
name: "{{ resource_name }}"
@ -153,7 +153,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a instance
google.cloud.gcp_compute_instance:
name: "{{ resource_name }}"
@ -236,7 +236,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#---------------------------------------------------------
# ---------------------------------------------------------
# Post-test teardown
# If errors happen, don't crash the playbook!
- name: Delete a address

View file

@ -34,7 +34,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a instance group
google.cloud.gcp_compute_instance_group:
name: "{{ resource_name }}"
@ -85,7 +85,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a instance group
google.cloud.gcp_compute_instance_group:
name: "{{ resource_name }}"
@ -136,7 +136,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#---------------------------------------------------------
# ---------------------------------------------------------
# Post-test teardown
# If errors happen, don't crash the playbook!
- name: Delete a network

View file

@ -63,7 +63,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a instance group manager
google.cloud.gcp_compute_instance_group_manager:
name: "{{ resource_name }}"
@ -112,7 +112,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a instance group manager
google.cloud.gcp_compute_instance_group_manager:
name: "{{ resource_name }}"
@ -161,7 +161,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#---------------------------------------------------------
# ---------------------------------------------------------
# Post-test teardown
# If errors happen, don't crash the playbook!
- name: Delete a instance template

View file

@ -51,7 +51,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a instance template
google.cloud.gcp_compute_instance_template:
name: "{{ resource_name }}"
@ -117,7 +117,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a instance template
google.cloud.gcp_compute_instance_template:
name: "{{ resource_name }}"
@ -183,7 +183,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#---------------------------------------------------------
# ---------------------------------------------------------
# Post-test teardown
# If errors happen, don't crash the playbook!
- name: Delete a address

View file

@ -21,7 +21,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a network
google.cloud.gcp_compute_network:
name: "{{ resource_name }}"
@ -63,7 +63,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a network
google.cloud.gcp_compute_network:
name: "{{ resource_name }}"

View file

@ -44,7 +44,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a network endpoint group
google.cloud.gcp_compute_network_endpoint_group:
name: "{{ resource_name }}"
@ -93,7 +93,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a network endpoint group
google.cloud.gcp_compute_network_endpoint_group:
name: "{{ resource_name }}"
@ -142,7 +142,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#---------------------------------------------------------
# ---------------------------------------------------------
# Post-test teardown
# If errors happen, don't crash the playbook!
- name: Delete a subnetwork

View file

@ -34,7 +34,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a node group
google.cloud.gcp_compute_node_group:
name: "{{ resource_name }}"
@ -83,7 +83,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a node group
google.cloud.gcp_compute_node_group:
name: "{{ resource_name }}"
@ -132,7 +132,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#---------------------------------------------------------
# ---------------------------------------------------------
# Post-test teardown
# If errors happen, don't crash the playbook!
- name: Delete a node template

View file

@ -22,7 +22,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a node template
google.cloud.gcp_compute_node_template:
name: "{{ resource_name }}"
@ -67,7 +67,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a node template
google.cloud.gcp_compute_node_template:
name: "{{ resource_name }}"

View file

@ -79,7 +79,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a region autoscaler
google.cloud.gcp_compute_region_autoscaler:
name: my-region-autoscaler
@ -136,7 +136,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a region autoscaler
google.cloud.gcp_compute_region_autoscaler:
name: my-region-autoscaler
@ -193,7 +193,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#---------------------------------------------------------
# ---------------------------------------------------------
# Post-test teardown
# If errors happen, don't crash the playbook!
- name: Delete a region instance group manager

View file

@ -39,7 +39,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a region backend service
google.cloud.gcp_compute_region_backend_service:
name: "{{ resource_name }}"
@ -92,7 +92,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a region backend service
google.cloud.gcp_compute_region_backend_service:
name: "{{ resource_name }}"
@ -145,7 +145,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#---------------------------------------------------------
# ---------------------------------------------------------
# Post-test teardown
# If errors happen, don't crash the playbook!
- name: Delete a health check

View file

@ -27,7 +27,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a region disk
google.cloud.gcp_compute_region_disk:
name: "{{ resource_name }}"
@ -82,7 +82,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a region disk
google.cloud.gcp_compute_region_disk:
name: "{{ resource_name }}"

View file

@ -29,7 +29,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a region health check
google.cloud.gcp_compute_region_health_check:
name: "{{ resource_name }}"
@ -88,7 +88,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a region health check
google.cloud.gcp_compute_region_health_check:
name: "{{ resource_name }}"

View file

@ -63,7 +63,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a region instance group manager
google.cloud.gcp_compute_region_instance_group_manager:
name: "{{ resource_name }}"
@ -112,7 +112,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a region instance group manager
google.cloud.gcp_compute_region_instance_group_manager:
name: "{{ resource_name }}"
@ -161,7 +161,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#---------------------------------------------------------
# ---------------------------------------------------------
# Post-test teardown
# If errors happen, don't crash the playbook!
- name: Delete a instance template

View file

@ -44,7 +44,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a region target HTTP proxy
google.cloud.gcp_compute_region_target_http_proxy:
name: "{{ resource_name }}"
@ -89,7 +89,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a region target HTTP proxy
google.cloud.gcp_compute_region_target_http_proxy:
name: "{{ resource_name }}"
@ -134,7 +134,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#---------------------------------------------------------
# ---------------------------------------------------------
# Post-test teardown
# If errors happen, don't crash the playbook!
- name: Delete a URL map

View file

@ -102,7 +102,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a region target HTTPS proxy
google.cloud.gcp_compute_region_target_https_proxy:
name: "{{ resource_name }}"
@ -151,7 +151,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a region target HTTPS proxy
google.cloud.gcp_compute_region_target_https_proxy:
name: "{{ resource_name }}"
@ -200,7 +200,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#---------------------------------------------------------
# ---------------------------------------------------------
# Post-test teardown
# If errors happen, don't crash the playbook!
- name: Delete a SSL certificate

View file

@ -33,7 +33,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a region URL map
google.cloud.gcp_compute_region_url_map:
name: "{{ resource_name }}"
@ -78,7 +78,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a region URL map
google.cloud.gcp_compute_region_url_map:
name: "{{ resource_name }}"
@ -123,7 +123,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#---------------------------------------------------------
# ---------------------------------------------------------
# Post-test teardown
# If errors happen, don't crash the playbook!
- name: Delete a region backend service

View file

@ -26,7 +26,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a reservation
google.cloud.gcp_compute_reservation:
name: "{{ resource_name }}"
@ -79,7 +79,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a reservation
google.cloud.gcp_compute_reservation:
name: "{{ resource_name }}"

View file

@ -26,7 +26,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a resource policy
google.cloud.gcp_compute_resource_policy:
name: "{{ resource_name }}"
@ -79,7 +79,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a resource policy
google.cloud.gcp_compute_resource_policy:
name: "{{ resource_name }}"

View file

@ -35,7 +35,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a route
google.cloud.gcp_compute_route:
name: "{{ resource_name }}"
@ -106,7 +106,7 @@
ansible.builtin.assert:
that:
- result.changed == true
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a route
google.cloud.gcp_compute_route:
name: "{{ resource_name }}"
@ -158,7 +158,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#---------------------------------------------------------
# ---------------------------------------------------------
# Post-test teardown
# If errors happen, don't crash the playbook!
- name: Delete a network

View file

@ -39,7 +39,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a router
google.cloud.gcp_compute_router:
name: "{{ resource_name }}"
@ -100,7 +100,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a router
google.cloud.gcp_compute_router:
name: "{{ resource_name }}"
@ -161,7 +161,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#---------------------------------------------------------
# ---------------------------------------------------------
# Post-test teardown
# If errors happen, don't crash the playbook!
- name: Delete a network

View file

@ -33,7 +33,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a snapshot
google.cloud.gcp_compute_snapshot:
name: "{{ resource_name }}"
@ -81,7 +81,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a snapshot
google.cloud.gcp_compute_snapshot:
name: "{{ resource_name }}"
@ -129,7 +129,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#---------------------------------------------------------
# ---------------------------------------------------------
# Post-test teardown
# If errors happen, don't crash the playbook!
- name: Delete a disk

View file

@ -45,7 +45,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a SSL certificate
google.cloud.gcp_compute_ssl_certificate:
name: "{{ resource_name }}"
@ -135,7 +135,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a SSL certificate
google.cloud.gcp_compute_ssl_certificate:
name: "{{ resource_name }}"

View file

@ -25,7 +25,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a SSL policy
google.cloud.gcp_compute_ssl_policy:
name: "{{ resource_name }}"
@ -75,7 +75,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a SSL policy
google.cloud.gcp_compute_ssl_policy:
name: "{{ resource_name }}"

View file

@ -32,7 +32,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a subnetwork
google.cloud.gcp_compute_subnetwork:
name: ansiblenet
@ -79,7 +79,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a subnetwork
google.cloud.gcp_compute_subnetwork:
name: ansiblenet
@ -126,7 +126,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#---------------------------------------------------------
# ---------------------------------------------------------
# Post-test teardown
# If errors happen, don't crash the playbook!
- name: Delete a network

View file

@ -64,7 +64,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a target HTTP proxy
google.cloud.gcp_compute_target_http_proxy:
name: "{{ resource_name }}"
@ -106,7 +106,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a target HTTP proxy
google.cloud.gcp_compute_target_http_proxy:
name: "{{ resource_name }}"
@ -148,7 +148,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#---------------------------------------------------------
# ---------------------------------------------------------
# Post-test teardown
# If errors happen, don't crash the playbook!
- name: Delete a URL map

View file

@ -99,7 +99,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a target HTTPS proxy
google.cloud.gcp_compute_target_https_proxy:
name: "{{ resource_name }}"
@ -145,7 +145,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a target HTTPS proxy
google.cloud.gcp_compute_target_https_proxy:
name: "{{ resource_name }}"
@ -191,7 +191,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#---------------------------------------------------------
# ---------------------------------------------------------
# Post-test teardown
# If errors happen, don't crash the playbook!
- name: Delete a SSL certificate

View file

@ -50,7 +50,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a target instance
google.cloud.gcp_compute_target_instance:
name: target
@ -95,7 +95,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a target instance
google.cloud.gcp_compute_target_instance:
name: target
@ -140,7 +140,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#---------------------------------------------------------
# ---------------------------------------------------------
# Post-test teardown
# If errors happen, don't crash the playbook!
- name: Delete a instance

View file

@ -21,7 +21,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a target pool
google.cloud.gcp_compute_target_pool:
name: "{{ resource_name }}"
@ -64,7 +64,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a target pool
google.cloud.gcp_compute_target_pool:
name: "{{ resource_name }}"

View file

@ -94,7 +94,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a target SSL proxy
google.cloud.gcp_compute_target_ssl_proxy:
name: "{{ resource_name }}"
@ -140,7 +140,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a target SSL proxy
google.cloud.gcp_compute_target_ssl_proxy:
name: "{{ resource_name }}"
@ -186,7 +186,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#---------------------------------------------------------
# ---------------------------------------------------------
# Post-test teardown
# If errors happen, don't crash the playbook!
- name: Delete a SSL certificate

View file

@ -60,7 +60,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a target TCP proxy
google.cloud.gcp_compute_target_tcp_proxy:
name: "{{ resource_name }}"
@ -104,7 +104,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a target TCP proxy
google.cloud.gcp_compute_target_tcp_proxy:
name: "{{ resource_name }}"
@ -148,7 +148,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#---------------------------------------------------------
# ---------------------------------------------------------
# Post-test teardown
# If errors happen, don't crash the playbook!
- name: Delete a backend service

View file

@ -40,7 +40,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a target vpn gateway
google.cloud.gcp_compute_target_vpn_gateway:
name: "{{ resource_name }}"
@ -85,7 +85,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a target vpn gateway
google.cloud.gcp_compute_target_vpn_gateway:
name: "{{ resource_name }}"
@ -130,7 +130,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#---------------------------------------------------------
# ---------------------------------------------------------
# Post-test teardown
# If errors happen, don't crash the playbook!
- name: Delete a network

View file

@ -55,7 +55,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a URL map
google.cloud.gcp_compute_url_map:
name: "{{ resource_name }}"
@ -97,7 +97,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a URL map
google.cloud.gcp_compute_url_map:
name: "{{ resource_name }}"
@ -139,7 +139,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#---------------------------------------------------------
# ---------------------------------------------------------
# Post-test teardown
# If errors happen, don't crash the playbook!
- name: Delete a backend service

View file

@ -158,7 +158,7 @@
service_account_file: "{{ gcp_cred_file | default(omit) }}"
peer_ip: "{{ address.address }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a vpn tunnel
google.cloud.gcp_compute_vpn_tunnel:
name: "{{ resource_name }}"
@ -209,7 +209,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a vpn tunnel
google.cloud.gcp_compute_vpn_tunnel:
name: "{{ resource_name }}"
@ -260,7 +260,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#---------------------------------------------------------
# ---------------------------------------------------------
# Post-test teardown
- name: Delete a UDP-4500 forwarding rule
google.cloud.gcp_compute_forwarding_rule:

View file

@ -25,7 +25,7 @@
auth_kind: serviceaccount
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a cluster
google.cloud.gcp_container_cluster:
name: my-cluster
@ -74,7 +74,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a cluster
google.cloud.gcp_container_cluster:
name: my-cluster

View file

@ -33,7 +33,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a node pool
google.cloud.gcp_container_node_pool:
name: my-pool
@ -79,7 +79,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a node pool
google.cloud.gcp_container_node_pool:
name: my-pool
@ -125,7 +125,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#---------------------------------------------------------
# ---------------------------------------------------------
# Post-test teardown
# If errors happen, don't crash the playbook!
- name: Delete a cluster

View file

@ -22,7 +22,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a managed zone
google.cloud.gcp_dns_managed_zone:
name: "{{ resource_name }}"
@ -65,7 +65,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a managed zone
google.cloud.gcp_dns_managed_zone:
name: "{{ resource_name }}"

View file

@ -36,7 +36,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a resource record set
google.cloud.gcp_dns_resource_record_set:
name: www.testzone-4.com.
@ -87,7 +87,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a resource record set
google.cloud.gcp_dns_resource_record_set:
name: www.testzone-4.com.
@ -138,7 +138,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#---------------------------------------------------------
# ---------------------------------------------------------
# Post-test teardown
# If errors happen, don't crash the playbook!
- name: Delete a managed zone

View file

@ -29,7 +29,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a instance
google.cloud.gcp_filestore_instance:
name: "{{ resource_name }}"
@ -86,7 +86,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a instance
google.cloud.gcp_filestore_instance:
name: "{{ resource_name }}"

View file

@ -26,7 +26,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a role
google.cloud.gcp_iam_role:
name: "{{ resource_prefix[0:30].replace('-', '_') }}"
@ -96,7 +96,7 @@
ansible.builtin.assert:
that:
- result.changed == true
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a role
google.cloud.gcp_iam_role:
name: "{{ resource_prefix[0:30].replace('-', '_') }}"

View file

@ -21,7 +21,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a service account
google.cloud.gcp_iam_service_account:
name: service-{{ resource_name.split("-")[-1] }}@{{ gcp_project }}.iam.gserviceaccount.com
@ -62,7 +62,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a service account
google.cloud.gcp_iam_service_account:
name: service-{{ resource_name.split("-")[-1] }}@{{ gcp_project }}.iam.gserviceaccount.com

View file

@ -30,7 +30,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a crypto key
google.cloud.gcp_kms_crypto_key:
name: "{{ resource_name }}"

View file

@ -21,7 +21,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a key ring
google.cloud.gcp_kms_key_ring:
name: "{{ resource_name }}"

View file

@ -37,7 +37,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a metric
google.cloud.gcp_logging_metric:
name: "{{ resource_name }}"
@ -109,7 +109,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a metric
google.cloud.gcp_logging_metric:
name: "{{ resource_name }}"

View file

@ -23,7 +23,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a model
google.cloud.gcp_mlengine_model:
name: "{{ resource_name | replace('-', '_') }}"
@ -67,7 +67,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a model
google.cloud.gcp_mlengine_model:
name: "{{ resource_name | replace('-', '_') }}"

View file

@ -38,7 +38,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a version
google.cloud.gcp_mlengine_version:
name: "{{ resource_name | replace('-', '_') }}"
@ -87,7 +87,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a version
google.cloud.gcp_mlengine_version:
name: "{{ resource_name | replace('-', '_') }}"
@ -136,7 +136,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#---------------------------------------------------------
# ---------------------------------------------------------
# Post-test teardown
# If errors happen, don't crash the playbook!
- name: Delete a model

View file

@ -37,7 +37,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a subscription
google.cloud.gcp_pubsub_subscription:
name: "{{ resource_name }}"
@ -79,7 +79,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Update a subscription
google.cloud.gcp_pubsub_subscription:
name: "{{ resource_name }}"
@ -94,7 +94,7 @@
ansible.builtin.assert:
that:
- result.changed == true
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Update cloudStorageConfig of a subscription that already exists
google.cloud.gcp_pubsub_subscription:
name: "{{ resource_name }}"
@ -118,7 +118,7 @@
ansible.builtin.assert:
that:
- result.changed == true
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a subscription
google.cloud.gcp_pubsub_subscription:
name: "{{ resource_name }}"
@ -160,7 +160,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#---------------------------------------------------------
# ---------------------------------------------------------
# Post-test teardown
# If errors happen, don't crash the playbook!
- name: Delete a topic

View file

@ -20,7 +20,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a topic
google.cloud.gcp_pubsub_topic:
name: test-topic1
@ -58,7 +58,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a topic
google.cloud.gcp_pubsub_topic:
name: test-topic1

View file

@ -39,7 +39,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a instance
google.cloud.gcp_redis_instance:
name: instance37
@ -98,7 +98,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a instance
google.cloud.gcp_redis_instance:
name: instance37
@ -157,7 +157,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#---------------------------------------------------------
# ---------------------------------------------------------
# Post-test teardown
# If errors happen, don't crash the playbook!
- name: Delete a network

View file

@ -23,7 +23,7 @@
type: folder
id: "{{ gcp_folder_id }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a project
google.cloud.gcp_resourcemanager_project:
name: "{{ resource_prefix[0:30] }}"
@ -73,7 +73,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a project
google.cloud.gcp_resourcemanager_project:
name: "{{ resource_prefix[0:30] }}"

View file

@ -21,7 +21,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a config
google.cloud.gcp_runtimeconfig_config:
name: "{{ resource_name }}"
@ -61,7 +61,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a config
google.cloud.gcp_runtimeconfig_config:
name: "{{ resource_name }}"

View file

@ -31,7 +31,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a variable
google.cloud.gcp_runtimeconfig_variable:
name: prod-variables/hostname
@ -74,7 +74,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a variable
google.cloud.gcp_runtimeconfig_variable:
name: prod-variables/hostname
@ -117,7 +117,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#---------------------------------------------------------
# ---------------------------------------------------------
# Post-test teardown
# If errors happen, don't crash the playbook!
- name: Delete a config

View file

@ -20,7 +20,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a service
google.cloud.gcp_serviceusage_service:
name: alloydb.googleapis.com
@ -58,7 +58,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a service
google.cloud.gcp_serviceusage_service:
name: alloydb.googleapis.com

View file

@ -20,7 +20,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a repository
google.cloud.gcp_sourcerepo_repository:
name: "{{ resource_name }}"
@ -58,7 +58,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a repository
google.cloud.gcp_sourcerepo_repository:
name: "{{ resource_name }}"

View file

@ -34,7 +34,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a database
google.cloud.gcp_spanner_database:
name: webstore
@ -75,7 +75,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a database
google.cloud.gcp_spanner_database:
name: webstore
@ -120,7 +120,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#---------------------------------------------------------
# ---------------------------------------------------------
# Post-test teardown
# If errors happen, don't crash the playbook!
- name: Delete a instance

View file

@ -25,7 +25,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a instance
google.cloud.gcp_spanner_instance:
name: testinstance
@ -73,7 +73,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a instance
google.cloud.gcp_spanner_instance:
name: testinstance

View file

@ -37,7 +37,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a database
google.cloud.gcp_sql_database:
name: "{{ resource_name }}"
@ -80,7 +80,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a database
google.cloud.gcp_sql_database:
name: "{{ resource_name }}"
@ -123,7 +123,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#---------------------------------------------------------
# ---------------------------------------------------------
# Post-test teardown
# If errors happen, don't crash the playbook!
- name: Delete a instance

View file

@ -27,7 +27,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a instance
google.cloud.gcp_sql_instance:
name: "{{ resource_name }}-2"
@ -79,7 +79,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a instance
google.cloud.gcp_sql_instance:
name: "{{ resource_name }}-2"

View file

@ -38,7 +38,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create an SSL cert
google.cloud.gcp_sql_ssl_cert:
common_name: "{{ resource_name }}"
@ -67,7 +67,7 @@
ansible.builtin.assert:
that:
- updates.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete an SSL cert
google.cloud.gcp_sql_ssl_cert:
common_name: "{{ resource_name }}"
@ -83,7 +83,7 @@
ansible.builtin.assert:
that:
- result.changed == true
#---------------------------------------------------------
# ---------------------------------------------------------
# Post-test teardown
# If errors happen, don't crash the playbook!
- name: Delete a instance

View file

@ -38,7 +38,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a user
google.cloud.gcp_sql_user:
name: test-user
@ -83,7 +83,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a user
google.cloud.gcp_sql_user:
name: test-user
@ -128,7 +128,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#---------------------------------------------------------
# ---------------------------------------------------------
# Post-test teardown
# If errors happen, don't crash the playbook!
- name: Delete a instance

View file

@ -20,7 +20,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a bucket
google.cloud.gcp_storage_bucket:
name: "{{ resource_name }}"
@ -46,7 +46,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a bucket
google.cloud.gcp_storage_bucket:
name: "{{ resource_name }}"

View file

@ -30,7 +30,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a bucket access control
google.cloud.gcp_storage_bucket_access_control:
bucket: "{{ bucket }}"
@ -60,7 +60,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a bucket access control
google.cloud.gcp_storage_bucket_access_control:
bucket: "{{ bucket }}"
@ -90,7 +90,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#---------------------------------------------------------
# ---------------------------------------------------------
# Post-test teardown
# If errors happen, don't crash the playbook!
- name: Delete a bucket

View file

@ -30,7 +30,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a default object acl
google.cloud.gcp_storage_default_object_acl:
bucket: "{{ bucket }}"
@ -60,7 +60,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a default object acl
google.cloud.gcp_storage_default_object_acl:
bucket: "{{ bucket }}"
@ -90,7 +90,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#---------------------------------------------------------
# ---------------------------------------------------------
# Post-test teardown
# If errors happen, don't crash the playbook!
- name: Delete a bucket

View file

@ -12,7 +12,7 @@
ansible.builtin.copy:
content: Ansible GCS test file
dest: "{{ upload_temp.path }}"
mode: 0644
mode: "0644"
- name: Create a bucket
google.cloud.gcp_storage_bucket:
name: "{{ resource_name }}"
@ -21,7 +21,7 @@
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: present
register: bucket
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Upload the object to gcs
google.cloud.gcp_storage_object:
action: upload

View file

@ -24,7 +24,7 @@
auth_kind: "{{ gcp_cred_kind }}"
service_account_file: "{{ gcp_cred_file | default(omit) }}"
state: absent
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Create a node
google.cloud.gcp_tpu_node:
name: "{{ resource_name }}"
@ -71,7 +71,7 @@
ansible.builtin.assert:
that:
- result.changed == false
#----------------------------------------------------------
# ----------------------------------------------------------
- name: Delete a node
google.cloud.gcp_tpu_node:
name: "{{ resource_name }}"