Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/resources/workspace_proxy.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,4 @@ resource "kubernetes_deployment" "syd_wsproxy" {
### Read-Only

- `id` (String) Workspace Proxy ID
- `session_token` (String) Session token for the workspace proxy.
- `session_token` (String, Sensitive) Session token for the workspace proxy.
1 change: 1 addition & 0 deletions internal/provider/workspace_proxy_resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ func (r *WorkspaceProxyResource) Schema(ctx context.Context, req resource.Schema
"session_token": schema.StringAttribute{
MarkdownDescription: "Session token for the workspace proxy.",
Computed: true,
Sensitive: true,
PlanModifiers: []planmodifier.String{
stringplanmodifier.UseStateForUnknown(),
},
Expand Down