An open API service indexing awesome lists of open source software.

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

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"
}

```