mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-04-04 18:00:26 -07:00
172 lines
5.5 KiB
YAML
172 lines
5.5 KiB
YAML
---
|
|
# ----------------------------------------------------------------------------
|
|
#
|
|
# *** AUTO GENERATED CODE *** Type: MMv1 ***
|
|
#
|
|
# ----------------------------------------------------------------------------
|
|
#
|
|
# 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: Create a network
|
|
google.cloud.gcp_compute_network:
|
|
name: network-instance
|
|
project: "{{ gcp_project }}"
|
|
auth_kind: "{{ gcp_cred_kind }}"
|
|
service_account_file: "{{ gcp_cred_file | default(omit) }}"
|
|
auto_create_subnetworks: true
|
|
state: present
|
|
register: network
|
|
- name: Delete a instance
|
|
google.cloud.gcp_redis_instance:
|
|
name: instance37
|
|
tier: STANDARD_HA
|
|
memory_size_gb: 1
|
|
region: us-central1
|
|
location_id: us-central1-a
|
|
redis_version: REDIS_3_2
|
|
display_name: Ansible Test Instance
|
|
reserved_ip_range: 192.168.0.0/29
|
|
labels:
|
|
my_key: my_val
|
|
other_key: other_val
|
|
project: "{{ gcp_project }}"
|
|
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
|
|
tier: STANDARD_HA
|
|
memory_size_gb: 1
|
|
region: us-central1
|
|
location_id: us-central1-a
|
|
redis_version: REDIS_3_2
|
|
display_name: Ansible Test Instance
|
|
reserved_ip_range: 192.168.0.0/29
|
|
labels:
|
|
my_key: my_val
|
|
other_key: other_val
|
|
project: "{{ gcp_project }}"
|
|
auth_kind: "{{ gcp_cred_kind }}"
|
|
service_account_file: "{{ gcp_cred_file | default(omit) }}"
|
|
state: present
|
|
register: result
|
|
- name: Assert changed is true
|
|
ansible.builtin.assert:
|
|
that:
|
|
- result.changed == true
|
|
- name: Verify that instance was created
|
|
google.cloud.gcp_redis_instance_info:
|
|
region: us-central1
|
|
project: "{{ gcp_project }}"
|
|
auth_kind: "{{ gcp_cred_kind }}"
|
|
service_account_file: "{{ gcp_cred_file | default(omit) }}"
|
|
scopes:
|
|
- https://www.googleapis.com/auth/cloud-platform
|
|
register: results
|
|
- name: Verify that command succeeded
|
|
ansible.builtin.assert:
|
|
that:
|
|
- results['resources'] | map(attribute='name') | select("match", ".*instance37.*") | list | length == 1
|
|
# ----------------------------------------------------------------------------
|
|
- name: Create a instance that already exists
|
|
google.cloud.gcp_redis_instance:
|
|
name: instance37
|
|
tier: STANDARD_HA
|
|
memory_size_gb: 1
|
|
region: us-central1
|
|
location_id: us-central1-a
|
|
redis_version: REDIS_3_2
|
|
display_name: Ansible Test Instance
|
|
reserved_ip_range: 192.168.0.0/29
|
|
labels:
|
|
my_key: my_val
|
|
other_key: other_val
|
|
project: "{{ gcp_project }}"
|
|
auth_kind: "{{ gcp_cred_kind }}"
|
|
service_account_file: "{{ gcp_cred_file | default(omit) }}"
|
|
state: present
|
|
register: result
|
|
- name: Assert changed is false
|
|
ansible.builtin.assert:
|
|
that:
|
|
- result.changed == false
|
|
# ----------------------------------------------------------
|
|
- name: Delete a instance
|
|
google.cloud.gcp_redis_instance:
|
|
name: instance37
|
|
tier: STANDARD_HA
|
|
memory_size_gb: 1
|
|
region: us-central1
|
|
location_id: us-central1-a
|
|
redis_version: REDIS_3_2
|
|
display_name: Ansible Test Instance
|
|
reserved_ip_range: 192.168.0.0/29
|
|
labels:
|
|
my_key: my_val
|
|
other_key: other_val
|
|
project: "{{ gcp_project }}"
|
|
auth_kind: "{{ gcp_cred_kind }}"
|
|
service_account_file: "{{ gcp_cred_file | default(omit) }}"
|
|
state: absent
|
|
register: result
|
|
- name: Assert changed is true
|
|
ansible.builtin.assert:
|
|
that:
|
|
- result.changed == true
|
|
- name: Verify that instance was deleted
|
|
google.cloud.gcp_redis_instance_info:
|
|
region: us-central1
|
|
project: "{{ gcp_project }}"
|
|
auth_kind: "{{ gcp_cred_kind }}"
|
|
service_account_file: "{{ gcp_cred_file | default(omit) }}"
|
|
scopes:
|
|
- https://www.googleapis.com/auth/cloud-platform
|
|
register: results
|
|
- name: Verify that command succeeded
|
|
ansible.builtin.assert:
|
|
that:
|
|
- results['resources'] | map(attribute='name') | select("match", ".*instance37.*") | list | length == 0
|
|
# ----------------------------------------------------------------------------
|
|
- name: Delete a instance that does not exist
|
|
google.cloud.gcp_redis_instance:
|
|
name: instance37
|
|
tier: STANDARD_HA
|
|
memory_size_gb: 1
|
|
region: us-central1
|
|
location_id: us-central1-a
|
|
redis_version: REDIS_3_2
|
|
display_name: Ansible Test Instance
|
|
reserved_ip_range: 192.168.0.0/29
|
|
labels:
|
|
my_key: my_val
|
|
other_key: other_val
|
|
project: "{{ gcp_project }}"
|
|
auth_kind: "{{ gcp_cred_kind }}"
|
|
service_account_file: "{{ gcp_cred_file | default(omit) }}"
|
|
state: absent
|
|
register: result
|
|
- name: Assert changed is false
|
|
ansible.builtin.assert:
|
|
that:
|
|
- result.changed == false
|
|
# ---------------------------------------------------------
|
|
# Post-test teardown
|
|
# If errors happen, don't crash the playbook!
|
|
- name: Delete a network
|
|
google.cloud.gcp_compute_network:
|
|
name: network-instance
|
|
project: "{{ gcp_project }}"
|
|
auth_kind: "{{ gcp_cred_kind }}"
|
|
service_account_file: "{{ gcp_cred_file | default(omit) }}"
|
|
auto_create_subnetworks: true
|
|
state: absent
|
|
register: network
|
|
ignore_errors: true
|