Skip to content

Commit 49457e7

Browse files
committed
Use random_password in example
1 parent 21525c9 commit 49457e7

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

examples/simple/main.tf

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,10 @@ resource "random_password" "pass" {
105105
special = false
106106
}
107107

108+
resource "random_password" "analytics_mz_system" {
109+
length = 20
110+
special = true
111+
}
108112

109113
variable "namespace" {
110114
description = "Namespace for the resources. Used to prefix the names of the resources"

examples/simple/terraform.tfvars.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ environment = "dev" // maximum 8 characters, lowercase alphanumeric only (e.g.
1313
# memory_request = "4Gi"
1414
# memory_limit = "4Gi"
1515
# authenticator_kind = "Password"
16-
# external_login_password_mz_system = "your-password"
16+
# external_login_password_mz_system = random_password.analytics_mz_system.result
1717
# },
1818
# {
1919
# name = "demo"

0 commit comments

Comments
 (0)