You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+33Lines changed: 33 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -96,6 +96,39 @@ disk_support_config = {
96
96
}
97
97
```
98
98
99
+
## `materialize_instances` variable
100
+
101
+
The `materialize_instances` variable is a list of objects that define the configuration for each Materialize instance.
102
+
103
+
### `environmentd_extra_env`
104
+
105
+
Optional list of extra environment variables to pass to the `environmentd` container. This allows you to pass any additional configuration supported by Materialize.
106
+
107
+
Each entry should be an object with `name` and `value` fields:
108
+
109
+
```hcl
110
+
environmentd_extra_env = [
111
+
{
112
+
name = "MZ_LOG_FILTER"
113
+
value = "materialized::coord=debug"
114
+
}
115
+
]
116
+
```
117
+
118
+
### `environmentd_extra_args`
119
+
120
+
Optional list of additional command-line arguments to pass to the `environmentd` container. This can be used to override default system parameters or enable specific features.
These flags configure default limits for clusters, connections, and tables. You can provide any supported arguments [here](https://materialize.com/docs/sql/alter-system-set/#other-configuration-parameters).
Copy file name to clipboardExpand all lines: docs/header.md
+33Lines changed: 33 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -94,3 +94,36 @@ disk_support_config = {
94
94
}
95
95
}
96
96
```
97
+
98
+
## `materialize_instances` variable
99
+
100
+
The `materialize_instances` variable is a list of objects that define the configuration for each Materialize instance.
101
+
102
+
### `environmentd_extra_env`
103
+
104
+
Optional list of extra environment variables to pass to the `environmentd` container. This allows you to pass any additional configuration supported by Materialize.
105
+
106
+
Each entry should be an object with `name` and `value` fields:
107
+
108
+
```hcl
109
+
environmentd_extra_env = [
110
+
{
111
+
name = "MZ_LOG_FILTER"
112
+
value = "materialized::coord=debug"
113
+
}
114
+
]
115
+
```
116
+
117
+
### `environmentd_extra_args`
118
+
119
+
Optional list of additional command-line arguments to pass to the `environmentd` container. This can be used to override default system parameters or enable specific features.
These flags configure default limits for clusters, connections, and tables. You can provide any supported arguments [here](https://materialize.com/docs/sql/alter-system-set/#other-configuration-parameters).
0 commit comments