Skip to content

Commit

Permalink
make tf fmt happy
Browse files Browse the repository at this point in the history
  • Loading branch information
splattner committed Dec 15, 2023
1 parent 88e7371 commit 853fc67
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,12 @@ module "training-cluster" {
# SSH Public keys deployed on the VM's for SSH access
extra_ssh_keys = local.ssh_keys

cluster_admin = ["user1","user2","user3"]
cluster_admin = ["user1", "user2", "user3"]

# Webshell
# Make sure to scale down to 0 before removing the cluster,
# otherwise there will be terraform errors due to missing provider config
count-students = 15
count-students = 15

# User VMs
user-vms-enabled = false
Expand Down Expand Up @@ -118,7 +118,7 @@ output "argocd-admin-password" {
}

output "student-passwords" {
value = module.training-cluster.student-passwords
value = module.training-cluster.student-passwords
sensitive = true
}

Expand Down

0 comments on commit 853fc67

Please sign in to comment.