-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathworkspace.go
More file actions
205 lines (184 loc) · 7.5 KB
/
workspace.go
File metadata and controls
205 lines (184 loc) · 7.5 KB
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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
package provider
import (
"context"
"reflect"
"strconv"
"strings"
"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)
// A claim can only take place AFTER a prebuild, so it's not logically consistent to have this set to any other value.
_ = rd.Set("is_prebuild_claim", false)
} else {
_ = rd.Set("prebuild_count", 0)
_ = rd.Set("is_prebuild", false)
}
if isPrebuiltWorkspaceClaim() {
// Indicate that a prebuild claim has taken place.
_ = rd.Set("is_prebuild_claim", true)
// A claim can only take place AFTER a prebuild, so it's not logically consistent to have these set to any other values.
_ = rd.Set("prebuild_count", 0)
_ = rd.Set("is_prebuild", false)
} else {
_ = rd.Set("is_prebuild_claim", 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.",
},
"is_prebuild_claim": {
Type: schema.TypeBool,
Computed: true,
Description: "Indicates whether a prebuilt workspace has just been claimed and this is the first `apply` after that occurrence.",
},
"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 strings.EqualFold(helpers.OptionalEnv(IsPrebuildEnvironmentVariable()), "true")
}
// isPrebuiltWorkspaceClaim returns true if the workspace is a prebuilt workspace which has just been claimed.
func isPrebuiltWorkspaceClaim() bool {
return strings.EqualFold(helpers.OptionalEnv(IsPrebuildClaimEnvironmentVariable()), "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"
}
// IsPrebuildClaimEnvironmentVariable returns the name of the environment variable that
// indicates whether the workspace is a prebuilt workspace which has just been claimed, and this is the first Terraform
// apply after that occurrence.
//
// Knowing whether the workspace is a claimed 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 just 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 not been claimed by a user.
func IsPrebuildClaimEnvironmentVariable() string {
return "CODER_WORKSPACE_IS_PREBUILD_CLAIM"
}