From ed16ba59a95f1d015337cd576edb3961fde691db Mon Sep 17 00:00:00 2001 From: Muhammad Atif Ali Date: Mon, 15 Apr 2024 20:31:32 +0300 Subject: [PATCH] fix(dotfiles): fix typo and remove a less useful output (#225) --- dotfiles/README.md | 10 +++++----- dotfiles/main.tf | 5 ----- 2 files changed, 5 insertions(+), 10 deletions(-) diff --git a/dotfiles/README.md b/dotfiles/README.md index 2939025..9f8a0fe 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" + 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" } ``` diff --git a/dotfiles/main.tf b/dotfiles/main.tf index cf21864..ac7f7e6 100644 --- a/dotfiles/main.tf +++ b/dotfiles/main.tf @@ -54,8 +54,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