From f7c5c46a2197b028340d4628b4591f5b5416c109 Mon Sep 17 00:00:00 2001 From: Stephen Kirby Date: Tue, 26 Sep 2023 22:54:11 +0000 Subject: [PATCH] bun fmt --- git-config/main.tf | 44 ++++++++++++++++++++++---------------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/git-config/main.tf b/git-config/main.tf index 94e1d80..a6a4c28 100644 --- a/git-config/main.tf +++ b/git-config/main.tf @@ -10,47 +10,47 @@ terraform { } variable "agent_id" { - type = string - description = "The ID of a Coder agent." + type = string + description = "The ID of a Coder agent." } # TODO: Test if the workspace owner name and email can be pulled from the module variable "default_username" { - type = string + type = string description = "The username of the Coder workspace owner." } variable "default_user_email" { - type = string + type = string description = "The email of the Coder workspace owner." } data "coder_parameter" "user_email" { - name = "user_email" - type = "string" - default = "default" - description = "Email to store in git-config for this workspace. Leave as \"default\" to populate with workspace owner email or admin preset." + name = "user_email" + type = "string" + default = "default" + description = "Email to store in git-config for this workspace. Leave as \"default\" to populate with workspace owner email or admin preset." display_name = "Git config user.email" - mutable = false + mutable = false } data "coder_parameter" "username" { - name = "username" - type = "string" - default = "default" - description = "Username to store in git-config for this workspace. Leave as \"default\" to populate with workspace owner name or admin preset." + name = "username" + type = "string" + default = "default" + description = "Username to store in git-config for this workspace. Leave as \"default\" to populate with workspace owner name or admin preset." display_name = "Git config user.name" - mutable = false + mutable = false } resource "coder_script" "git_config" { - agent_id = var.agent_id - script = templatefile("${path.module}/run.sh", { - CODER_USERNAME = data.coder_parameter.username.value != "default" ? data.coder_parameter.username.value : var.default_username, - CODER_EMAIL = data.coder_parameter.user_email.value != "default" ? data.coder_parameter.user_email.value : var.default_user_email - }) - display_name = "Git Config" - icon = "/icon/git.svg" - run_on_start = true + agent_id = var.agent_id + script = templatefile("${path.module}/run.sh", { + CODER_USERNAME = data.coder_parameter.username.value != "default" ? data.coder_parameter.username.value : var.default_username, + CODER_EMAIL = data.coder_parameter.user_email.value != "default" ? data.coder_parameter.user_email.value : var.default_user_email + }) + display_name = "Git Config" + icon = "/icon/git.svg" + run_on_start = true }