We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32b9741 commit 436eb6cCopy full SHA for 436eb6c
examples/simple/main.tf
@@ -110,6 +110,11 @@ resource "random_password" "pass" {
110
special = false
111
}
112
113
+resource "random_password" "analytics_mz_system" {
114
+ length = 20
115
+ special = true
116
+}
117
+
118
output "gke_cluster" {
119
description = "GKE cluster details"
120
value = module.materialize.gke_cluster
examples/simple/terraform.tfvars.example
@@ -21,7 +21,7 @@ network_config = {
21
# memory_request = "4Gi"
22
# memory_limit = "4Gi"
23
# authenticator_kind = "Password"
24
-# external_login_password_mz_system = "your-password"
+# external_login_password_mz_system = random_password.analytics_mz_system.result
25
# },
26
# {
27
# name = "demo"
0 commit comments