Skip to content

Latest commit

 

History

History
60 lines (44 loc) · 2.2 KB

google_compute_networks.md

File metadata and controls

60 lines (44 loc) · 2.2 KB
title platform
About the google_compute_networks resource
gcp

Syntax

A google_compute_networks is used to test a Google Network 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_networks(project: 'chef-gcp-inspec') do
	its('network_names') { should include 'inspec-network' }
end

Test that there are no more than a specified number of networks available for the project

describe google_compute_networks(project: 'chef-inspec-gcp') do
  its('count') { should be <= 100}
end

Test that an expected network identifier is present in the project

describe google_compute_networks(project: 'chef-inspec-gcp') do
  its('network_ids') { should include 12345678975432 }
end

Test that an expected network name is available for the project

describe google_compute_networks(project: 'chef-inspec-gcp') do
  its('network_names') { should include "network-name" }
end

Properties

Properties that can be accessed from the google_compute_networks resource:

See google_compute_network.md for more detailed information

  • descriptions: an array of google_compute_network description
  • gateway_ipv4s: an array of google_compute_network gateway_ipv4
  • network_ids: an array of google_compute_network id
  • network_names: an array of google_compute_network name
  • subnetworks: an array of google_compute_network subnetworks
  • auto_create_subnetworks: an array of google_compute_network auto_create_subnetworks
  • creation_timestamps: an array of google_compute_network creation_timestamp
  • routing_configs: an array of google_compute_network routing_config
  • peerings: an array of google_compute_network peerings
  • mtus: an array of google_compute_network mtu

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.