chore: add `start_blocks_login=true`

pull/61/head
Muhammad Atif Ali 2 years ago
parent d7f60d3000
commit 4393fb6f0f
No known key found for this signature in database

@ -47,11 +47,12 @@ resource "coder_script" "filebrowser" {
} }
resource "coder_app" "filebrowser" { resource "coder_app" "filebrowser" {
agent_id = var.agent_id agent_id = var.agent_id
slug = "filebrowser" slug = "filebrowser"
display_name = "File Browser" display_name = "File Browser"
url = "http://localhost:${var.port}" url = "http://localhost:${var.port}"
icon = "https://raw.githubusercontent.com/filebrowser/logo/master/icon_raw.svg" icon = "https://raw.githubusercontent.com/filebrowser/logo/master/icon_raw.svg"
subdomain = true subdomain = true
share = "owner" share = "owner"
start_blocks_login = true
} }

@ -31,8 +31,9 @@ resource "coder_script" "personalize" {
script = templatefile("${path.module}/run.sh", { script = templatefile("${path.module}/run.sh", {
PERSONALIZE_PATH : var.path, PERSONALIZE_PATH : var.path,
}) })
display_name = "Personalize" display_name = "Personalize"
icon = "/icon/personalize.svg" icon = "/icon/personalize.svg"
log_path = var.log_path log_path = var.log_path
run_on_start = true run_on_start = true
start_blocks_login = true
} }

Loading…
Cancel
Save