Skip to content

Commit

Permalink
added examples
Browse files Browse the repository at this point in the history
  • Loading branch information
thulasirajkomminar committed Oct 19, 2021
1 parent deb936e commit a68829a
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions examples/example.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
module "example_glue_job" {
source = "github.com/komminar/terraform-aws-glue-job?ref=v0.1.0"
name = "example-glue-job"
max_retries = 1
number_of_workers = 2
schedule = "cron(0 12 * * ? *)"
script_location = "S3://example-bucket/location/script.py"
trigger_type = "SCHEDULED"
worker_type = "Standard"

default_arguments = {
"--VAR1" = "some value"
}

tags = {
Environment = "development"
Stack = "glue"
}
}

0 comments on commit a68829a

Please sign in to comment.