Skip to content

Releases: cloudposse/terraform-aws-glue

v0.4.0

08 Apr 22:31
e04ac37
Compare
Choose a tag to compare
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

03 Mar 18:08
a3387bf
Compare
Choose a tag to compare
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

26 Aug 15:47
148a8d8
Compare
Choose a tag to compare
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

14 Aug 13:31
7c33d05
Compare
Choose a tag to compare
Add README for all submodules @aknysh (#2)

what

  • Add README for all submodules

why

  • Terraform Registry considers a submodule public if it has a README, in which case the registry will show it's description and inputs and outputs
  • READMEs show usage examples for the submodules

v0.1.0

15 Jul 18:44
300c3ac
Compare
Choose a tag to compare
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