--- # ---------------------------------------------------------------------------- # # *** 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 firewall gcp_compute_firewall: name: "{{ resource_name }}" allowed: - ip_protocol: tcp ports: - '22' target_tags: - test-ssh-server - staging-ssh-server source_tags: - test-ssh-clients project: "{{ gcp_project }}" auth_kind: "{{ gcp_cred_kind }}" service_account_file: "{{ gcp_cred_file }}" state: absent #---------------------------------------------------------- - name: create a firewall gcp_compute_firewall: name: "{{ resource_name }}" allowed: - ip_protocol: tcp ports: - '22' target_tags: - test-ssh-server - staging-ssh-server source_tags: - test-ssh-clients 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 - "result.kind == 'compute#firewall'" - name: verify that firewall was created gcp_compute_firewall_facts: 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['items'] | length == 1 # ---------------------------------------------------------------------------- - name: create a firewall that already exists gcp_compute_firewall: name: "{{ resource_name }}" allowed: - ip_protocol: tcp ports: - '22' target_tags: - test-ssh-server - staging-ssh-server source_tags: - test-ssh-clients 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 - "result.kind == 'compute#firewall'" #---------------------------------------------------------- - name: delete a firewall gcp_compute_firewall: name: "{{ resource_name }}" allowed: - ip_protocol: tcp ports: - '22' target_tags: - test-ssh-server - staging-ssh-server source_tags: - test-ssh-clients 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 - result.has_key('kind') == False - name: verify that firewall was deleted gcp_compute_firewall_facts: 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['items'] | length == 0 # ---------------------------------------------------------------------------- - name: delete a firewall that does not exist gcp_compute_firewall: name: "{{ resource_name }}" allowed: - ip_protocol: tcp ports: - '22' target_tags: - test-ssh-server - staging-ssh-server source_tags: - test-ssh-clients 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 - result.has_key('kind') == False