-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathworkspace.go
163 lines (146 loc) · 5.48 KB
/
workspace.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
package provider
import (
"context"
"reflect"
"strconv"
"github.com/google/uuid"
"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
"github.com/coder/terraform-provider-coder/v2/provider/helpers"
)
func workspaceDataSource() *schema.Resource {
return &schema.Resource{
SchemaVersion: 1,
Description: "Use this data source to get information for the active workspace build.",
ReadContext: func(c context.Context, rd *schema.ResourceData, i interface{}) diag.Diagnostics {
transition := helpers.OptionalEnvOrDefault("CODER_WORKSPACE_TRANSITION", "start") // Default to start!
_ = rd.Set("transition", transition)
count := 0
if transition == "start" {
count = 1
}
_ = rd.Set("start_count", count)
if isPrebuiltWorkspace() {
_ = rd.Set("prebuild_count", 1)
_ = rd.Set("is_prebuild", true)
} else {
_ = rd.Set("prebuild_count", 0)
_ = rd.Set("is_prebuild", false)
}
name := helpers.OptionalEnvOrDefault("CODER_WORKSPACE_NAME", "default")
rd.Set("name", name)
id := helpers.OptionalEnvOrDefault("CODER_WORKSPACE_ID", uuid.NewString())
rd.SetId(id)
templateID, err := helpers.RequireEnv("CODER_WORKSPACE_TEMPLATE_ID")
if err != nil {
return diag.Errorf("template ID is missing: %s", err.Error())
}
_ = rd.Set("template_id", templateID)
templateName, err := helpers.RequireEnv("CODER_WORKSPACE_TEMPLATE_NAME")
if err != nil {
return diag.Errorf("template name is missing: %s", err.Error())
}
_ = rd.Set("template_name", templateName)
templateVersion, err := helpers.RequireEnv("CODER_WORKSPACE_TEMPLATE_VERSION")
if err != nil {
return diag.Errorf("template version is missing: %s", err.Error())
}
_ = rd.Set("template_version", templateVersion)
config, valid := i.(config)
if !valid {
return diag.Errorf("config was unexpected type %q", reflect.TypeOf(i).String())
}
rd.Set("access_url", config.URL.String())
rawPort := config.URL.Port()
if rawPort == "" {
rawPort = "80"
if config.URL.Scheme == "https" {
rawPort = "443"
}
}
port, err := strconv.Atoi(rawPort)
if err != nil {
return diag.Errorf("couldn't parse port %q", port)
}
rd.Set("access_port", port)
return nil
},
Schema: map[string]*schema.Schema{
"access_url": {
Type: schema.TypeString,
Computed: true,
Description: "The access URL of the Coder deployment provisioning this workspace.",
},
"access_port": {
Type: schema.TypeInt,
Computed: true,
Description: "The access port of the Coder deployment provisioning this workspace.",
},
"prebuild_count": {
Type: schema.TypeInt,
Computed: true,
Description: "A computed count, equal to 1 if the workspace is a currently unassigned prebuild. Use this to conditionally act on the status of a prebuild. Actions that do not require user identity can be taken when this value is set to 1. Actions that should only be taken once the workspace has been assigned to a user may be taken when this value is set to 0.",
},
"start_count": {
Type: schema.TypeInt,
Computed: true,
Description: "A computed count based on `transition` state. If `start`, count will equal 1.",
},
"transition": {
Type: schema.TypeString,
Computed: true,
Description: "Either `start` or `stop`. Use this to start/stop resources with `count`.",
},
"id": {
Type: schema.TypeString,
Computed: true,
Description: "UUID of the workspace.",
},
"is_prebuild": {
Type: schema.TypeBool,
Computed: true,
Description: "Similar to `prebuild_count`, but a boolean value instead of a count. This is set to true if the workspace is a currently unassigned prebuild. Once the workspace is assigned, this value will be false.",
},
"name": {
Type: schema.TypeString,
Computed: true,
Description: "Name of the workspace.",
},
"template_id": {
Type: schema.TypeString,
Computed: true,
Description: "ID of the workspace's template.",
},
"template_name": {
Type: schema.TypeString,
Computed: true,
Description: "Name of the workspace's template.",
},
"template_version": {
Type: schema.TypeString,
Computed: true,
Description: "Version of the workspace's template.",
},
},
}
}
// isPrebuiltWorkspace returns true if the workspace is an unclaimed prebuilt workspace.
func isPrebuiltWorkspace() bool {
return helpers.OptionalEnv(IsPrebuildEnvironmentVariable()) == "true"
}
// IsPrebuildEnvironmentVariable returns the name of the environment variable that
// indicates whether the workspace is an unclaimed prebuilt workspace.
//
// Knowing whether the workspace is an unclaimed prebuilt workspace allows template
// authors to conditionally execute code in the template based on whether the workspace
// has been assigned to a user or not. This allows identity specific configuration to
// be applied only after the workspace is claimed, while the rest of the workspace can
// be pre-configured.
//
// The value of this environment variable should be set to "true" if the workspace is prebuilt
// and it has not yet been claimed by a user. Any other values, including "false"
// and "" will be interpreted to mean that the workspace is not prebuilt, or was
// prebuilt but has since been claimed by a user.
func IsPrebuildEnvironmentVariable() string {
return "CODER_WORKSPACE_IS_PREBUILD"
}