google_vertex_ai_metadata_store

Instance of a metadata store. Contains a set of metadata that can be queried.

To get more information about MetadataStore, see:

Example Usage - Vertex Ai Metadata Store

resource "google_vertex_ai_metadata_store" "store" {
  name          = "test-store"
  description   = "Store to test the terraform module"
  region        = "us-central1"
}

Argument Reference

The following arguments are supported:


The encryption_spec block supports:

Attributes Reference

In addition to the arguments listed above, the following computed attributes are exported:

The state block contains:

Timeouts

This resource provides the following Timeouts configuration options:

Import

MetadataStore can be imported using any of these accepted formats:

In Terraform v1.5.0 and later, use an import block to import MetadataStore using one of the formats above. For example:

import {
  id = "projects/{{project}}/locations/{{region}}/metadataStores/{{name}}"
  to = google_vertex_ai_metadata_store.default
}

When using the terraform import command, MetadataStore can be imported using one of the formats above. For example:

$ terraform import google_vertex_ai_metadata_store.default projects/{{project}}/locations/{{region}}/metadataStores/{{name}}
$ terraform import google_vertex_ai_metadata_store.default {{project}}/{{region}}/{{name}}
$ terraform import google_vertex_ai_metadata_store.default {{region}}/{{name}}
$ terraform import google_vertex_ai_metadata_store.default {{name}}

User Project Overrides

This resource supports User Project Overrides.