google_compute_firewalls resource
Syntax
A google_compute_firewalls is used to test a Google Firewall resource
Beta Resource
This resource has beta fields available. To retrieve these fields, include beta: true in the constructor for the resource.
Examples
describe google_compute_firewalls(project: 'chef-gcp-inspec') do
its('count') { should be >= 1 }
its('firewall_names') { should include 'inspec-gcp-firewall' }
its('firewall_directions') { should include 'INGRESS' }
end
Test that there are no more than a specified number of firewalls available for the project
describe google_compute_firewalls(project: 'chef-inspec-gcp') do
its('count') { should be <= 100}
end
Test that an expected firewall is available for the project
describe google_compute_firewalls(project: 'chef-inspec-gcp') do
its('firewall_names') { should include "my-app-firewall-rule" }
end
Test that a particular named rule does not exist
describe google_compute_firewalls(project: 'chef-inspec-gcp') do
its('firewall_names') { should_not include "default-allow-ssh" }
end
Test there are no firewalls for the “INGRESS” direction
describe google_compute_firewalls(project: 'chef-inspec-gcp').where(firewall_direction: 'INGRESS') do
it { should_not exist }
end
Properties
Properties that can be accessed from the google_compute_firewalls resource:
See google_compute_firewall for more detailed information.
alloweds: an array ofgoogle_compute_firewallallowedcreation_timestamps: an array ofgoogle_compute_firewallcreation_timestampdenieds: an array ofgoogle_compute_firewalldenieddescriptions: an array ofgoogle_compute_firewalldescriptiondestination_ranges: an array ofgoogle_compute_firewalldestination_rangesfirewall_directions: an array ofgoogle_compute_firewalldirectiondisableds: an array ofgoogle_compute_firewalldisabledlog_configs: an array ofgoogle_compute_firewalllog_configfirewall_ids: an array ofgoogle_compute_firewallidfirewall_names: an array ofgoogle_compute_firewallnamenetworks: an array ofgoogle_compute_firewallnetworkpriorities: an array ofgoogle_compute_firewallprioritysource_ranges: an array ofgoogle_compute_firewallsource_rangessource_service_accounts: an array ofgoogle_compute_firewallsource_service_accountssource_tags: an array ofgoogle_compute_firewallsource_tagstarget_service_accounts: an array ofgoogle_compute_firewalltarget_service_accountstarget_tags: an array ofgoogle_compute_firewalltarget_tags
Filter criteria
This resource supports all of the above properties as filter criteria, which can be used
with where as a block or a method.
GCP permissions
Ensure the Compute Engine API is enabled for the current project.