summaryrefslogtreecommitdiff
path: root/test/integration/targets/gcp_compute_health_check
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_compute_health_check
parent775a89254535f6698d191432b80caf8163321b6f (diff)
downloadansible-174b9c0e4ce30e5c47b44318e35a782a7713c710.tar.gz
Migrated to google.cloud
Diffstat (limited to 'test/integration/targets/gcp_compute_health_check')
-rw-r--r--test/integration/targets/gcp_compute_health_check/aliases2
-rw-r--r--test/integration/targets/gcp_compute_health_check/defaults/main.yml2
-rw-r--r--test/integration/targets/gcp_compute_health_check/meta/main.yml0
-rw-r--r--test/integration/targets/gcp_compute_health_check/tasks/autogen.yml142
-rw-r--r--test/integration/targets/gcp_compute_health_check/tasks/main.yml2
5 files changed, 0 insertions, 148 deletions
diff --git a/test/integration/targets/gcp_compute_health_check/aliases b/test/integration/targets/gcp_compute_health_check/aliases
deleted file mode 100644
index 9812f019ca..0000000000
--- a/test/integration/targets/gcp_compute_health_check/aliases
+++ /dev/null
@@ -1,2 +0,0 @@
-cloud/gcp
-unsupported
diff --git a/test/integration/targets/gcp_compute_health_check/defaults/main.yml b/test/integration/targets/gcp_compute_health_check/defaults/main.yml
deleted file mode 100644
index ba66644fc1..0000000000
--- a/test/integration/targets/gcp_compute_health_check/defaults/main.yml
+++ /dev/null
@@ -1,2 +0,0 @@
----
-resource_name: "{{ resource_prefix }}"
diff --git a/test/integration/targets/gcp_compute_health_check/meta/main.yml b/test/integration/targets/gcp_compute_health_check/meta/main.yml
deleted file mode 100644
index e69de29bb2..0000000000
--- a/test/integration/targets/gcp_compute_health_check/meta/main.yml
+++ /dev/null
diff --git a/test/integration/targets/gcp_compute_health_check/tasks/autogen.yml b/test/integration/targets/gcp_compute_health_check/tasks/autogen.yml
deleted file mode 100644
index ab1c837cc7..0000000000
--- a/test/integration/targets/gcp_compute_health_check/tasks/autogen.yml
+++ /dev/null
@@ -1,142 +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 health check
- gcp_compute_health_check:
- name: "{{ resource_name }}"
- type: TCP
- tcp_health_check:
- port_name: service-health
- request: ping
- response: pong
- healthy_threshold: 10
- timeout_sec: 2
- unhealthy_threshold: 5
- project: "{{ gcp_project }}"
- auth_kind: "{{ gcp_cred_kind }}"
- service_account_file: "{{ gcp_cred_file }}"
- state: absent
-#----------------------------------------------------------
-- name: create a health check
- gcp_compute_health_check:
- name: "{{ resource_name }}"
- type: TCP
- tcp_health_check:
- port_name: service-health
- request: ping
- response: pong
- healthy_threshold: 10
- timeout_sec: 2
- unhealthy_threshold: 5
- 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: verify that health_check was created
- gcp_compute_health_check_info:
- filters:
- - name = {{ resource_name }}
- project: "{{ gcp_project }}"
- auth_kind: "{{ gcp_cred_kind }}"
- service_account_file: "{{ gcp_cred_file }}"
- scopes:
- - https://www.googleapis.com/auth/compute
- register: results
-- name: verify that command succeeded
- assert:
- that:
- - results['resources'] | length == 1
-# ----------------------------------------------------------------------------
-- name: create a health check that already exists
- gcp_compute_health_check:
- name: "{{ resource_name }}"
- type: TCP
- tcp_health_check:
- port_name: service-health
- request: ping
- response: pong
- healthy_threshold: 10
- timeout_sec: 2
- unhealthy_threshold: 5
- 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 health check
- gcp_compute_health_check:
- name: "{{ resource_name }}"
- type: TCP
- tcp_health_check:
- port_name: service-health
- request: ping
- response: pong
- healthy_threshold: 10
- timeout_sec: 2
- unhealthy_threshold: 5
- 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: verify that health_check was deleted
- gcp_compute_health_check_info:
- filters:
- - name = {{ resource_name }}
- project: "{{ gcp_project }}"
- auth_kind: "{{ gcp_cred_kind }}"
- service_account_file: "{{ gcp_cred_file }}"
- scopes:
- - https://www.googleapis.com/auth/compute
- register: results
-- name: verify that command succeeded
- assert:
- that:
- - results['resources'] | length == 0
-# ----------------------------------------------------------------------------
-- name: delete a health check that does not exist
- gcp_compute_health_check:
- name: "{{ resource_name }}"
- type: TCP
- tcp_health_check:
- port_name: service-health
- request: ping
- response: pong
- healthy_threshold: 10
- timeout_sec: 2
- unhealthy_threshold: 5
- 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_compute_health_check/tasks/main.yml b/test/integration/targets/gcp_compute_health_check/tasks/main.yml
deleted file mode 100644
index 45d6e49178..0000000000
--- a/test/integration/targets/gcp_compute_health_check/tasks/main.yml
+++ /dev/null
@@ -1,2 +0,0 @@
----
-- include_tasks: autogen.yml