From a4cfdf9023024fe5a69ff2e60257297033ce9a5b Mon Sep 17 00:00:00 2001 From: Muhammad Atif Ali Date: Tue, 13 Aug 2024 22:48:31 +0300 Subject: [PATCH] feat(dotfiles): Add an optional coder app to update dotfiles on-demand --- dotfiles/main.tf | 21 +++++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) diff --git a/dotfiles/main.tf b/dotfiles/main.tf index bfb67e4..c62607b 100644 --- a/dotfiles/main.tf +++ b/dotfiles/main.tf @@ -39,9 +39,14 @@ variable "coder_parameter_order" { default = null } -data "coder_parameter" "dotfiles_uri" { - count = var.dotfiles_uri == null ? 1 : 0 +variable "manual_update" { + type = bool + description = "Choose whether to enable a Coder app to update dotfiles on demand. This will add a button to workspace page to update dotfiles on demand." + default = false +} +data "coder_parameter" "dotfiles_uri" { + count = var.dotfiles_uri == null ? 1 : 0 type = "string" name = "dotfiles_uri" display_name = "Dotfiles URL" @@ -68,6 +73,18 @@ resource "coder_script" "dotfiles" { run_on_start = true } +resource "coder_app" "dotfiles" { + count = var.manual_update + agent_id = var.agent_id + display_name = "Update Dotfiles" + slug = "dotfiles" + icon = "/icon/dotfiles.svg" + command = templatefile("${path.module}/run.sh", { + DOTFILES_URI : local.dotfiles_uri, + DOTFILES_USER : local.user + }) +} + output "dotfiles_uri" { description = "Dotfiles URI" value = local.dotfiles_uri