hashicorp / terraform-provider-aws

The AWS Provider enables Terraform to manage AWS resources.
https://registry.terraform.io/providers/hashicorp/aws
Mozilla Public License 2.0
9.85k stars 9.19k forks source link

[Enhancement]: Support checkpoint version in aws_glue_schema (specific version number or latest) #35467

Open renzodg opened 10 months ago

renzodg commented 10 months ago

Description

There is no way update the checkpoint version in aws_glue_schema. Any time new version is registered, checkpoint is not updated and in order to ensure compatibility is checked against the latest or specific version we need a way to update the checkpoint version, either to a version number or latest

Affected Resource(s) and/or Data Source(s)

Potential Terraform Configuration

resource "aws_glue_schema" "support_checkpoint_version" {
  schema_name        = "support-checkpoint-version"
  data_format        = "AVRO"
  compatibility      = "FORWARD"
  registry_arn       =  "arn:..."
  schema_definition  = file("schemas/support-checkpoint-version.avsc")
  checkpoint_version = {
    is_latest      = true // Optional
    version_number = 3 // Optional
  }
}

References

https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/glue_schema

Would you like to implement a fix?

None

github-actions[bot] commented 10 months ago

Community Note

Voting for Prioritization

Volunteering to Work on This Issue