Skip to content

Commit a16a971

Browse files
authored
Merge pull request #6 from getindata/chore/add-missing-outputs
chore: Add missing outputs
2 parents a956552 + 7638909 commit a16a971

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,9 +101,12 @@ module "snowflake_shared_database" {
101101
| Name | Description |
102102
|------|-------------|
103103
| <a name="output_catalog"></a> [catalog](#output\_catalog) | The database parameter that specifies the default catalog to use for Iceberg tables |
104+
| <a name="output_comment"></a> [comment](#output\_comment) | The comment for the database |
104105
| <a name="output_default_ddl_collation"></a> [default\_ddl\_collation](#output\_default\_ddl\_collation) | Specifies a default collation specification for all schemas and tables added to the database. |
105106
| <a name="output_enable_console_output"></a> [enable\_console\_output](#output\_enable\_console\_output) | If true, enables stdout/stderr fast path logging for anonymous stored procedures |
106107
| <a name="output_external_volume"></a> [external\_volume](#output\_external\_volume) | The database parameter that specifies the default external volume to use for Iceberg tables |
108+
| <a name="output_from_share"></a> [from\_share](#output\_from\_share) | The name of the share from which the database is created |
109+
| <a name="output_fully_qualified_name"></a> [fully\_qualified\_name](#output\_fully\_qualified\_name) | The fully qualified name of the database |
107110
| <a name="output_log_level"></a> [log\_level](#output\_log\_level) | Specifies the severity level of messages that should be ingested and made available in the active event table. Valid options are: [TRACE DEBUG INFO WARN ERROR FATAL OFF] |
108111
| <a name="output_name"></a> [name](#output\_name) | Name of the database |
109112
| <a name="output_quoted_identifiers_ignore_case"></a> [quoted\_identifiers\_ignore\_case](#output\_quoted\_identifiers\_ignore\_case) | If true, the case of quoted identifiers is ignored |

outputs.tf

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@ output "name" {
33
value = one(snowflake_shared_database.this[*].name)
44
}
55

6+
output "from_share" {
7+
description = "The name of the share from which the database is created"
8+
value = one(snowflake_shared_database.this[*].from_share)
9+
}
10+
11+
output "comment" {
12+
description = "The comment for the database"
13+
value = one(snowflake_shared_database.this[*].comment)
14+
}
15+
616
output "external_volume" {
717
description = "The database parameter that specifies the default external volume to use for Iceberg tables"
818
value = one(snowflake_shared_database.this[*].external_volume)
@@ -68,6 +78,11 @@ output "enable_console_output" {
6878
value = one(snowflake_shared_database.this[*].enable_console_output)
6979
}
7080

81+
output "fully_qualified_name" {
82+
description = "The fully qualified name of the database"
83+
value = one(snowflake_shared_database.this[*].fully_qualified_name)
84+
}
85+
7186
output "roles" {
7287
description = "Snowflake Roles"
7388
value = local.roles

0 commit comments

Comments
 (0)