Terraform resource: aws glue catalog database

From wikieduonline
(Redirected from Aws glue catalog database)
Jump to navigation Jump to search

Official example[edit]

resource "aws_glue_catalog_database" "example" {
  name = "MyCatalogDatabase"
}

resource "aws_glue_catalog_database" "example" {
 name = "MyCatalogDatabase"

 create_table_default_permission {
   permissions = ["SELECT"]

   principal {
     data_lake_principal_identifier = "IAM_ALLOWED_PRINCIPALS"
   }
 }
}

Related[edit]

See also[edit]

Advertising: