Releases: cloudposse/terraform-aws-glue
Releases · cloudposse/terraform-aws-glue
v0.4.0
Modify type of glue-catalog-table partition_keys variable @joe-niland (#8)
what
- Modify glue-catalog-table partition_keys variable to allow specification of multiple partition keys
- Add example var value to fixtures to include testing of this var
why
- Existing code appeared to support a single partition key, e.g.
partition_keys = { name = "test" comment = "test" type = "string" }
references
- closes #7
v0.3.0
Adding EVENT on a trigger @VladimirCacicArapovic (#6)
Please use this Pull request !
Hi, my change will allow EVENT trigger type -
On https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/glue_trigger please if you check the type; there is also type EVENT – Valid values are CONDITIONAL, EVENT, ON_DEMAND, and SCHEDULED.
what
- This change will allow trigget to be kicked by the event bridge
why
*I need an EventBridge kicked trigger to kick the workflow when S3 folder is changed..
I can use normal https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/glue_trigger, but I would like to use cloudposse one ;)
references
v0.2.1
Update README. Add an example Glue Job Python script. Update example. Small fixes @aknysh (#4)
what
- Update README
- Update example
- Add an example Glue Job Python script
- Small fixes
why
- Update README and the example with new functionality
- Show how to provision a Glue catalog database and a Glue crawler that crawls a public dataset in an S3 bucket and writes the metadata into the Glue catalog database. It also provisions an S3 bucket with a Glue Job Python script, and a destination S3 bucket for Glue job results. And finally, it provisions a Glue job pointing to the Python script in the S3 bucket, and a Glue trigger that triggers the Glue job on a schedule. The Glue job processes the dataset, cleans up the data, and writes the result into the destination S3 bucket.
🤖 Automatic Updates
Update README.md and docs @cloudpossebot (#3)
what
This is an auto-generated PR that updates the README.md and docs
why
To have most recent changes of README.md and doc from origin templates
v0.2.0
v0.1.0
Terraform modules for provisioning and managing AWS Glue resources @r351574nc3 (#1)
what
- Initial release of
terraform-aws-glue
modules - Add examples and tests
why
-
The following Glue resources are supported:
- Catalog database
- Catalog table
- Connection
- Crawler
- Job
- Registry
- Schema
- Trigger
- Workflow