Skip to content

Latest commit

 

History

History
46 lines (37 loc) · 1.81 KB

google_compute_routes.md

File metadata and controls

46 lines (37 loc) · 1.81 KB
title platform
About the google_compute_routes resource
gcp

Syntax

A google_compute_routes is used to test a Google Route 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_routes(project: 'chef-gcp-inspec') do
  its('count') { should be >= 1 }
  its('dest_ranges') { should include '15.0.0.0/24' }
  its('next_hop_ips') { should include '10.2.0.1' }
  its('priorities') { should include '100' }
end

Properties

Properties that can be accessed from the google_compute_routes resource:

See google_compute_route.md for more detailed information

  • dest_ranges: an array of google_compute_route dest_range
  • descriptions: an array of google_compute_route description
  • names: an array of google_compute_route name
  • networks: an array of google_compute_route network
  • priorities: an array of google_compute_route priority
  • tags: an array of google_compute_route tags
  • next_hop_gateways: an array of google_compute_route next_hop_gateway
  • next_hop_instances: an array of google_compute_route next_hop_instance
  • next_hop_ips: an array of google_compute_route next_hop_ip
  • next_hop_vpn_tunnels: an array of google_compute_route next_hop_vpn_tunnel
  • next_hop_networks: an array of google_compute_route next_hop_network
  • next_hop_ilbs: an array of google_compute_route next_hop_ilb

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.