Skip to content
This repository has been archived by the owner on Nov 14, 2024. It is now read-only.

Latest commit

 

History

History
47 lines (41 loc) · 2.13 KB

google_compute_disks.md

File metadata and controls

47 lines (41 loc) · 2.13 KB
title platform
About the Disk resource
gcp

Syntax

A google_compute_disks is used to test a Google Disk resource

Examples

most_recent_image = google_compute_image(project: 'debian', name: 'debian-8-jessie-v20170523')
describe google_compute_disks(project: 'chef-gcp-inspec', zone: 'zone') do
  it { should exist }
  its('names') { should include 'my_disk' }
  its('source_images') { should include most_recent_image.self_link }
end

Properties

Properties that can be accessed from the google_compute_disks resource:

See google_compute_disk.md for more detailed information

  • label_fingerprints: an array of google_compute_disk label_fingerprint
  • creation_timestamps: an array of google_compute_disk creation_timestamp
  • descriptions: an array of google_compute_disk description
  • ids: an array of google_compute_disk id
  • last_attach_timestamps: an array of google_compute_disk last_attach_timestamp
  • last_detach_timestamps: an array of google_compute_disk last_detach_timestamp
  • labels: an array of google_compute_disk labels
  • licenses: an array of google_compute_disk licenses
  • names: an array of google_compute_disk name
  • size_gbs: an array of google_compute_disk size_gb
  • users: an array of google_compute_disk users
  • types: an array of google_compute_disk type
  • source_images: an array of google_compute_disk source_image
  • zones: an array of google_compute_disk zone
  • source_image_encryption_keys: an array of google_compute_disk source_image_encryption_key
  • source_image_ids: an array of google_compute_disk source_image_id
  • disk_encryption_keys: an array of google_compute_disk disk_encryption_key
  • source_snapshots: an array of google_compute_disk source_snapshot
  • source_snapshot_encryption_keys: an array of google_compute_disk source_snapshot_encryption_key
  • source_snapshot_ids: an array of google_compute_disk source_snapshot_id

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.