Skip to content

Commit

Permalink
Add data source for pubsub topics
Browse files Browse the repository at this point in the history
  • Loading branch information
mopp committed Oct 5, 2020
1 parent 9594637 commit c9def16
Show file tree
Hide file tree
Showing 5 changed files with 578 additions and 424 deletions.
30 changes: 30 additions & 0 deletions google/data_source_pubsub_topic.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
package google

import (
"fmt"

"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
)

func dataSourceGooglePubsubService() *schema.Resource {

dsSchema := datasourceSchemaFromResourceSchema(resourcePubsubTopic().Schema)
addRequiredFieldsToSchema(dsSchema, "name")
addOptionalFieldsToSchema(dsSchema, "project")

return &schema.Resource{
Read: dataSourceGooglePubsubServiceRead,
Schema: dsSchema,
}
}

func dataSourceGooglePubsubServiceRead(d *schema.ResourceData, meta interface{}) error {
config := meta.(*Config)

id, err := replaceVars(d, config, "namespaces/{{project}}/topics/{{name}}")
if err != nil {
return fmt.Errorf("Error constructing id: %s", err)
}
d.SetId(id)
return resourcePubsubTopicRead(d, meta)
}
76 changes: 76 additions & 0 deletions google/data_source_pubsub_topic_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
package google

import (
"testing"

"github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource"
)

func TestAccDataSourceGooglePubsubTopic_basic(t *testing.T) {
t.Parallel()

context := map[string]interface{}{
"random_suffix": randString(t, 10),
}

vcrTest(t, resource.TestCase{
PreCheck: func() { testAccPreCheck(t) },
Providers: testAccProviders,
CheckDestroy: testAccCheckPubsubTopicDestroyProducer(t),
Steps: []resource.TestStep{
{
Config: testAccDataSourceGooglePubsubTopic_basic(context),
Check: resource.ComposeTestCheckFunc(
checkDataSourceStateMatchesResourceState("data.google_pubsub_topic.foo", "google_pubsub_topic.foo"),
),
},
},
})
}

func TestAccDataSourceGooglePubsubTopic_optionalProject(t *testing.T) {
t.Parallel()

context := map[string]interface{}{
"random_suffix": randString(t, 10),
}

vcrTest(t, resource.TestCase{
PreCheck: func() { testAccPreCheck(t) },
Providers: testAccProviders,
CheckDestroy: testAccCheckPubsubTopicDestroyProducer(t),
Steps: []resource.TestStep{
{
Config: testAccDataSourceGooglePubsubTopic_optionalProject(context),
Check: resource.ComposeTestCheckFunc(
checkDataSourceStateMatchesResourceState("data.google_pubsub_topic.foo", "google_pubsub_topic.foo"),
),
},
},
})
}

func testAccDataSourceGooglePubsubTopic_basic(context map[string]interface{}) string {
return Nprintf(`
resource "google_pubsub_topic" "foo" {
name = "tf-test-pubsub-%{random_suffix}"
}
data "google_pubsub_topic" "foo" {
name = google_pubsub_topic.foo.name
project = google_pubsub_topic.foo.project
}
`, context)
}

func testAccDataSourceGooglePubsubTopic_optionalProject(context map[string]interface{}) string {
return Nprintf(`
resource "google_pubsub_topic" "foo" {
name = "tf-test-pubsub-%{random_suffix}"
}
data "google_pubsub_topic" "foo" {
name = google_pubsub_topic.foo.name
}
`, context)
}
1 change: 1 addition & 0 deletions google/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -565,6 +565,7 @@ func Provider() *schema.Provider {
"google_client_openid_userinfo": dataSourceGoogleClientOpenIDUserinfo(),
"google_cloudfunctions_function": dataSourceGoogleCloudFunctionsFunction(),
"google_cloud_run_service": dataSourceGoogleCloudRunService(),
"google_pubsub_topic": dataSourceGooglePubsubService(),
"google_composer_image_versions": dataSourceGoogleComposerImageVersions(),
"google_compute_address": dataSourceGoogleComputeAddress(),
"google_compute_backend_service": dataSourceGoogleComputeBackendService(),
Expand Down
37 changes: 37 additions & 0 deletions website/docs/d/pubsub_topic.html.markdown
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
---
subcategory: "Cloud Pub/Sub"
layout: "google"
page_title: "Google: google_pubsub_topic"
sidebar_current: "docs-google-datasource-pubsub-topic"
description: |-
Get information about a Google Cloud Pub/Sub Topic.
---

# google\_pubsub\_topic

Get information about a Google Cloud Pub/Sub Topic. For more information see
the [official documentation](https://cloud.google.com/pubsub/docs/)
and [API](https://cloud.google.com/pubsub/docs/apis).

## Example Usage

```hcl
data "google_pubsub_topic" "my-pubsub-topic" {
name = "my-pubsub-topic"
}
```

## Argument Reference

The following arguments are supported:

* `name` - (Required) The name of the Cloud Pub/Sub Topic.

- - -

* `project` - (Optional) The project in which the resource belongs. If it
is not provided, the provider project is used.

## Attributes Reference

See [google_pubsub_topic](https://www.terraform.io/docs/providers/google/r/pubsub_topic.html#argument-reference) resource for details of the available attributes.
Loading

0 comments on commit c9def16

Please sign in to comment.