An EntryGroup resource represents a logical grouping of zero or more Data Catalog Entry resources.
To get more information about EntryGroup, see:
resource "google_data_catalog_entry_group" "basic_entry_group" {
entry_group_id = "my_group"
}
resource "google_data_catalog_entry_group" "basic_entry_group" {
entry_group_id = "my_group"
display_name = "terraform entry group"
description = "entry group created by Terraform"
}
The following arguments are supported:
entry_group_id
-
(Required)
The id of the entry group to create. The id must begin with a letter or underscore,
contain only English letters, numbers and underscores, and be at most 64 characters.display_name
-
(Optional)
A short name to identify the entry group, for example, "analytics data - jan 2011".
description
-
(Optional)
Entry group description, which can consist of several sentences or paragraphs that describe entry group contents.
region
-
(Optional)
EntryGroup location region.
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 {{name}}
name
-
The resource name of the entry group in URL format. Example: projects/{project}/locations/{location}/entryGroups/{entryGroupId}
This resource provides the following Timeouts configuration options:
create
- Default is 20 minutes.update
- Default is 20 minutes.delete
- Default is 20 minutes.EntryGroup can be imported using any of these accepted formats:
{{name}}
In Terraform v1.5.0 and later, use an import
block to import EntryGroup using one of the formats above. For example:
import {
id = "{{name}}"
to = google_data_catalog_entry_group.default
}
When using the terraform import
command, EntryGroup can be imported using one of the formats above. For example:
$ terraform import google_data_catalog_entry_group.default {{name}}
This resource supports User Project Overrides.