google_pubsub_topics resource

Syntax

A google_pubsub_topics is used to test a Google Topic resource

Examples

describe google_pubsub_topics(project: 'chef-gcp-inspec') do
  it { should exist }
  its('names') { should include 'inspec-gcp-topic' }
  its('count') { should be >=1 }
end

describe.one do
  google_pubsub_topics(project: 'chef-gcp-inspec').names.each do |topic_name|
    describe google_pubsub_topic(project: 'chef-gcp-inspec', name: topic_name) do
      it { should exist }
    end
  end
end

Properties

Properties that can be accessed from the google_pubsub_topics resource:

See the google_pubsub_topic resource for more information.

names
an array of google_pubsub_topic name
kms_key_names
an array of google_pubsub_topic kms_key_name
labels
an array of google_pubsub_topic labels
message_storage_policies
an array of google_pubsub_topic message_storage_policy

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 Cloud Pub/Sub API is enabled for the current project.

© Chef Software, Inc.
Licensed under the Creative Commons Attribution 3.0 Unported License.
The Chef™ Mark and Chef Logo are either registered trademarks/service marks or trademarks/servicemarks of Chef, in the United States and other countries and are used with Chef Inc's permission.
We are not affiliated with, endorsed or sponsored by Chef Inc.
https://docs.chef.io/inspec/resources/google_pubsub_topics/