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

[Enhancement]: Python3.11 support for glue_job v5.0 #41213

Open
trutled3 opened this issue Feb 3, 2025 · 2 comments
Open

[Enhancement]: Python3.11 support for glue_job v5.0 #41213

trutled3 opened this issue Feb 3, 2025 · 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

@trutled3
Copy link
Contributor

trutled3 commented Feb 3, 2025

Description

AWS recently released AWS Glue 5.0 that supports Python3.11. The aws_glue_job resource only supports setting the python_version to 2, 3 (which refers to Python3.6), and 3.9.

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

  • [aws_glue_job](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/glue_job)

Potential Terraform Configuration

resource "aws_glue_job" "example" {
  name         = "example"
  role_arn     = aws_iam_role.example.arn
  glue_version = "5.0"
  worker_type  = "Z.2X"

  command {
    name            = "example"
    python_version  = "3.11"
    script_location = "s3://${aws_s3_bucket.example.bucket}/example.py"
  }
}

References

Would you like to implement a fix?

Yes

@trutled3 trutled3 added the enhancement Requests to existing resources that expand the functionality or scope. label Feb 3, 2025
Copy link

github-actions bot commented Feb 3, 2025

Community Note

Voting for Prioritization

  • Please vote on this issue by adding a 👍 reaction to the original post to help the community and maintainers prioritize this request.
  • Please see our prioritization guide for information on how we prioritize.
  • 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.

Volunteering to Work on This Issue

  • If you are interested in working on this issue, please leave a comment.
  • If this would be your first contribution, please review the contribution guide.

@github-actions github-actions bot added service/glue Issues and PRs that pertain to the glue service. needs-triage Waiting for first response or review from a maintainer. labels Feb 3, 2025
@trutled3
Copy link
Contributor Author

trutled3 commented Feb 3, 2025

I am interested in working on this issue.

@justinretzolk justinretzolk removed the needs-triage Waiting for first response or review from a maintainer. label Feb 3, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
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

2 participants