A Healthcare Dataset
is a toplevel logical grouping of dicomStores
, fhirStores
and hl7V2Stores
.
To get more information about Dataset, see:
resource "google_healthcare_dataset" "default" {
name = "example-dataset"
location = "us-central1"
time_zone = "UTC"
}
The following arguments are supported:
name
-
(Required)
The resource name for the Dataset.
location
-
(Required)
The location for the Dataset.
time_zone
-
(Optional)
The default timezone used by this dataset. Must be a either a valid IANA time zone name such as
"America/New_York" or empty, which defaults to UTC. This is used for parsing times in resources
(e.g., HL7 messages) where no explicit timezone is specified.
project
- (Optional) The ID of the project in which the resource belongs.
If it is not provided, the provider project is used.
In addition to the arguments listed above, the following computed attributes are exported:
id
- an identifier for the resource with format projects/{{project}}/locations/{{location}}/datasets/{{name}}
self_link
-
The fully qualified name of this dataset
This resource provides the following Timeouts configuration options:
create
- Default is 20 minutes.update
- Default is 20 minutes.delete
- Default is 20 minutes.Dataset can be imported using any of these accepted formats:
projects/{{project}}/locations/{{location}}/datasets/{{name}}
{{project}}/{{location}}/{{name}}
{{location}}/{{name}}
In Terraform v1.5.0 and later, use an import
block to import Dataset using one of the formats above. For example:
import {
id = "projects/{{project}}/locations/{{location}}/datasets/{{name}}"
to = google_healthcare_dataset.default
}
When using the terraform import
command, Dataset can be imported using one of the formats above. For example:
$ terraform import google_healthcare_dataset.default projects/{{project}}/locations/{{location}}/datasets/{{name}}
$ terraform import google_healthcare_dataset.default {{project}}/{{location}}/{{name}}
$ terraform import google_healthcare_dataset.default {{location}}/{{name}}
This resource supports User Project Overrides.