generated from hashicorp/terraform-provider-scaffolding-framework
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathresource_endpoint.go
301 lines (251 loc) · 10.5 KB
/
resource_endpoint.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
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
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
package provider
import (
"context"
"fmt"
"net/http"
"strings"
"github.com/hashicorp/terraform-plugin-framework-validators/float64validator"
"github.com/hashicorp/terraform-plugin-framework-validators/int64validator"
"github.com/hashicorp/terraform-plugin-framework-validators/stringvalidator"
"github.com/hashicorp/terraform-plugin-framework/path"
"github.com/hashicorp/terraform-plugin-framework/resource"
"github.com/hashicorp/terraform-plugin-framework/resource/schema"
"github.com/hashicorp/terraform-plugin-framework/resource/schema/float64default"
"github.com/hashicorp/terraform-plugin-framework/resource/schema/int64default"
"github.com/hashicorp/terraform-plugin-framework/resource/schema/planmodifier"
"github.com/hashicorp/terraform-plugin-framework/resource/schema/stringplanmodifier"
"github.com/hashicorp/terraform-plugin-framework/schema/validator"
"github.com/hashicorp/terraform-plugin-framework/types"
"github.com/hashicorp/terraform-plugin-log/tflog"
)
var _ resource.Resource = &EndpointResource{}
var _ resource.ResourceWithImportState = &EndpointResource{}
func NewEndpointResource() resource.Resource {
return &EndpointResource{}
}
type EndpointResource struct {
client *http.Client
}
type EndpointResourceModel struct {
Id types.String `tfsdk:"id"`
BranchId types.String `tfsdk:"branch_id"`
ProjectId types.String `tfsdk:"project_id"`
Type types.String `tfsdk:"type"`
Host types.String `tfsdk:"host"`
MinCu types.Float64 `tfsdk:"min_cu"`
MaxCu types.Float64 `tfsdk:"max_cu"`
ComputeProvisioner types.String `tfsdk:"compute_provisioner"`
SuspendTimeout types.Int64 `tfsdk:"suspend_timeout"`
}
func (r *EndpointResource) Metadata(ctx context.Context, req resource.MetadataRequest, resp *resource.MetadataResponse) {
resp.TypeName = req.ProviderTypeName + "_endpoint"
}
func (r *EndpointResource) Schema(ctx context.Context, req resource.SchemaRequest, resp *resource.SchemaResponse) {
resp.Schema = schema.Schema{
MarkdownDescription: "Neon endpoint. This creates `read_only` endpoints. Please use `neon_branch` to create the `read_write` endpoint.",
Attributes: map[string]schema.Attribute{
"id": schema.StringAttribute{
MarkdownDescription: "Identifier of the endpoint.",
Computed: true,
PlanModifiers: []planmodifier.String{
stringplanmodifier.UseStateForUnknown(),
},
},
"branch_id": schema.StringAttribute{
MarkdownDescription: "Branch the endpoint belongs to.",
Required: true,
PlanModifiers: []planmodifier.String{
stringplanmodifier.RequiresReplace(),
},
Validators: []validator.String{
stringvalidator.RegexMatches(idRegex(), "must be an id"),
},
},
"project_id": schema.StringAttribute{
MarkdownDescription: "Project the endpoint belongs to.",
Required: true,
PlanModifiers: []planmodifier.String{
stringplanmodifier.RequiresReplace(),
},
Validators: []validator.String{
stringvalidator.RegexMatches(idRegex(), "must be an id"),
},
},
"type": schema.StringAttribute{
MarkdownDescription: "Type of the endpoint.",
Computed: true,
PlanModifiers: []planmodifier.String{
stringplanmodifier.UseStateForUnknown(),
stringplanmodifier.RequiresReplace(),
},
Validators: []validator.String{
stringvalidator.OneOf("read_only", "read_write"),
},
},
"host": schema.StringAttribute{
MarkdownDescription: "Host of the endpoint.",
Computed: true,
PlanModifiers: []planmodifier.String{
stringplanmodifier.UseStateForUnknown(),
},
},
"min_cu": schema.Float64Attribute{
MarkdownDescription: "Minimum number of compute units for the endpoint. **Default** `0.25`.",
Optional: true,
Computed: true,
Default: float64default.StaticFloat64(0.25),
Validators: []validator.Float64{
float64validator.OneOf(0.25, 0.5, 1, 2, 3, 4, 5, 6, 7),
},
},
"max_cu": schema.Float64Attribute{
MarkdownDescription: "Maximum number of compute units for the endpoint. **Default** `0.25`.",
Optional: true,
Computed: true,
Default: float64default.StaticFloat64(0.25),
Validators: []validator.Float64{
float64validator.OneOf(0.25, 0.5, 1, 2, 3, 4, 5, 6, 7),
},
},
"compute_provisioner": schema.StringAttribute{
MarkdownDescription: "Provisioner of the endpoint.",
Computed: true,
},
"suspend_timeout": schema.Int64Attribute{
MarkdownDescription: "Suspend timeout of the endpoint. **Default** `0`.",
Optional: true,
Computed: true,
Default: int64default.StaticInt64(0),
Validators: []validator.Int64{
int64validator.Between(-1, 604800),
},
},
},
}
}
func (r *EndpointResource) Configure(ctx context.Context, req resource.ConfigureRequest, resp *resource.ConfigureResponse) {
// Prevent panic if the provider has not been configured.
if req.ProviderData == nil {
return
}
client, ok := req.ProviderData.(*http.Client)
if !ok {
resp.Diagnostics.AddError(
"Unexpected Resource Configure Type",
fmt.Sprintf("Expected *http.Client, got: %T. Please report this issue to the provider developers.", req.ProviderData),
)
return
}
r.client = client
}
func (r *EndpointResource) Create(ctx context.Context, req resource.CreateRequest, resp *resource.CreateResponse) {
var data *EndpointResourceModel
resp.Diagnostics.Append(req.Plan.Get(ctx, &data)...)
if resp.Diagnostics.HasError() {
return
}
input := EndpointCreateInput{
Endpoint: EndpointCreateInputEndpoint{
BranchId: data.BranchId.ValueString(),
Type: "read_only",
AutoscalingLimitMinCu: data.MinCu.ValueFloat64(),
AutoscalingLimitMaxCu: data.MaxCu.ValueFloat64(),
SuspendTimeoutSeconds: data.SuspendTimeout.ValueInt64(),
},
}
endpoint, err := endpointCreate(r.client, data.ProjectId.ValueString(), input)
if err != nil {
resp.Diagnostics.AddError("Client Error", fmt.Sprintf("Unable to create endpoint, got error: %s", err))
return
}
tflog.Trace(ctx, "created a endpoint")
data.Id = types.StringValue(endpoint.Endpoint.Id)
data.BranchId = types.StringValue(endpoint.Endpoint.BranchId)
data.ProjectId = types.StringValue(endpoint.Endpoint.ProjectId)
data.Type = types.StringValue(endpoint.Endpoint.Type)
data.Host = types.StringValue(endpoint.Endpoint.Host)
data.MinCu = types.Float64Value(endpoint.Endpoint.AutoscalingLimitMinCu)
data.MaxCu = types.Float64Value(endpoint.Endpoint.AutoscalingLimitMaxCu)
data.ComputeProvisioner = types.StringValue(endpoint.Endpoint.ComputeProvisioner)
data.SuspendTimeout = types.Int64Value(endpoint.Endpoint.SuspendTimeoutSeconds)
resp.Diagnostics.Append(resp.State.Set(ctx, &data)...)
}
func (r *EndpointResource) Read(ctx context.Context, req resource.ReadRequest, resp *resource.ReadResponse) {
var data *EndpointResourceModel
resp.Diagnostics.Append(req.State.Get(ctx, &data)...)
if resp.Diagnostics.HasError() {
return
}
var endpoint EndpointOutput
err := get(r.client, fmt.Sprintf("/projects/%s/endpoints/%s", data.ProjectId.ValueString(), data.Id.ValueString()), &endpoint)
if err != nil {
resp.Diagnostics.AddError("Client Error", fmt.Sprintf("Unable to read endpoint, got error: %s", err))
return
}
tflog.Trace(ctx, "read a endpoint")
data.Id = types.StringValue(endpoint.Endpoint.Id)
data.BranchId = types.StringValue(endpoint.Endpoint.BranchId)
data.ProjectId = types.StringValue(endpoint.Endpoint.ProjectId)
data.Type = types.StringValue(endpoint.Endpoint.Type)
data.Host = types.StringValue(endpoint.Endpoint.Host)
data.MinCu = types.Float64Value(endpoint.Endpoint.AutoscalingLimitMinCu)
data.MaxCu = types.Float64Value(endpoint.Endpoint.AutoscalingLimitMaxCu)
data.ComputeProvisioner = types.StringValue(endpoint.Endpoint.ComputeProvisioner)
data.SuspendTimeout = types.Int64Value(endpoint.Endpoint.SuspendTimeoutSeconds)
resp.Diagnostics.Append(resp.State.Set(ctx, &data)...)
}
func (r *EndpointResource) Update(ctx context.Context, req resource.UpdateRequest, resp *resource.UpdateResponse) {
var data *EndpointResourceModel
resp.Diagnostics.Append(req.Plan.Get(ctx, &data)...)
if resp.Diagnostics.HasError() {
return
}
input := EndpointUpdateInput{
Endpoint: EndpointUpdateInputEndpoint{
AutoscalingLimitMinCu: data.MinCu.ValueFloat64(),
AutoscalingLimitMaxCu: data.MaxCu.ValueFloat64(),
SuspendTimeoutSeconds: data.SuspendTimeout.ValueInt64(),
},
}
endpoint, err := endpointUpdate(r.client, data.ProjectId.ValueString(), data.Id.ValueString(), input)
if err != nil {
resp.Diagnostics.AddError("Client Error", fmt.Sprintf("Unable to update endpoint, got error: %s", err))
return
}
tflog.Trace(ctx, "updated a endpoint")
data.Id = types.StringValue(endpoint.Endpoint.Id)
data.BranchId = types.StringValue(endpoint.Endpoint.BranchId)
data.ProjectId = types.StringValue(endpoint.Endpoint.ProjectId)
data.Type = types.StringValue(endpoint.Endpoint.Type)
data.Host = types.StringValue(endpoint.Endpoint.Host)
data.MinCu = types.Float64Value(endpoint.Endpoint.AutoscalingLimitMinCu)
data.MaxCu = types.Float64Value(endpoint.Endpoint.AutoscalingLimitMaxCu)
data.ComputeProvisioner = types.StringValue(endpoint.Endpoint.ComputeProvisioner)
data.SuspendTimeout = types.Int64Value(endpoint.Endpoint.SuspendTimeoutSeconds)
resp.Diagnostics.Append(resp.State.Set(ctx, &data)...)
}
func (r *EndpointResource) Delete(ctx context.Context, req resource.DeleteRequest, resp *resource.DeleteResponse) {
var data *EndpointResourceModel
resp.Diagnostics.Append(req.State.Get(ctx, &data)...)
if resp.Diagnostics.HasError() {
return
}
err := endpointDelete(r.client, data.ProjectId.ValueString(), data.Id.ValueString())
if err != nil {
resp.Diagnostics.AddError("Client Error", fmt.Sprintf("Unable to delete endpoint, got error: %s", err))
return
}
tflog.Trace(ctx, "deleted a endpoint")
}
func (r *EndpointResource) ImportState(ctx context.Context, req resource.ImportStateRequest, resp *resource.ImportStateResponse) {
parts := strings.Split(req.ID, ":")
if len(parts) != 2 || parts[0] == "" || parts[1] == "" {
resp.Diagnostics.AddError(
"Unexpected Import Identifier",
fmt.Sprintf("Expected import identifier with format: project_id:endpoint_id. Got: %q", req.ID),
)
return
}
resp.Diagnostics.Append(resp.State.SetAttribute(ctx, path.Root("project_id"), parts[0])...)
resp.Diagnostics.Append(resp.State.SetAttribute(ctx, path.Root("id"), parts[1])...)
}