Skip to content

Commit aa7c5c7

Browse files
committed
add missing example
1 parent 3d5fc0b commit aa7c5c7

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

examples/resources/coder_app/resource.tf

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ resource "coder_app" "code-server" {
1818
url = "http://localhost:13337"
1919
share = "owner"
2020
subdomain = false
21+
open_in = "window"
2122
healthcheck {
2223
url = "http://localhost:13337/healthz"
2324
interval = 5

provider/app.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ func appResource() *schema.Resource {
227227
Type: schema.TypeString,
228228
Description: "Determines where the app will be opened. Valid values are `\"tab\"`, `\"window\"`, and `\"slim-window\" (default)`. " +
229229
"`\"tab\"` opens in a new tab in the same browser window. `\"window\"` opens a fresh browser window with navigation options. " +
230-
"`\"slim-window\"` opens a fresh browser window with slim navigation options.",
230+
"`\"slim-window\"` opens a new browser window without navigation controls.",
231231
ForceNew: true,
232232
Optional: true,
233233
Default: "slim-window",

0 commit comments

Comments
 (0)