File tree 2 files changed +7
-5
lines changed
2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -3,10 +3,12 @@ locals {
3
3
4
4
schemas_config_mapped = {
5
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 ), [])
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 ), [])
10
+ schema_comment = schema.schema_comment
11
+ schema_properties = schema.schema_properties
10
12
}]]) : " ${ config . catalog } :${ config . schema } " => config
11
13
}
12
14
}
Original file line number Diff line number Diff line change 1
1
terraform {
2
- required_version = " >=1.0.0 "
2
+ required_version = " ~>1.3 "
3
3
4
4
required_providers {
5
5
databricks = {
You can’t perform that action at this time.
0 commit comments