From a2bdfefeb371c89eff50bbbe6c2647b69e18709e Mon Sep 17 00:00:00 2001 From: Phorcys <57866459+phorcys420@users.noreply.github.com> Date: Thu, 14 Mar 2024 21:40:47 +0100 Subject: [PATCH] chore(dotfiles): mention that setting the `dotfiles_uri` parameter disables the associated `coder_parameter` --- dotfiles/main.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dotfiles/main.tf b/dotfiles/main.tf index 0dd43fa..c9757f6 100644 --- a/dotfiles/main.tf +++ b/dotfiles/main.tf @@ -16,7 +16,7 @@ variable "agent_id" { variable "dotfiles_uri" { type = string - description = "The URL to a dotfiles repository. (optional)" + description = "The URL to a dotfiles repository. (optional, when set, the user isn't prompted for their dotfiles)" default = null } @@ -59,4 +59,4 @@ resource "coder_script" "dotfiles" { output "dotfiles_uri" { description = "Dotfiles URI" value = local.dotfiles_uri -} \ No newline at end of file +}