Google Cloud Healthcare Dicom Store

This page shows how to write Terraform for Cloud Healthcare Dicom Store and write them securely.

google_healthcare_dicom_store (Terraform)

The Dicom Store in Cloud Healthcare can be configured in Terraform with the resource name google_healthcare_dicom_store. The following sections describe 2 examples of how to use the resource and its parameters.

Example Usage from GitHub

healthcare.tf#L9
resource "google_healthcare_dicom_store" "default" {
  name    = var.store
  dataset = google_healthcare_dataset.dataset.id
main.tf#L9
resource "google_healthcare_dicom_store" "default" {
    name = "example-dicom-store"
    dataset = google_healthcare_dataset.default.id

    notification_config {
        pubsub_topic = google_pubsub_topic.topic.id

Review your Terraform file for Google best practices

Shisho Cloud, our free checker to make sure your Terraform configuration follows best practices, is available (beta).

Parameters

Identifies the dataset addressed by this request. Must be in the format 'projects/[project]/locations/[location]/datasets/[dataset]'

  • id optional computed - string
  • labels optional - map from string to string

User-supplied key-value pairs used to organize DICOM stores. Label keys must be between 1 and 63 characters long, have a UTF-8 encoding of maximum 128 bytes, and must conform to the following PCRE regular expression: [p[Ll]p[Lo]][p[Ll]p[Lo]p[N]_-][0,62] Label values are optional, must be between 1 and 63 characters long, have a UTF-8 encoding of maximum 128 bytes, and must conform to the following PCRE regular expression: [p[Ll]p[Lo]p[N]_-][0,63] No more than 64 labels can be associated with a given store. An object containing a list of "key": value pairs. Example: [ "name": "wrench", "mass": "1.3kg", "count": "3" ].

The resource name for the DicomStore. Changing this property may recreate the Dicom store (removing all data)

The fully qualified name of this dataset

  • notification_config list block

    The Cloud Pub/Sub topic that notifications of changes are published on. Supplied by the client. PubsubMessage.Data will contain the resource name. PubsubMessage.MessageId is the ID of this message. It is guaranteed to be unique within the topic. PubsubMessage.PublishTime is the time at which the message was published. Notifications are only sent if the topic is non-empty. Topic names must be scoped to a project. service-PROJECT_NUMBER@gcp-sa-healthcare.iam.gserviceaccount.com must have publisher permissions on the given Cloud Pub/Sub topic. Not having adequate permissions will cause the calls that send notifications to fail.

  • timeouts single block

Explanation in Terraform Registry

A DicomStore is a datastore inside a Healthcare dataset that conforms to the DICOM (https://www.dicomstandard.org/about/) standard for Healthcare information exchange To get more information about DicomStore, see:

Frequently asked questions

What is Google Cloud Healthcare Dicom Store?

Google Cloud Healthcare Dicom Store is a resource for Cloud Healthcare of Google Cloud Platform. Settings can be wrote in Terraform.

Where can I find the example code for the Google Cloud Healthcare Dicom Store?

For Terraform, the GoogleCloudPlatform/healthcare-dicom-dicomweb-adapter and ricardouseche/gcp-healthcare-api source code examples are useful. See the Terraform Example section for further details.

security-icon

Automate config file reviews on your commits

Fix issues in your infrastructure as code with auto-generated patches.