Skip to content
This repository was archived by the owner on May 15, 2025. It is now read-only.

Commit ed16ba5

Browse files
authored
fix(dotfiles): fix typo and remove a less useful output (#225)
1 parent a8c659a commit ed16ba5

File tree

2 files changed

+5
-10
lines changed

2 files changed

+5
-10
lines changed

dotfiles/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ module "dotfiles" {
2121

2222
## Setting a default dotfiles repository
2323

24-
You can set a default dotfiles repository for all users by setting the `default_dotfiles_repo` variable:
24+
You can set a default dotfiles repository for all users by setting the `default_dotfiles_uri` variable:
2525

2626
```tf
2727
module "dotfiles" {
28-
source = "registry.coder.com/modules/dotfiles/coder"
29-
version = "1.0.12"
30-
agent_id = coder_agent.example.id
31-
default_dotfiles_repo = "https://github.com/coder/dotfiles"
28+
source = "registry.coder.com/modules/dotfiles/coder"
29+
version = "1.0.12"
30+
agent_id = coder_agent.example.id
31+
default_dotfiles_uri = "https://github.com/coder/dotfiles"
3232
}
3333
```

dotfiles/main.tf

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,3 @@ output "dotfiles_uri" {
5454
description = "Dotfiles URI"
5555
value = data.coder_parameter.dotfiles_uri.value
5656
}
57-
58-
output "dotfiles_default_uri" {
59-
description = "Dotfiles Default URI"
60-
value = var.default_dotfiles_uri
61-
}

0 commit comments

Comments
 (0)