We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2b3748 commit 2910efeCopy full SHA for 2910efe
main.tf
@@ -3,10 +3,12 @@ locals {
3
4
schemas_config_mapped = {
5
for config in flatten([for object in var.catalog_config : [for schema in object.schema_configs : {
6
- catalog = object.catalog_name
7
- schema = schema.schema_name
8
- schema_owner = schema.schema_owner
9
- schema_grants = try(coalescelist(schema.schema_custom_grants, object.schema_default_grants), [])
+ catalog = object.catalog_name
+ schema = schema.schema_name
+ schema_owner = schema.schema_owner
+ schema_grants = try(coalescelist(schema.schema_custom_grants, object.schema_default_grants), [])
10
+ schema_comment = schema.schema_comment
11
+ schema_properties = schema.schema_properties
12
}]]) : "${config.catalog}:${config.schema}" => config
13
}
14
0 commit comments