Skip to content

Commit dc2307e

Browse files
committed
fix: apply terraform formatting to resolve CI check failure
1 parent 4df4797 commit dc2307e

File tree

1 file changed

+3
-3
lines changed
  • registry/aybanda/templates/oci-linux

1 file changed

+3
-3
lines changed

registry/aybanda/templates/oci-linux/main.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -228,13 +228,13 @@ data "oci_core_images" "ubuntu" {
228228
locals {
229229
hostname = lower(data.coder_workspace.me.name)
230230
linux_user = "coder"
231-
231+
232232
# Parse shape configuration for flexible shapes
233233
shape_parts = split("-", data.coder_parameter.instance_shape.value)
234234
base_shape = length(local.shape_parts) > 2 ? join("-", slice(local.shape_parts, 0, 3)) : data.coder_parameter.instance_shape.value
235235
ocpus = length(local.shape_parts) > 3 ? tonumber(local.shape_parts[3]) : 1
236236
memory_gb = length(local.shape_parts) > 4 ? tonumber(local.shape_parts[4]) : 6
237-
237+
238238
# Determine if shape is flexible (needs shape_config)
239239
is_flexible = can(regex(".*Flex.*", local.base_shape))
240240
}
@@ -500,4 +500,4 @@ resource "coder_metadata" "home_info" {
500500
key = "size"
501501
value = "${data.coder_parameter.home_size.value} GiB"
502502
}
503-
}
503+
}

0 commit comments

Comments
 (0)