Skip to content

Commit e1b171d

Browse files
committed
make stackhpc tofu format consistent
1 parent 1afc5ea commit e1b171d

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

environments/.stackhpc/tofu/main.tf

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -69,23 +69,23 @@ module "cluster" {
6969
control_node_flavor = var.control_node_flavor
7070

7171
login = {
72-
login: {
73-
nodes: ["login-0"]
74-
flavor: var.other_node_flavor
72+
login = {
73+
nodes = ["login-0"]
74+
flavor = var.other_node_flavor
7575
}
7676
}
7777
compute = {
78-
standard: { # NB: can't call this default!
79-
nodes: ["compute-0", "compute-1"]
80-
flavor: var.other_node_flavor
81-
compute_init_enable: ["compute", "chrony", "etc_hosts", "nfs", "basic_users", "eessi", "tuned", "cacerts"]
82-
ignore_image_changes: true
78+
standard = { # NB: can't call this default!
79+
nodes = ["compute-0", "compute-1"]
80+
flavor = var.other_node_flavor
81+
compute_init_enable = ["compute", "chrony", "etc_hosts", "nfs", "basic_users", "eessi", "tuned", "cacerts"]
82+
ignore_image_changes = true
8383
}
8484
# Normally-empty partition for testing:
85-
extra: {
86-
nodes: []
87-
#nodes: ["extra-0", "extra-1"]
88-
flavor: var.other_node_flavor
85+
extra = {
86+
nodes = []
87+
#nodes = ["extra-0", "extra-1"]
88+
flavor = var.other_node_flavor
8989
}
9090
}
9191

0 commit comments

Comments
 (0)