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

Commit a8580fe

Browse files
committed
fix: update object definition for top-level templatefile
1 parent 49f0605 commit a8580fe

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

windows-rdp/main.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ resource "coder_script" "windows-rdp" {
3434
agent_id = var.agent_id
3535
display_name = "windows-rdp"
3636
icon = "https://svgur.com/i/158F.svg" # TODO: add to Coder icons
37-
script = templatefile("${path.module}/./windows-installation.tftpl", {
38-
CODER_USERNAME : var.admin_username,
39-
CODER_PASSWORD : var.admin_password,
37+
script = templatefile("${path.module}/windows-installation.tftpl", {
38+
CODER_USERNAME = var.admin_username,
39+
CODER_PASSWORD = var.admin_password,
4040
})
4141

4242
run_on_start = true

0 commit comments

Comments
 (0)