generated from getindata/terraform-module-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
84 lines (68 loc) · 3.21 KB
/
outputs.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
output "name" {
description = "Name of the database"
value = snowflake_shared_database.this.name
}
output "from_share" {
description = "The name of the share from which the database is created"
value = snowflake_shared_database.this.from_share
}
output "comment" {
description = "The comment for the database"
value = snowflake_shared_database.this.comment
}
output "external_volume" {
description = "The database parameter that specifies the default external volume to use for Iceberg tables"
value = snowflake_shared_database.this.external_volume
}
output "catalog" {
description = "The database parameter that specifies the default catalog to use for Iceberg tables"
value = snowflake_shared_database.this.catalog
}
output "default_ddl_collation" {
description = "Specifies a default collation specification for all schemas and tables added to the database."
value = snowflake_shared_database.this.default_ddl_collation
}
output "storage_serialization_policy" {
description = "The storage serialization policy for Iceberg tables that use Snowflake as the catalog. Valid options are: [COMPATIBLE OPTIMIZED]"
value = snowflake_shared_database.this.storage_serialization_policy
}
output "log_level" {
description = "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]"
value = snowflake_shared_database.this.log_level
}
output "trace_level" {
description = "Controls how trace events are ingested into the event table. Valid options are: [ALWAYS ON_EVENT OFF]"
value = snowflake_shared_database.this.trace_level
}
output "suspend_task_after_num_failures" {
description = "How many times a task must fail in a row before it is automatically suspended. 0 disables auto-suspending"
value = snowflake_shared_database.this.suspend_task_after_num_failures
}
output "task_auto_retry_attempts" {
description = "Maximum automatic retries allowed for a user task"
value = snowflake_shared_database.this.task_auto_retry_attempts
}
output "user_task_managed_initial_warehouse_size" {
description = "The initial size of warehouse to use for managed warehouses in the absence of history"
value = snowflake_shared_database.this.user_task_managed_initial_warehouse_size
}
output "user_task_minimum_trigger_interval_in_seconds" {
description = "Minimum amount of time between Triggered Task executions in seconds"
value = snowflake_shared_database.this.user_task_minimum_trigger_interval_in_seconds
}
output "user_task_timeout_ms" {
description = "User task execution timeout in milliseconds"
value = snowflake_shared_database.this.user_task_timeout_ms
}
output "quoted_identifiers_ignore_case" {
description = "If true, the case of quoted identifiers is ignored"
value = snowflake_shared_database.this.quoted_identifiers_ignore_case
}
output "enable_console_output" {
description = "If true, enables stdout/stderr fast path logging for anonymous stored procedures"
value = snowflake_shared_database.this.enable_console_output
}
output "roles" {
description = "Snowflake Roles"
value = local.roles
}