This resource creates a Registry for authoring schemas as part of Glue Schema Registry.
This will create a Glue Registry.
resource "awscc_glue_registry" "example" {
name = "example-registry"
description = "Glue registry example"
tags = [{
key = "Modified By"
value = "AWSCC"
}]
}
name
(String) Name of the registry to be created of max length of 255, and may only contain letters, numbers, hyphen, underscore, dollar sign, or hash mark. No whitespace.description
(String) A description of the registry. If description is not provided, there will not be any default value for this.tags
(Attributes List) List of tags to tag the Registry (see below for nested schema)arn
(String) Amazon Resource Name for the created Registry.id
(String) Uniquely identifies the resource.tags
Required:
key
(String) A key to identify the tag.value
(String) Corresponding tag value for the key.Import is supported using the following syntax:
$ terraform import awscc_glue_registry.example <resource ID>