Resource: aws_schemas_registry

Provides an EventBridge Custom Schema Registry resource.

Example Usage

resource "aws_schemas_registry" "test" {
  name        = "my_own_registry"
  description = "A custom schema registry"
}

Argument Reference

This resource supports the following arguments:

Attribute Reference

This resource exports the following attributes in addition to the arguments above:

Import

In Terraform v1.5.0 and later, use an import block to import EventBridge schema registries using the name. For example:

import {
  to = aws_schemas_registry.test
  id = "my_own_registry"
}

Using terraform import, import EventBridge schema registries using the name. For example:

% terraform import aws_schemas_registry.test my_own_registry