This Terraform module creates AWS Glue Catalog Database with various configurations.
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"
}
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 |
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 |