added coder parameters

pull/47/head
Stephen Kirby 2 years ago
parent 02c57643a8
commit 13478c135a

@ -14,21 +14,37 @@ variable "agent_id" {
description = "The ID of a Coder agent." description = "The ID of a Coder agent."
} }
variable "username" { # 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." description = "The username of the Coder workspace owner."
} }
variable "user_email" { variable "default_user_email" {
type = string type = string
description = "The email of the Coder workspace owner." description = "The email of the Coder workspace owner."
} }
data "coder_parameter" "user_email" {
type = string
description = "Email to store in git-config for this workspace. Leave empty to populate with workspace owner email."
display_name = "Git config user.email"
mutable = false
}
data "coder_parameter" "username" {
type = string
description = "Username to store in git-config for this workspace. Leave empty to populate with workspace owner name."
display_name = "Git config user.name"
mutable = false
}
resource "coder_script" "git_config" { resource "coder_script" "git_config" {
agent_id = var.agent_id agent_id = var.agent_id
script = templatefile("${path.module}/run.sh", { script = templatefile("${path.module}/run.sh", {
CODER_USERNAME = var.username, CODER_USERNAME = data.coder_parameter.username.value != "" ? data.coder_parameter.username.value : var.username,
CODER_EMAIL = var.user_email CODER_EMAIL = data.coder_parameter.user_email.value != "" ? data.coder_parameter.user_email.value : var.user_email
}) })
display_name = "Git Config" display_name = "Git Config"
icon = "/icon/git.svg" icon = "/icon/git.svg"

Loading…
Cancel
Save