Skip to content

googleDataCatalogEntryGroup

An EntryGroup resource represents a logical grouping of zero or more Data Catalog Entry resources.

To get more information about EntryGroup, see:

Example Usage - Data Catalog Entry Group Basic

/*Provider bindings are generated by running cdktf get.
See https://cdk.tf/provider-generation for more details.*/
import * as google from "./.gen/providers/google";
/*The following providers are missing schema information and might need manual adjustments to synthesize correctly: google.
For a more precise conversion please use the --provider flag in convert.*/
new google.dataCatalogEntryGroup.DataCatalogEntryGroup(
  this,
  "basic_entry_group",
  {
    entry_group_id: "my_group",
  }
);

Example Usage - Data Catalog Entry Group Full

/*Provider bindings are generated by running cdktf get.
See https://cdk.tf/provider-generation for more details.*/
import * as google from "./.gen/providers/google";
/*The following providers are missing schema information and might need manual adjustments to synthesize correctly: google.
For a more precise conversion please use the --provider flag in convert.*/
new google.dataCatalogEntryGroup.DataCatalogEntryGroup(
  this,
  "basic_entry_group",
  {
    description: "entry group created by Terraform",
    display_name: "terraform entry group",
    entry_group_id: "my_group",
  }
);

Argument Reference

The following arguments are supported:

  • entryGroupId - (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.

  • displayName - (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.

Attributes Reference

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}

Timeouts

This resource provides the following Timeouts configuration options:

  • create - Default is 20 minutes.
  • update - Default is 20 minutes.
  • delete - Default is 20 minutes.

Import

EntryGroup can be imported using any of these accepted formats:

$ terraform import google_data_catalog_entry_group.default {{name}}

User Project Overrides

This resource supports User Project Overrides.