https://github.com/ahmadalibagheri/terraform-aws-glue
Create terraform module for AWS Glue
https://github.com/ahmadalibagheri/terraform-aws-glue
aws aws-glue dataops glue terraform
Last synced: 9 days ago
JSON representation
Create terraform module for AWS Glue
- Host: GitHub
- URL: https://github.com/ahmadalibagheri/terraform-aws-glue
- Owner: ahmadalibagheri
- Created: 2022-04-06T20:48:08.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-04-06T21:10:01.000Z (about 3 years ago)
- Last Synced: 2025-03-25T18:45:20.572Z (27 days ago)
- Topics: aws, aws-glue, dataops, glue, terraform
- Language: HCL
- Homepage:
- Size: 2.93 KB
- Stars: 11
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# AWS Glue Terraform module
Terraform module which creates AWS Glue resources.
## Usage
See [`examples`](https://github.com/ahmadalibagheri/terraform-aws-glue/tree/main/examples) directory for working examples to reference:
```hcl
module "glue-connection" {
source = "./glue-connection"
name = "Kafka"
number_of_broker_nodes = 3
enhanced_monitoring = "PER_TOPIC_PER_PARTITION"
environment = "dev"
}module "glue-job" {
source = "./glue-job"
name = "Kafka"
number_of_broker_nodes = 3
enhanced_monitoring = "PER_TOPIC_PER_PARTITION"
environment = "dev"
}```