Skip to content

Commit a852245

Browse files
committed
fmt
1 parent 4b174db commit a852245

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

dogfood/coder/main.tf

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -132,17 +132,17 @@ data "coder_parameter" "image_type" {
132132

133133
locals {
134134
default_regions = {
135-
"north-america": "us-pittsburgh"
136-
"europe": "eu-helsinki"
137-
"australia": "ap-sydney"
138-
"south-america": "sa-saopaulo"
139-
"africa": "za-cpt"
135+
"north-america" : "us-pittsburgh"
136+
"europe" : "eu-helsinki"
137+
"australia" : "ap-sydney"
138+
"south-america" : "sa-saopaulo"
139+
"africa" : "za-cpt"
140140
}
141141

142142
user_groups = data.coder_workspace_owner.me.groups
143143
user_region = coalescelist([
144-
for g in local.user_groups :
145-
local.default_regions[g] if contains(keys(local.default_regions), g)
144+
for g in local.user_groups :
145+
local.default_regions[g] if contains(keys(local.default_regions), g)
146146
], ["us-pittsburgh"])[0]
147147
}
148148

0 commit comments

Comments
 (0)