mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-04-04 01:40:26 -07:00
110 lines
3.7 KiB
YAML
110 lines
3.7 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: Delete a firewall rule
|
|
google.cloud.gcp_appengine_firewall_rule:
|
|
priority: 1000
|
|
source_range: 10.0.0.0
|
|
action: ALLOW
|
|
project: "{{ gcp_project }}"
|
|
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
|
|
source_range: 10.0.0.0
|
|
action: ALLOW
|
|
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 firewall_rule was created
|
|
google.cloud.gcp_appengine_firewall_rule_info:
|
|
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'] | length >= 1
|
|
# ----------------------------------------------------------------------------
|
|
- name: Create a firewall rule that already exists
|
|
google.cloud.gcp_appengine_firewall_rule:
|
|
priority: 1000
|
|
source_range: 10.0.0.0
|
|
action: ALLOW
|
|
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 firewall rule
|
|
google.cloud.gcp_appengine_firewall_rule:
|
|
priority: 1000
|
|
source_range: 10.0.0.0
|
|
action: ALLOW
|
|
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 firewall_rule was deleted
|
|
google.cloud.gcp_appengine_firewall_rule_info:
|
|
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:
|
|
# there is a default firewall rule that cannot be
|
|
# deleted, so the length should be 1.
|
|
- results['resources'] | length == 1
|
|
# ----------------------------------------------------------------------------
|
|
- name: Delete a firewall rule that does not exist
|
|
google.cloud.gcp_appengine_firewall_rule:
|
|
priority: 1000
|
|
source_range: 10.0.0.0
|
|
action: ALLOW
|
|
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
|