Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add AWS Glue Schema Registry to aws provider #16411

Closed
njoaquim opened this issue Nov 24, 2020 · 2 comments
Closed

Add AWS Glue Schema Registry to aws provider #16411

njoaquim opened this issue Nov 24, 2020 · 2 comments
Labels
enhancement Requests to existing resources that expand the functionality or scope. service/glue Issues and PRs that pertain to the glue service.

Comments

@njoaquim
Copy link

Community Note

  • Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request
  • Please do not leave "+1" or other comments that do not add relevant new information or questions, they generate extra noise for issue followers and do not help prioritize the request
  • If you are interested in working on this issue or have submitted a pull request, please leave a comment

Description

AWS Glue Schema Registry is a serverless feature of AWS Glue, enables you to validate and control the evolution of streaming data using registered Apache Avro schemas. The Schema Registry integrates with other AWS Services such Apache Kafka/Amazon Managed Streaming for Apache Kafka (MSK), Amazon Kinesis Data Streams, Apache Flink/Amazon Kinesis Data Analytics for Apache Flink, and AWS Lambda.

New or Affected Resource(s)

New

  • aws_glue_registry
  • aws_glue_schema
  • aws_glue_schema_version

Potential Terraform Configuration

resource "aws_glue_registry" "example-registry" {
  name     = "example"
  description = "example"
  tags          = var.tags
}

resource "aws_glue_schema" "example-schema" {
  name     = "example"
  registry_arn = "arn:aws:glue:eu-central-1:XXXXXXXXXX:registry/example-registry"
  data_format = "Apache Avro"
  compatibility_mode = "BACKWARD"
  description = "example"
  tags          = var.tags
}

resource "aws_glue_schema_version" "example-schema-version" {
  name              = "example"
  description       = "example"
  schema_arn = "arn:aws:glue:eu-central-1:XXXXXXXXXX:schema/example/example-schema"
  schema_definition    = var.schema_definition
}

References

https://aws.amazon.com/about-aws/whats-new/2020/11/control-evolution-data-streams-using-aws-glue-schema-registry/

  • #0000
@njoaquim njoaquim added the enhancement Requests to existing resources that expand the functionality or scope. label Nov 24, 2020
@ghost ghost added the service/glue Issues and PRs that pertain to the glue service. label Nov 24, 2020
@github-actions github-actions bot added the needs-triage Waiting for first response or review from a maintainer. label Nov 24, 2020
@DrFaust92
Copy link
Collaborator

Duplicate of #16342

@DrFaust92 DrFaust92 marked this as a duplicate of #16342 Nov 24, 2020
@ghost
Copy link

ghost commented Dec 25, 2020

I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues.

If you feel this issue should be reopened, we encourage creating a new issue linking back to this one for added context. Thanks!

@ghost ghost locked as resolved and limited conversation to collaborators Dec 25, 2020
@breathingdust breathingdust removed the needs-triage Waiting for first response or review from a maintainer. label Sep 17, 2021
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
enhancement Requests to existing resources that expand the functionality or scope. service/glue Issues and PRs that pertain to the glue service.
Projects
None yet
Development

No branches or pull requests

3 participants