Skip to content

Commit

Permalink
fix: malformed config with gcp up with --initial-user-password (#8936)
Browse files Browse the repository at this point in the history
  • Loading branch information
stoksc authored Mar 4, 2024
1 parent 967e41f commit f997cd8
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,9 @@ resource "google_compute_instance" "master_instance" {
ssl_mode: ${var.database_ssl_enabled ? "verify-ca" : "disable"}
ssl_root_cert: ${var.database_ssl_enabled ? "/etc/determined/db_ssl_root_cert.pem" : ""}
security:
initial_user_password: ${var.initial_user_password}
cpu_env_image: ${var.cpu_env_image}
gpu_env_image: ${var.gpu_env_image}
Expand Down Expand Up @@ -98,9 +101,6 @@ resource "google_compute_instance" "master_instance" {
base_config:
minCpuPlatform: ${var.min_cpu_platform_agent}
use_cloud_logging: true
security:
initial_user_password: ${var.initial_user_password}
EOF
if [ -n "${var.filestore_address}" ]; then
Expand Down

0 comments on commit f997cd8

Please sign in to comment.