diff --git a/.ansible-lint b/.ansible-lint index e5e7a17..e76ae9c 100644 --- a/.ansible-lint +++ b/.ansible-lint @@ -1,7 +1,5 @@ --- profile: production parseable: true -skip_list: - - ANSIBLE0010 use_default_rules: true verbosity: 1 diff --git a/.github/workflows/ansible-test.yml b/.github/workflows/ansible-test.yml index c632899..0c7cf63 100644 --- a/.github/workflows/ansible-test.yml +++ b/.github/workflows/ansible-test.yml @@ -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: diff --git a/.yamllint b/.yamllint index 8827676..a473cdc 100644 --- a/.yamllint +++ b/.yamllint @@ -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 diff --git a/galaxy.yml b/galaxy.yml index b8471c9..f015ca3 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -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 diff --git a/roles/gcp_http_lb/meta/main.yml b/roles/gcp_http_lb/meta/main.yml index 98cccc5..82e2fda 100644 --- a/roles/gcp_http_lb/meta/main.yml +++ b/roles/gcp_http_lb/meta/main.yml @@ -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. diff --git a/tests/integration/targets/gcp_appengine_firewall_rule/tasks/autogen.yml b/tests/integration/targets/gcp_appengine_firewall_rule/tasks/autogen.yml index a38d9a7..1ec0c25 100644 --- a/tests/integration/targets/gcp_appengine_firewall_rule/tasks/autogen.yml +++ b/tests/integration/targets/gcp_appengine_firewall_rule/tasks/autogen.yml @@ -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 diff --git a/tests/integration/targets/gcp_bigquery_dataset/tasks/autogen.yml b/tests/integration/targets/gcp_bigquery_dataset/tasks/autogen.yml index 71484a3..6483a72 100644 --- a/tests/integration/targets/gcp_bigquery_dataset/tasks/autogen.yml +++ b/tests/integration/targets/gcp_bigquery_dataset/tasks/autogen.yml @@ -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 diff --git a/tests/integration/targets/gcp_bigquery_table/tasks/autogen.yml b/tests/integration/targets/gcp_bigquery_table/tasks/autogen.yml index 1e42d65..1b94a8a 100644 --- a/tests/integration/targets/gcp_bigquery_table/tasks/autogen.yml +++ b/tests/integration/targets/gcp_bigquery_table/tasks/autogen.yml @@ -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 diff --git a/tests/integration/targets/gcp_bigtable_instance/tasks/autogen.yml b/tests/integration/targets/gcp_bigtable_instance/tasks/autogen.yml index 7406950..a8a54ca 100644 --- a/tests/integration/targets/gcp_bigtable_instance/tasks/autogen.yml +++ b/tests/integration/targets/gcp_bigtable_instance/tasks/autogen.yml @@ -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 diff --git a/tests/integration/targets/gcp_cloudfunctions_cloud_function/tasks/autogen.yml b/tests/integration/targets/gcp_cloudfunctions_cloud_function/tasks/autogen.yml index da43b21..e86e505 100644 --- a/tests/integration/targets/gcp_cloudfunctions_cloud_function/tasks/autogen.yml +++ b/tests/integration/targets/gcp_cloudfunctions_cloud_function/tasks/autogen.yml @@ -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 }}" diff --git a/tests/integration/targets/gcp_cloudscheduler_job/tasks/autogen.yml b/tests/integration/targets/gcp_cloudscheduler_job/tasks/autogen.yml index 917e323..247b4e8 100644 --- a/tests/integration/targets/gcp_cloudscheduler_job/tasks/autogen.yml +++ b/tests/integration/targets/gcp_cloudscheduler_job/tasks/autogen.yml @@ -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 diff --git a/tests/integration/targets/gcp_cloudtasks_queue/tasks/autogen.yml b/tests/integration/targets/gcp_cloudtasks_queue/tasks/autogen.yml index 6e1f70f..73b3dab 100644 --- a/tests/integration/targets/gcp_cloudtasks_queue/tasks/autogen.yml +++ b/tests/integration/targets/gcp_cloudtasks_queue/tasks/autogen.yml @@ -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 }}" diff --git a/tests/integration/targets/gcp_compute_address/tasks/autogen.yml b/tests/integration/targets/gcp_compute_address/tasks/autogen.yml index b4e9634..f595dcf 100644 --- a/tests/integration/targets/gcp_compute_address/tasks/autogen.yml +++ b/tests/integration/targets/gcp_compute_address/tasks/autogen.yml @@ -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 diff --git a/tests/integration/targets/gcp_compute_autoscaler/tasks/autogen.yml b/tests/integration/targets/gcp_compute_autoscaler/tasks/autogen.yml index 4e1ad76..792e8a5 100644 --- a/tests/integration/targets/gcp_compute_autoscaler/tasks/autogen.yml +++ b/tests/integration/targets/gcp_compute_autoscaler/tasks/autogen.yml @@ -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 diff --git a/tests/integration/targets/gcp_compute_backend_bucket/tasks/autogen.yml b/tests/integration/targets/gcp_compute_backend_bucket/tasks/autogen.yml index c54b022..f4d51bf 100644 --- a/tests/integration/targets/gcp_compute_backend_bucket/tasks/autogen.yml +++ b/tests/integration/targets/gcp_compute_backend_bucket/tasks/autogen.yml @@ -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 diff --git a/tests/integration/targets/gcp_compute_backend_service/tasks/autogen.yml b/tests/integration/targets/gcp_compute_backend_service/tasks/autogen.yml index 011a5d4..939cc64 100644 --- a/tests/integration/targets/gcp_compute_backend_service/tasks/autogen.yml +++ b/tests/integration/targets/gcp_compute_backend_service/tasks/autogen.yml @@ -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 diff --git a/tests/integration/targets/gcp_compute_disk/tasks/autogen.yml b/tests/integration/targets/gcp_compute_disk/tasks/autogen.yml index 9637972..f77418f 100644 --- a/tests/integration/targets/gcp_compute_disk/tasks/autogen.yml +++ b/tests/integration/targets/gcp_compute_disk/tasks/autogen.yml @@ -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 }}" diff --git a/tests/integration/targets/gcp_compute_external_vpn_gateway/tasks/autogen.yml b/tests/integration/targets/gcp_compute_external_vpn_gateway/tasks/autogen.yml index f6fd6da..0e092c8 100644 --- a/tests/integration/targets/gcp_compute_external_vpn_gateway/tasks/autogen.yml +++ b/tests/integration/targets/gcp_compute_external_vpn_gateway/tasks/autogen.yml @@ -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 }}" diff --git a/tests/integration/targets/gcp_compute_firewall/tasks/autogen.yml b/tests/integration/targets/gcp_compute_firewall/tasks/autogen.yml index bf51839..f956734 100644 --- a/tests/integration/targets/gcp_compute_firewall/tasks/autogen.yml +++ b/tests/integration/targets/gcp_compute_firewall/tasks/autogen.yml @@ -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 }}" diff --git a/tests/integration/targets/gcp_compute_firewall/tasks/update.yml b/tests/integration/targets/gcp_compute_firewall/tasks/update.yml index 3a2f73a..3bee9ad 100644 --- a/tests/integration/targets/gcp_compute_firewall/tasks/update.yml +++ b/tests/integration/targets/gcp_compute_firewall/tasks/update.yml @@ -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 }}" diff --git a/tests/integration/targets/gcp_compute_forwarding_rule/tasks/autogen.yml b/tests/integration/targets/gcp_compute_forwarding_rule/tasks/autogen.yml index c26206f..fd70aae 100644 --- a/tests/integration/targets/gcp_compute_forwarding_rule/tasks/autogen.yml +++ b/tests/integration/targets/gcp_compute_forwarding_rule/tasks/autogen.yml @@ -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 diff --git a/tests/integration/targets/gcp_compute_global_address/tasks/autogen.yml b/tests/integration/targets/gcp_compute_global_address/tasks/autogen.yml index 3333e3f..6d6849a 100644 --- a/tests/integration/targets/gcp_compute_global_address/tasks/autogen.yml +++ b/tests/integration/targets/gcp_compute_global_address/tasks/autogen.yml @@ -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 }}" diff --git a/tests/integration/targets/gcp_compute_global_forwarding_rule/tasks/autogen.yml b/tests/integration/targets/gcp_compute_global_forwarding_rule/tasks/autogen.yml index 93bab3a..afc395f 100644 --- a/tests/integration/targets/gcp_compute_global_forwarding_rule/tasks/autogen.yml +++ b/tests/integration/targets/gcp_compute_global_forwarding_rule/tasks/autogen.yml @@ -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 diff --git a/tests/integration/targets/gcp_compute_health_check/tasks/autogen.yml b/tests/integration/targets/gcp_compute_health_check/tasks/autogen.yml index d529ec6..30d4467 100644 --- a/tests/integration/targets/gcp_compute_health_check/tasks/autogen.yml +++ b/tests/integration/targets/gcp_compute_health_check/tasks/autogen.yml @@ -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 }}" diff --git a/tests/integration/targets/gcp_compute_http_health_check/tasks/autogen.yml b/tests/integration/targets/gcp_compute_http_health_check/tasks/autogen.yml index 1ff3b89..d40d7c4 100644 --- a/tests/integration/targets/gcp_compute_http_health_check/tasks/autogen.yml +++ b/tests/integration/targets/gcp_compute_http_health_check/tasks/autogen.yml @@ -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 }}" diff --git a/tests/integration/targets/gcp_compute_https_health_check/tasks/autogen.yml b/tests/integration/targets/gcp_compute_https_health_check/tasks/autogen.yml index c79968c..21259ac 100644 --- a/tests/integration/targets/gcp_compute_https_health_check/tasks/autogen.yml +++ b/tests/integration/targets/gcp_compute_https_health_check/tasks/autogen.yml @@ -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 }}" diff --git a/tests/integration/targets/gcp_compute_image/tasks/autogen.yml b/tests/integration/targets/gcp_compute_image/tasks/autogen.yml index e44f010..72b1fa3 100644 --- a/tests/integration/targets/gcp_compute_image/tasks/autogen.yml +++ b/tests/integration/targets/gcp_compute_image/tasks/autogen.yml @@ -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 diff --git a/tests/integration/targets/gcp_compute_instance/tasks/autogen.yml b/tests/integration/targets/gcp_compute_instance/tasks/autogen.yml index fbec1e1..863da29 100644 --- a/tests/integration/targets/gcp_compute_instance/tasks/autogen.yml +++ b/tests/integration/targets/gcp_compute_instance/tasks/autogen.yml @@ -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 diff --git a/tests/integration/targets/gcp_compute_instance_group/tasks/autogen.yml b/tests/integration/targets/gcp_compute_instance_group/tasks/autogen.yml index 340c8ca..59932ab 100644 --- a/tests/integration/targets/gcp_compute_instance_group/tasks/autogen.yml +++ b/tests/integration/targets/gcp_compute_instance_group/tasks/autogen.yml @@ -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 diff --git a/tests/integration/targets/gcp_compute_instance_group_manager/tasks/autogen.yml b/tests/integration/targets/gcp_compute_instance_group_manager/tasks/autogen.yml index a60441e..6c6f0dd 100644 --- a/tests/integration/targets/gcp_compute_instance_group_manager/tasks/autogen.yml +++ b/tests/integration/targets/gcp_compute_instance_group_manager/tasks/autogen.yml @@ -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 diff --git a/tests/integration/targets/gcp_compute_instance_template/tasks/autogen.yml b/tests/integration/targets/gcp_compute_instance_template/tasks/autogen.yml index 72fb809..6db4c44 100644 --- a/tests/integration/targets/gcp_compute_instance_template/tasks/autogen.yml +++ b/tests/integration/targets/gcp_compute_instance_template/tasks/autogen.yml @@ -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 diff --git a/tests/integration/targets/gcp_compute_network/tasks/autogen.yml b/tests/integration/targets/gcp_compute_network/tasks/autogen.yml index b887e2b..f4b7a05 100644 --- a/tests/integration/targets/gcp_compute_network/tasks/autogen.yml +++ b/tests/integration/targets/gcp_compute_network/tasks/autogen.yml @@ -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 }}" diff --git a/tests/integration/targets/gcp_compute_network_endpoint_group/tasks/autogen.yml b/tests/integration/targets/gcp_compute_network_endpoint_group/tasks/autogen.yml index 81f46d2..fd55eee 100644 --- a/tests/integration/targets/gcp_compute_network_endpoint_group/tasks/autogen.yml +++ b/tests/integration/targets/gcp_compute_network_endpoint_group/tasks/autogen.yml @@ -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 diff --git a/tests/integration/targets/gcp_compute_node_group/tasks/autogen.yml b/tests/integration/targets/gcp_compute_node_group/tasks/autogen.yml index 25d46af..2ccf514 100644 --- a/tests/integration/targets/gcp_compute_node_group/tasks/autogen.yml +++ b/tests/integration/targets/gcp_compute_node_group/tasks/autogen.yml @@ -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 diff --git a/tests/integration/targets/gcp_compute_node_template/tasks/autogen.yml b/tests/integration/targets/gcp_compute_node_template/tasks/autogen.yml index f21ce63..944fefa 100644 --- a/tests/integration/targets/gcp_compute_node_template/tasks/autogen.yml +++ b/tests/integration/targets/gcp_compute_node_template/tasks/autogen.yml @@ -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 }}" diff --git a/tests/integration/targets/gcp_compute_region_autoscaler/tasks/autogen.yml b/tests/integration/targets/gcp_compute_region_autoscaler/tasks/autogen.yml index 5a986a9..03df99e 100644 --- a/tests/integration/targets/gcp_compute_region_autoscaler/tasks/autogen.yml +++ b/tests/integration/targets/gcp_compute_region_autoscaler/tasks/autogen.yml @@ -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 diff --git a/tests/integration/targets/gcp_compute_region_backend_service/tasks/autogen.yml b/tests/integration/targets/gcp_compute_region_backend_service/tasks/autogen.yml index beb644a..7267a92 100644 --- a/tests/integration/targets/gcp_compute_region_backend_service/tasks/autogen.yml +++ b/tests/integration/targets/gcp_compute_region_backend_service/tasks/autogen.yml @@ -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 diff --git a/tests/integration/targets/gcp_compute_region_disk/tasks/autogen.yml b/tests/integration/targets/gcp_compute_region_disk/tasks/autogen.yml index 1b04a50..fc75b5f 100644 --- a/tests/integration/targets/gcp_compute_region_disk/tasks/autogen.yml +++ b/tests/integration/targets/gcp_compute_region_disk/tasks/autogen.yml @@ -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 }}" diff --git a/tests/integration/targets/gcp_compute_region_health_check/tasks/autogen.yml b/tests/integration/targets/gcp_compute_region_health_check/tasks/autogen.yml index badcfb8..63fdc2e 100644 --- a/tests/integration/targets/gcp_compute_region_health_check/tasks/autogen.yml +++ b/tests/integration/targets/gcp_compute_region_health_check/tasks/autogen.yml @@ -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 }}" diff --git a/tests/integration/targets/gcp_compute_region_instance_group_manager/tasks/autogen.yml b/tests/integration/targets/gcp_compute_region_instance_group_manager/tasks/autogen.yml index e606464..5a28541 100644 --- a/tests/integration/targets/gcp_compute_region_instance_group_manager/tasks/autogen.yml +++ b/tests/integration/targets/gcp_compute_region_instance_group_manager/tasks/autogen.yml @@ -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 diff --git a/tests/integration/targets/gcp_compute_region_target_http_proxy/tasks/autogen.yml b/tests/integration/targets/gcp_compute_region_target_http_proxy/tasks/autogen.yml index 9c1da53..1c7927f 100644 --- a/tests/integration/targets/gcp_compute_region_target_http_proxy/tasks/autogen.yml +++ b/tests/integration/targets/gcp_compute_region_target_http_proxy/tasks/autogen.yml @@ -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 diff --git a/tests/integration/targets/gcp_compute_region_target_https_proxy/tasks/autogen.yml b/tests/integration/targets/gcp_compute_region_target_https_proxy/tasks/autogen.yml index ac02c56..198d564 100644 --- a/tests/integration/targets/gcp_compute_region_target_https_proxy/tasks/autogen.yml +++ b/tests/integration/targets/gcp_compute_region_target_https_proxy/tasks/autogen.yml @@ -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 diff --git a/tests/integration/targets/gcp_compute_region_url_map/tasks/autogen.yml b/tests/integration/targets/gcp_compute_region_url_map/tasks/autogen.yml index 1cbfae9..f859cb4 100644 --- a/tests/integration/targets/gcp_compute_region_url_map/tasks/autogen.yml +++ b/tests/integration/targets/gcp_compute_region_url_map/tasks/autogen.yml @@ -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 diff --git a/tests/integration/targets/gcp_compute_reservation/tasks/autogen.yml b/tests/integration/targets/gcp_compute_reservation/tasks/autogen.yml index 7663bf5..aba1e6a 100644 --- a/tests/integration/targets/gcp_compute_reservation/tasks/autogen.yml +++ b/tests/integration/targets/gcp_compute_reservation/tasks/autogen.yml @@ -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 }}" diff --git a/tests/integration/targets/gcp_compute_resource_policy/tasks/autogen.yml b/tests/integration/targets/gcp_compute_resource_policy/tasks/autogen.yml index 86647db..4bc6393 100644 --- a/tests/integration/targets/gcp_compute_resource_policy/tasks/autogen.yml +++ b/tests/integration/targets/gcp_compute_resource_policy/tasks/autogen.yml @@ -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 }}" diff --git a/tests/integration/targets/gcp_compute_route/tasks/autogen.yml b/tests/integration/targets/gcp_compute_route/tasks/autogen.yml index 347c503..2713982 100644 --- a/tests/integration/targets/gcp_compute_route/tasks/autogen.yml +++ b/tests/integration/targets/gcp_compute_route/tasks/autogen.yml @@ -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 diff --git a/tests/integration/targets/gcp_compute_router/tasks/autogen.yml b/tests/integration/targets/gcp_compute_router/tasks/autogen.yml index 07acc69..a69ef79 100644 --- a/tests/integration/targets/gcp_compute_router/tasks/autogen.yml +++ b/tests/integration/targets/gcp_compute_router/tasks/autogen.yml @@ -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 diff --git a/tests/integration/targets/gcp_compute_snapshot/tasks/autogen.yml b/tests/integration/targets/gcp_compute_snapshot/tasks/autogen.yml index 435284e..6df909a 100644 --- a/tests/integration/targets/gcp_compute_snapshot/tasks/autogen.yml +++ b/tests/integration/targets/gcp_compute_snapshot/tasks/autogen.yml @@ -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 diff --git a/tests/integration/targets/gcp_compute_ssl_certificate/tasks/autogen.yml b/tests/integration/targets/gcp_compute_ssl_certificate/tasks/autogen.yml index 9d36683..a3bb3fe 100644 --- a/tests/integration/targets/gcp_compute_ssl_certificate/tasks/autogen.yml +++ b/tests/integration/targets/gcp_compute_ssl_certificate/tasks/autogen.yml @@ -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 }}" diff --git a/tests/integration/targets/gcp_compute_ssl_policy/tasks/autogen.yml b/tests/integration/targets/gcp_compute_ssl_policy/tasks/autogen.yml index adbba9f..71fa905 100644 --- a/tests/integration/targets/gcp_compute_ssl_policy/tasks/autogen.yml +++ b/tests/integration/targets/gcp_compute_ssl_policy/tasks/autogen.yml @@ -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 }}" diff --git a/tests/integration/targets/gcp_compute_subnetwork/tasks/autogen.yml b/tests/integration/targets/gcp_compute_subnetwork/tasks/autogen.yml index 6849cca..48f5d33 100644 --- a/tests/integration/targets/gcp_compute_subnetwork/tasks/autogen.yml +++ b/tests/integration/targets/gcp_compute_subnetwork/tasks/autogen.yml @@ -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 diff --git a/tests/integration/targets/gcp_compute_target_http_proxy/tasks/autogen.yml b/tests/integration/targets/gcp_compute_target_http_proxy/tasks/autogen.yml index 1c48c9d..b901024 100644 --- a/tests/integration/targets/gcp_compute_target_http_proxy/tasks/autogen.yml +++ b/tests/integration/targets/gcp_compute_target_http_proxy/tasks/autogen.yml @@ -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 diff --git a/tests/integration/targets/gcp_compute_target_https_proxy/tasks/autogen.yml b/tests/integration/targets/gcp_compute_target_https_proxy/tasks/autogen.yml index 5731d08..a008487 100644 --- a/tests/integration/targets/gcp_compute_target_https_proxy/tasks/autogen.yml +++ b/tests/integration/targets/gcp_compute_target_https_proxy/tasks/autogen.yml @@ -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 diff --git a/tests/integration/targets/gcp_compute_target_instance/tasks/autogen.yml b/tests/integration/targets/gcp_compute_target_instance/tasks/autogen.yml index 74a01f6..51e3cf7 100644 --- a/tests/integration/targets/gcp_compute_target_instance/tasks/autogen.yml +++ b/tests/integration/targets/gcp_compute_target_instance/tasks/autogen.yml @@ -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 diff --git a/tests/integration/targets/gcp_compute_target_pool/tasks/autogen.yml b/tests/integration/targets/gcp_compute_target_pool/tasks/autogen.yml index 59a46d2..3824881 100644 --- a/tests/integration/targets/gcp_compute_target_pool/tasks/autogen.yml +++ b/tests/integration/targets/gcp_compute_target_pool/tasks/autogen.yml @@ -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 }}" diff --git a/tests/integration/targets/gcp_compute_target_ssl_proxy/tasks/autogen.yml b/tests/integration/targets/gcp_compute_target_ssl_proxy/tasks/autogen.yml index 6142ec9..eaf99ac 100644 --- a/tests/integration/targets/gcp_compute_target_ssl_proxy/tasks/autogen.yml +++ b/tests/integration/targets/gcp_compute_target_ssl_proxy/tasks/autogen.yml @@ -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 diff --git a/tests/integration/targets/gcp_compute_target_tcp_proxy/tasks/autogen.yml b/tests/integration/targets/gcp_compute_target_tcp_proxy/tasks/autogen.yml index 82e3e55..005d655 100644 --- a/tests/integration/targets/gcp_compute_target_tcp_proxy/tasks/autogen.yml +++ b/tests/integration/targets/gcp_compute_target_tcp_proxy/tasks/autogen.yml @@ -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 diff --git a/tests/integration/targets/gcp_compute_target_vpn_gateway/tasks/autogen.yml b/tests/integration/targets/gcp_compute_target_vpn_gateway/tasks/autogen.yml index a14a149..c8753a8 100644 --- a/tests/integration/targets/gcp_compute_target_vpn_gateway/tasks/autogen.yml +++ b/tests/integration/targets/gcp_compute_target_vpn_gateway/tasks/autogen.yml @@ -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 diff --git a/tests/integration/targets/gcp_compute_url_map/tasks/autogen.yml b/tests/integration/targets/gcp_compute_url_map/tasks/autogen.yml index ead14fe..8f39865 100644 --- a/tests/integration/targets/gcp_compute_url_map/tasks/autogen.yml +++ b/tests/integration/targets/gcp_compute_url_map/tasks/autogen.yml @@ -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 diff --git a/tests/integration/targets/gcp_compute_vpn_tunnel/tasks/autogen.yml b/tests/integration/targets/gcp_compute_vpn_tunnel/tasks/autogen.yml index 79d4e05..c4a3c44 100644 --- a/tests/integration/targets/gcp_compute_vpn_tunnel/tasks/autogen.yml +++ b/tests/integration/targets/gcp_compute_vpn_tunnel/tasks/autogen.yml @@ -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: diff --git a/tests/integration/targets/gcp_container_cluster/tasks/autogen.yml b/tests/integration/targets/gcp_container_cluster/tasks/autogen.yml index f3c1d12..9c7f9f7 100644 --- a/tests/integration/targets/gcp_container_cluster/tasks/autogen.yml +++ b/tests/integration/targets/gcp_container_cluster/tasks/autogen.yml @@ -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 diff --git a/tests/integration/targets/gcp_container_node_pool/tasks/autogen.yml b/tests/integration/targets/gcp_container_node_pool/tasks/autogen.yml index 84fe978..734707e 100644 --- a/tests/integration/targets/gcp_container_node_pool/tasks/autogen.yml +++ b/tests/integration/targets/gcp_container_node_pool/tasks/autogen.yml @@ -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 diff --git a/tests/integration/targets/gcp_dns_managed_zone/tasks/autogen.yml b/tests/integration/targets/gcp_dns_managed_zone/tasks/autogen.yml index 2e7b2bf..6e16c49 100644 --- a/tests/integration/targets/gcp_dns_managed_zone/tasks/autogen.yml +++ b/tests/integration/targets/gcp_dns_managed_zone/tasks/autogen.yml @@ -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 }}" diff --git a/tests/integration/targets/gcp_dns_resource_record_set/tasks/autogen.yml b/tests/integration/targets/gcp_dns_resource_record_set/tasks/autogen.yml index c8ca535..5c6ba66 100644 --- a/tests/integration/targets/gcp_dns_resource_record_set/tasks/autogen.yml +++ b/tests/integration/targets/gcp_dns_resource_record_set/tasks/autogen.yml @@ -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 diff --git a/tests/integration/targets/gcp_filestore_instance/tasks/autogen.yml b/tests/integration/targets/gcp_filestore_instance/tasks/autogen.yml index 20a7bde..581af9d 100644 --- a/tests/integration/targets/gcp_filestore_instance/tasks/autogen.yml +++ b/tests/integration/targets/gcp_filestore_instance/tasks/autogen.yml @@ -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 }}" diff --git a/tests/integration/targets/gcp_iam_role/tasks/autogen.yml b/tests/integration/targets/gcp_iam_role/tasks/autogen.yml index d4afe35..c2737f8 100644 --- a/tests/integration/targets/gcp_iam_role/tasks/autogen.yml +++ b/tests/integration/targets/gcp_iam_role/tasks/autogen.yml @@ -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('-', '_') }}" diff --git a/tests/integration/targets/gcp_iam_service_account/tasks/autogen.yml b/tests/integration/targets/gcp_iam_service_account/tasks/autogen.yml index 9a4106d..d4273cb 100644 --- a/tests/integration/targets/gcp_iam_service_account/tasks/autogen.yml +++ b/tests/integration/targets/gcp_iam_service_account/tasks/autogen.yml @@ -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 diff --git a/tests/integration/targets/gcp_kms_crypto_key/tasks/autogen.yml b/tests/integration/targets/gcp_kms_crypto_key/tasks/autogen.yml index 0e27077..96a6369 100644 --- a/tests/integration/targets/gcp_kms_crypto_key/tasks/autogen.yml +++ b/tests/integration/targets/gcp_kms_crypto_key/tasks/autogen.yml @@ -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 }}" diff --git a/tests/integration/targets/gcp_kms_key_ring/tasks/autogen.yml b/tests/integration/targets/gcp_kms_key_ring/tasks/autogen.yml index b0af43c..1555647 100644 --- a/tests/integration/targets/gcp_kms_key_ring/tasks/autogen.yml +++ b/tests/integration/targets/gcp_kms_key_ring/tasks/autogen.yml @@ -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 }}" diff --git a/tests/integration/targets/gcp_logging_metric/tasks/autogen.yml b/tests/integration/targets/gcp_logging_metric/tasks/autogen.yml index 90a77b0..0d34f20 100644 --- a/tests/integration/targets/gcp_logging_metric/tasks/autogen.yml +++ b/tests/integration/targets/gcp_logging_metric/tasks/autogen.yml @@ -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 }}" diff --git a/tests/integration/targets/gcp_mlengine_model/tasks/autogen.yml b/tests/integration/targets/gcp_mlengine_model/tasks/autogen.yml index 619a49c..0e7f01a 100644 --- a/tests/integration/targets/gcp_mlengine_model/tasks/autogen.yml +++ b/tests/integration/targets/gcp_mlengine_model/tasks/autogen.yml @@ -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('-', '_') }}" diff --git a/tests/integration/targets/gcp_mlengine_version/tasks/autogen.yml b/tests/integration/targets/gcp_mlengine_version/tasks/autogen.yml index d68bad0..d97aa73 100644 --- a/tests/integration/targets/gcp_mlengine_version/tasks/autogen.yml +++ b/tests/integration/targets/gcp_mlengine_version/tasks/autogen.yml @@ -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 diff --git a/tests/integration/targets/gcp_pubsub_subscription/tasks/autogen.yml b/tests/integration/targets/gcp_pubsub_subscription/tasks/autogen.yml index 395f50a..8f93c73 100644 --- a/tests/integration/targets/gcp_pubsub_subscription/tasks/autogen.yml +++ b/tests/integration/targets/gcp_pubsub_subscription/tasks/autogen.yml @@ -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 diff --git a/tests/integration/targets/gcp_pubsub_topic/tasks/autogen.yml b/tests/integration/targets/gcp_pubsub_topic/tasks/autogen.yml index d9f3cd3..c95face 100644 --- a/tests/integration/targets/gcp_pubsub_topic/tasks/autogen.yml +++ b/tests/integration/targets/gcp_pubsub_topic/tasks/autogen.yml @@ -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 diff --git a/tests/integration/targets/gcp_redis_instance/tasks/autogen.yml b/tests/integration/targets/gcp_redis_instance/tasks/autogen.yml index cea48d6..fde9495 100644 --- a/tests/integration/targets/gcp_redis_instance/tasks/autogen.yml +++ b/tests/integration/targets/gcp_redis_instance/tasks/autogen.yml @@ -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 diff --git a/tests/integration/targets/gcp_resourcemanager_project/tasks/autogen.yml b/tests/integration/targets/gcp_resourcemanager_project/tasks/autogen.yml index 5545d0e..3c28f98 100644 --- a/tests/integration/targets/gcp_resourcemanager_project/tasks/autogen.yml +++ b/tests/integration/targets/gcp_resourcemanager_project/tasks/autogen.yml @@ -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] }}" diff --git a/tests/integration/targets/gcp_runtimeconfig_config/tasks/autogen.yml b/tests/integration/targets/gcp_runtimeconfig_config/tasks/autogen.yml index 3eebf1b..517d2fe 100644 --- a/tests/integration/targets/gcp_runtimeconfig_config/tasks/autogen.yml +++ b/tests/integration/targets/gcp_runtimeconfig_config/tasks/autogen.yml @@ -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 }}" diff --git a/tests/integration/targets/gcp_runtimeconfig_variable/tasks/autogen.yml b/tests/integration/targets/gcp_runtimeconfig_variable/tasks/autogen.yml index 4a790dc..804f905 100644 --- a/tests/integration/targets/gcp_runtimeconfig_variable/tasks/autogen.yml +++ b/tests/integration/targets/gcp_runtimeconfig_variable/tasks/autogen.yml @@ -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 diff --git a/tests/integration/targets/gcp_serviceusage_service/tasks/autogen.yml b/tests/integration/targets/gcp_serviceusage_service/tasks/autogen.yml index 666da8f..88b146e 100644 --- a/tests/integration/targets/gcp_serviceusage_service/tasks/autogen.yml +++ b/tests/integration/targets/gcp_serviceusage_service/tasks/autogen.yml @@ -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 diff --git a/tests/integration/targets/gcp_sourcerepo_repository/tasks/autogen.yml b/tests/integration/targets/gcp_sourcerepo_repository/tasks/autogen.yml index 0bc8058..857e3f9 100644 --- a/tests/integration/targets/gcp_sourcerepo_repository/tasks/autogen.yml +++ b/tests/integration/targets/gcp_sourcerepo_repository/tasks/autogen.yml @@ -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 }}" diff --git a/tests/integration/targets/gcp_spanner_database/tasks/autogen.yml b/tests/integration/targets/gcp_spanner_database/tasks/autogen.yml index a3aa4cc..cc1258f 100644 --- a/tests/integration/targets/gcp_spanner_database/tasks/autogen.yml +++ b/tests/integration/targets/gcp_spanner_database/tasks/autogen.yml @@ -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 diff --git a/tests/integration/targets/gcp_spanner_instance/tasks/autogen.yml b/tests/integration/targets/gcp_spanner_instance/tasks/autogen.yml index daae5c8..f69f236 100644 --- a/tests/integration/targets/gcp_spanner_instance/tasks/autogen.yml +++ b/tests/integration/targets/gcp_spanner_instance/tasks/autogen.yml @@ -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 diff --git a/tests/integration/targets/gcp_sql_database/tasks/autogen.yml b/tests/integration/targets/gcp_sql_database/tasks/autogen.yml index a84096f..1b55bbb 100644 --- a/tests/integration/targets/gcp_sql_database/tasks/autogen.yml +++ b/tests/integration/targets/gcp_sql_database/tasks/autogen.yml @@ -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 diff --git a/tests/integration/targets/gcp_sql_instance/tasks/autogen.yml b/tests/integration/targets/gcp_sql_instance/tasks/autogen.yml index c57de05..32434af 100644 --- a/tests/integration/targets/gcp_sql_instance/tasks/autogen.yml +++ b/tests/integration/targets/gcp_sql_instance/tasks/autogen.yml @@ -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" diff --git a/tests/integration/targets/gcp_sql_ssl_cert/tasks/autogen.yml b/tests/integration/targets/gcp_sql_ssl_cert/tasks/autogen.yml index c24746d..bf89c4a 100644 --- a/tests/integration/targets/gcp_sql_ssl_cert/tasks/autogen.yml +++ b/tests/integration/targets/gcp_sql_ssl_cert/tasks/autogen.yml @@ -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 diff --git a/tests/integration/targets/gcp_sql_user/tasks/autogen.yml b/tests/integration/targets/gcp_sql_user/tasks/autogen.yml index 0a820cf..a9bbb85 100644 --- a/tests/integration/targets/gcp_sql_user/tasks/autogen.yml +++ b/tests/integration/targets/gcp_sql_user/tasks/autogen.yml @@ -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 diff --git a/tests/integration/targets/gcp_storage_bucket/tasks/autogen.yml b/tests/integration/targets/gcp_storage_bucket/tasks/autogen.yml index f5ccaca..9ac7125 100644 --- a/tests/integration/targets/gcp_storage_bucket/tasks/autogen.yml +++ b/tests/integration/targets/gcp_storage_bucket/tasks/autogen.yml @@ -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 }}" diff --git a/tests/integration/targets/gcp_storage_bucket_access_control/tasks/autogen.yml b/tests/integration/targets/gcp_storage_bucket_access_control/tasks/autogen.yml index 762e0f6..a3ef278 100644 --- a/tests/integration/targets/gcp_storage_bucket_access_control/tasks/autogen.yml +++ b/tests/integration/targets/gcp_storage_bucket_access_control/tasks/autogen.yml @@ -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 diff --git a/tests/integration/targets/gcp_storage_default_object_acl/tasks/autogen.yml b/tests/integration/targets/gcp_storage_default_object_acl/tasks/autogen.yml index 6f43684..c330abf 100644 --- a/tests/integration/targets/gcp_storage_default_object_acl/tasks/autogen.yml +++ b/tests/integration/targets/gcp_storage_default_object_acl/tasks/autogen.yml @@ -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 diff --git a/tests/integration/targets/gcp_storage_object/tasks/main.yml b/tests/integration/targets/gcp_storage_object/tasks/main.yml index 4d6d31f..8199540 100644 --- a/tests/integration/targets/gcp_storage_object/tasks/main.yml +++ b/tests/integration/targets/gcp_storage_object/tasks/main.yml @@ -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 diff --git a/tests/integration/targets/gcp_tpu_node/tasks/autogen.yml b/tests/integration/targets/gcp_tpu_node/tasks/autogen.yml index 196aa6a..8576898 100644 --- a/tests/integration/targets/gcp_tpu_node/tasks/autogen.yml +++ b/tests/integration/targets/gcp_tpu_node/tasks/autogen.yml @@ -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 }}"