Skip to content

Latest commit

 

History

History
46 lines (37 loc) · 1.9 KB

google_compute_addresses.md

File metadata and controls

46 lines (37 loc) · 1.9 KB
title platform
About the google_compute_addresses resource
gcp

Syntax

A google_compute_addresses is used to test a Google Address 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_addresses(project: 'chef-gcp-inspec', location: 'europe-west2') do
  its('addresses') { should include '10.2.0.3' }
  its('names') { should include 'inspec-gcp-global-address' }
end

Properties

Properties that can be accessed from the google_compute_addresses resource:

See google_compute_address.md for more detailed information

  • addresses: an array of google_compute_address address
  • address_types: an array of google_compute_address address_type
  • creation_timestamps: an array of google_compute_address creation_timestamp
  • descriptions: an array of google_compute_address description
  • ids: an array of google_compute_address id
  • names: an array of google_compute_address name
  • purposes: an array of google_compute_address purpose
  • network_tiers: an array of google_compute_address network_tier
  • subnetworks: an array of google_compute_address subnetwork
  • users: an array of google_compute_address users
  • labels: (Beta only) an array of google_compute_address labels
  • label_fingerprints: (Beta only) an array of google_compute_address label_fingerprint
  • statuses: an array of google_compute_address status
  • regions: an array of google_compute_address region

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.