summaryrefslogtreecommitdiff
path: root/test/integration/targets/gcp_storage_bucket
diff options
context:
space:
mode:
authorAnsible Core Team <info@ansible.com>2020-03-09 09:40:37 +0000
committerAnsible Core Team <info@ansible.com>2020-03-09 09:40:37 +0000
commit174b9c0e4ce30e5c47b44318e35a782a7713c710 (patch)
tree75a9c4a34fbaded9ee9f760dc26c478d18e237c6 /test/integration/targets/gcp_storage_bucket
parent775a89254535f6698d191432b80caf8163321b6f (diff)
downloadansible-174b9c0e4ce30e5c47b44318e35a782a7713c710.tar.gz
Migrated to google.cloud
Diffstat (limited to 'test/integration/targets/gcp_storage_bucket')
-rw-r--r--test/integration/targets/gcp_storage_bucket/aliases2
-rw-r--r--test/integration/targets/gcp_storage_bucket/defaults/main.yml2
-rw-r--r--test/integration/targets/gcp_storage_bucket/meta/main.yml0
-rw-r--r--test/integration/targets/gcp_storage_bucket/tasks/autogen.yml74
-rw-r--r--test/integration/targets/gcp_storage_bucket/tasks/main.yml2
5 files changed, 0 insertions, 80 deletions
diff --git a/test/integration/targets/gcp_storage_bucket/aliases b/test/integration/targets/gcp_storage_bucket/aliases
deleted file mode 100644
index 9812f019ca..0000000000
--- a/test/integration/targets/gcp_storage_bucket/aliases
+++ /dev/null
@@ -1,2 +0,0 @@
-cloud/gcp
-unsupported
diff --git a/test/integration/targets/gcp_storage_bucket/defaults/main.yml b/test/integration/targets/gcp_storage_bucket/defaults/main.yml
deleted file mode 100644
index ba66644fc1..0000000000
--- a/test/integration/targets/gcp_storage_bucket/defaults/main.yml
+++ /dev/null
@@ -1,2 +0,0 @@
----
-resource_name: "{{ resource_prefix }}"
diff --git a/test/integration/targets/gcp_storage_bucket/meta/main.yml b/test/integration/targets/gcp_storage_bucket/meta/main.yml
deleted file mode 100644
index e69de29bb2..0000000000
--- a/test/integration/targets/gcp_storage_bucket/meta/main.yml
+++ /dev/null
diff --git a/test/integration/targets/gcp_storage_bucket/tasks/autogen.yml b/test/integration/targets/gcp_storage_bucket/tasks/autogen.yml
deleted file mode 100644
index d49ec899c1..0000000000
--- a/test/integration/targets/gcp_storage_bucket/tasks/autogen.yml
+++ /dev/null
@@ -1,74 +0,0 @@
----
-# ----------------------------------------------------------------------------
-#
-# *** AUTO GENERATED CODE *** AUTO GENERATED CODE ***
-#
-# ----------------------------------------------------------------------------
-#
-# This file is automatically generated by Magic Modules and manual
-# changes will be clobbered when the file is regenerated.
-#
-# Please read more about how to change this file at
-# https://www.github.com/GoogleCloudPlatform/magic-modules
-#
-# ----------------------------------------------------------------------------
-# Pre-test setup
-- name: delete a bucket
- gcp_storage_bucket:
- name: ansible-storage-module
- project: "{{ gcp_project }}"
- auth_kind: "{{ gcp_cred_kind }}"
- service_account_file: "{{ gcp_cred_file }}"
- state: absent
-#----------------------------------------------------------
-- name: create a bucket
- gcp_storage_bucket:
- name: ansible-storage-module
- project: "{{ gcp_project }}"
- auth_kind: "{{ gcp_cred_kind }}"
- service_account_file: "{{ gcp_cred_file }}"
- state: present
- register: result
-- name: assert changed is true
- assert:
- that:
- - result.changed == true
-# ----------------------------------------------------------------------------
-- name: create a bucket that already exists
- gcp_storage_bucket:
- name: ansible-storage-module
- project: "{{ gcp_project }}"
- auth_kind: "{{ gcp_cred_kind }}"
- service_account_file: "{{ gcp_cred_file }}"
- state: present
- register: result
-- name: assert changed is false
- assert:
- that:
- - result.changed == false
-#----------------------------------------------------------
-- name: delete a bucket
- gcp_storage_bucket:
- name: ansible-storage-module
- project: "{{ gcp_project }}"
- auth_kind: "{{ gcp_cred_kind }}"
- service_account_file: "{{ gcp_cred_file }}"
- state: absent
- register: result
-- name: assert changed is true
- assert:
- that:
- - result.changed == true
-# ----------------------------------------------------------------------------
-- name: delete a bucket that does not exist
- gcp_storage_bucket:
- name: ansible-storage-module
- project: "{{ gcp_project }}"
- auth_kind: "{{ gcp_cred_kind }}"
- service_account_file: "{{ gcp_cred_file }}"
- state: absent
- register: result
-- name: assert changed is false
- assert:
- that:
- - result.changed == false
diff --git a/test/integration/targets/gcp_storage_bucket/tasks/main.yml b/test/integration/targets/gcp_storage_bucket/tasks/main.yml
deleted file mode 100644
index 45d6e49178..0000000000
--- a/test/integration/targets/gcp_storage_bucket/tasks/main.yml
+++ /dev/null
@@ -1,2 +0,0 @@
----
-- include_tasks: autogen.yml