From a6859bffc37bfa2de0d59b9a8c2384a582905824 Mon Sep 17 00:00:00 2001 From: Muhammad Atif Ali Date: Sun, 14 Apr 2024 17:28:28 +0300 Subject: [PATCH 1/3] fix(dotfiles): fix typo and remove a less useful output The output is a direct use of the input, so it is not useful. --- dotfiles/main.tf | 5 ----- 1 file changed, 5 deletions(-) diff --git a/dotfiles/main.tf b/dotfiles/main.tf index 12ca8263..46ead80a 100644 --- a/dotfiles/main.tf +++ b/dotfiles/main.tf @@ -47,8 +47,3 @@ output "dotfiles_uri" { description = "Dotfiles URI" value = data.coder_parameter.dotfiles_uri.value } - -output "dotfiles_default_uri" { - description = "Dotfiles Default URI" - value = var.default_dotfiles_uri -} \ No newline at end of file From 07915f9ed9d08d4f5ae69c2931d0959825a8b498 Mon Sep 17 00:00:00 2001 From: Muhammad Atif Ali Date: Sun, 14 Apr 2024 17:29:09 +0300 Subject: [PATCH 2/3] fix typo --- dotfiles/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dotfiles/README.md b/dotfiles/README.md index 29390250..3f6f6bb1 100644 --- a/dotfiles/README.md +++ b/dotfiles/README.md @@ -21,13 +21,13 @@ module "dotfiles" { ## Setting a default dotfiles repository -You can set a default dotfiles repository for all users by setting the `default_dotfiles_repo` variable: +You can set a default dotfiles repository for all users by setting the `default_dotfiles_uri` variable: ```tf module "dotfiles" { source = "registry.coder.com/modules/dotfiles/coder" version = "1.0.12" agent_id = coder_agent.example.id - default_dotfiles_repo = "https://github.com/coder/dotfiles" + default_dotfiles_uri = "https://github.com/coder/dotfiles" } ``` From 1a161cd4ec445f703d94755d3d3d45324d65b55b Mon Sep 17 00:00:00 2001 From: Muhammad Atif Ali Date: Sun, 14 Apr 2024 17:32:31 +0300 Subject: [PATCH 3/3] `bun fmt` --- dotfiles/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dotfiles/README.md b/dotfiles/README.md index 3f6f6bb1..9f8a0fea 100644 --- a/dotfiles/README.md +++ b/dotfiles/README.md @@ -25,9 +25,9 @@ You can set a default dotfiles repository for all users by setting the `default_ ```tf module "dotfiles" { - source = "registry.coder.com/modules/dotfiles/coder" - version = "1.0.12" - agent_id = coder_agent.example.id - default_dotfiles_uri = "https://github.com/coder/dotfiles" + source = "registry.coder.com/modules/dotfiles/coder" + version = "1.0.12" + agent_id = coder_agent.example.id + default_dotfiles_uri = "https://github.com/coder/dotfiles" } ```