generated from hashicorp/terraform-provider-scaffolding-framework
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathresource_database.go
272 lines (214 loc) · 8.48 KB
/
resource_database.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
package provider
import (
"context"
"fmt"
"net/http"
"strings"
"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/int64planmodifier"
"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 = &DatabaseResource{}
var _ resource.ResourceWithImportState = &DatabaseResource{}
func NewDatabaseResource() resource.Resource {
return &DatabaseResource{}
}
type DatabaseResource struct {
client *http.Client
}
type DatabaseResourceModel struct {
Id types.Int64 `tfsdk:"id"`
Name types.String `tfsdk:"name"`
OwnerName types.String `tfsdk:"owner_name"`
BranchId types.String `tfsdk:"branch_id"`
ProjectId types.String `tfsdk:"project_id"`
}
func (r *DatabaseResource) Metadata(ctx context.Context, req resource.MetadataRequest, resp *resource.MetadataResponse) {
resp.TypeName = req.ProviderTypeName + "_database"
}
func (r *DatabaseResource) Schema(ctx context.Context, req resource.SchemaRequest, resp *resource.SchemaResponse) {
resp.Schema = schema.Schema{
MarkdownDescription: "Neon database.",
Attributes: map[string]schema.Attribute{
"id": schema.Int64Attribute{
MarkdownDescription: "ID of the database.",
Computed: true,
PlanModifiers: []planmodifier.Int64{
int64planmodifier.UseStateForUnknown(),
},
},
"name": schema.StringAttribute{
MarkdownDescription: "Name of the database.",
Required: true,
Validators: []validator.String{
stringvalidator.UTF8LengthAtLeast(1),
},
},
"owner_name": schema.StringAttribute{
MarkdownDescription: "Name of the database owner.",
Required: true,
Validators: []validator.String{
stringvalidator.UTF8LengthAtLeast(1),
},
},
"branch_id": schema.StringAttribute{
MarkdownDescription: "Branch the database 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 database belongs to.",
Required: true,
PlanModifiers: []planmodifier.String{
stringplanmodifier.RequiresReplace(),
},
Validators: []validator.String{
stringvalidator.RegexMatches(idRegex(), "must be an id"),
},
},
},
}
}
func (r *DatabaseResource) 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 *DatabaseResource) Create(ctx context.Context, req resource.CreateRequest, resp *resource.CreateResponse) {
var data *DatabaseResourceModel
resp.Diagnostics.Append(req.Plan.Get(ctx, &data)...)
if resp.Diagnostics.HasError() {
return
}
branch, err := branchGet(r.client, data.ProjectId.ValueString(), data.BranchId.ValueString())
if err != nil {
resp.Diagnostics.AddError("Client Error", fmt.Sprintf("Unable to read branch, got error: %s", err))
return
}
input := DatabaseCreateInput{
Database: DatabaseCreateInputDatabase{
Name: data.Name.ValueString(),
OwnerName: data.OwnerName.ValueString(),
},
}
database, err := databaseCreate(r.client, data.ProjectId.ValueString(), data.BranchId.ValueString(), input)
if err != nil {
resp.Diagnostics.AddError("Client Error", fmt.Sprintf("Unable to create database, got error: %s", err))
return
}
tflog.Trace(ctx, "created a database")
data.Id = types.Int64Value(database.Database.Id)
data.Name = types.StringValue(database.Database.Name)
data.OwnerName = types.StringValue(database.Database.OwnerName)
data.BranchId = types.StringValue(database.Database.BranchId)
data.ProjectId = types.StringValue(branch.Branch.ProjectId)
resp.Diagnostics.Append(resp.State.Set(ctx, &data)...)
}
func (r *DatabaseResource) Read(ctx context.Context, req resource.ReadRequest, resp *resource.ReadResponse) {
var data *DatabaseResourceModel
resp.Diagnostics.Append(req.State.Get(ctx, &data)...)
if resp.Diagnostics.HasError() {
return
}
branch, err := branchGet(r.client, data.ProjectId.ValueString(), data.BranchId.ValueString())
if err != nil {
resp.Diagnostics.AddError("Client Error", fmt.Sprintf("Unable to read database, got error: %s", err))
return
}
var database DatabaseOutput
err = get(r.client, fmt.Sprintf("/projects/%s/branches/%s/databases/%s", data.ProjectId.ValueString(), data.BranchId.ValueString(), data.Name.ValueString()), &database)
if err != nil {
resp.Diagnostics.AddError("Client Error", fmt.Sprintf("Unable to read database, got error: %s", err))
return
}
tflog.Trace(ctx, "read a database")
data.Id = types.Int64Value(database.Database.Id)
data.Name = types.StringValue(database.Database.Name)
data.OwnerName = types.StringValue(database.Database.OwnerName)
data.BranchId = types.StringValue(database.Database.BranchId)
data.ProjectId = types.StringValue(branch.Branch.ProjectId)
resp.Diagnostics.Append(resp.State.Set(ctx, &data)...)
}
func (r *DatabaseResource) Update(ctx context.Context, req resource.UpdateRequest, resp *resource.UpdateResponse) {
var data *DatabaseResourceModel
var state *DatabaseResourceModel
resp.Diagnostics.Append(req.Plan.Get(ctx, &data)...)
if resp.Diagnostics.HasError() {
return
}
resp.Diagnostics.Append(req.State.Get(ctx, &state)...)
if resp.Diagnostics.HasError() {
return
}
branch, err := branchGet(r.client, data.ProjectId.ValueString(), data.BranchId.ValueString())
if err != nil {
resp.Diagnostics.AddError("Client Error", fmt.Sprintf("Unable to read branch, got error: %s", err))
return
}
input := DatabaseUpdateInput{
Database: DatabaseUpdateInputDatabase{
Name: data.Name.ValueString(),
OwnerName: data.OwnerName.ValueString(),
},
}
database, err := databaseUpdate(r.client, data.ProjectId.ValueString(), data.BranchId.ValueString(), state.Name.ValueString(), input)
if err != nil {
resp.Diagnostics.AddError("Client Error", fmt.Sprintf("Unable to update database, got error: %s", err))
return
}
tflog.Trace(ctx, "updated a database")
data.Id = types.Int64Value(database.Database.Id)
data.Name = types.StringValue(database.Database.Name)
data.OwnerName = types.StringValue(database.Database.OwnerName)
data.BranchId = types.StringValue(database.Database.BranchId)
data.ProjectId = types.StringValue(branch.Branch.ProjectId)
resp.Diagnostics.Append(resp.State.Set(ctx, &data)...)
}
func (r *DatabaseResource) Delete(ctx context.Context, req resource.DeleteRequest, resp *resource.DeleteResponse) {
var data *DatabaseResourceModel
resp.Diagnostics.Append(req.State.Get(ctx, &data)...)
if resp.Diagnostics.HasError() {
return
}
err := databaseDelete(r.client, data.ProjectId.ValueString(), data.BranchId.ValueString(), data.Name.ValueString())
if err != nil {
resp.Diagnostics.AddError("Client Error", fmt.Sprintf("Unable to delete database, got error: %s", err))
return
}
tflog.Trace(ctx, "deleted a database")
}
func (r *DatabaseResource) ImportState(ctx context.Context, req resource.ImportStateRequest, resp *resource.ImportStateResponse) {
parts := strings.Split(req.ID, ":")
if len(parts) != 3 || parts[0] == "" || parts[1] == "" || parts[2] == "" {
resp.Diagnostics.AddError(
"Unexpected Import Identifier",
fmt.Sprintf("Expected import identifier with format: project_id:branch_id:name. 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("branch_id"), parts[1])...)
resp.Diagnostics.Append(resp.State.SetAttribute(ctx, path.Root("name"), parts[2])...)
}