Skip to content

subhamay-bhattacharyya/terraform-aws-glue-database

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

        

Terraform AWS Glue Catalog Database Module

This Terraform module creates AWS Glue Catalog Database with various configurations.

Usage

module "glue_database" {
  source  = "app.terraform.io/subhamay-bhattacharyya/glue-database/aws"
  version = "1.0.0"

  aws-region                = "us-east-1"
  project-name              = "your-project-name"
  environment-name          = "devl"
  glue-database-base-name   = "your-glue-database-base-name"
  glue-database-description = "your-glue-database-description"
  glue-database-tags        = null
  ci-build                  = "your-ci-build-string"
}

Inputs

Name Description Type Default Required
aws-region The AWS region to deploy resources string us-east-1 yes
project-name The name of the project string n/a yes
environment-name The environment in which to deploy resources string devl no
glue-database-base-name The base name of the Glue Database string n/a yes
glue-database-description The description of the Glue Database string n/a no
glue-database-tags Tags to apply to the Glue Database map {} no
ci-build CI build identifier string n/a yes

Outputs

Name Description
glue-database-name The name of the Glue Database
glue-database-arn The ARN of the Glue Database
glue-database-description The description of the Glue Database