File tree 3 files changed +8
-6
lines changed
3 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ module "unity_catalog" {
80
80
81
81
| Name | Version |
82
82
| ------| ---------|
83
- | <a name =" requirement_terraform " ></a > [ terraform] ( #requirement\_ terraform ) | >=1.0.0 |
83
+ | <a name =" requirement_terraform " ></a > [ terraform] ( #requirement\_ terraform ) | ~ >1.3 |
84
84
| <a name =" requirement_databricks " ></a > [ databricks] ( #requirement\_ databricks ) | ~ >1.0 |
85
85
86
86
## Providers
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