Complete rewrite of the VirtFusion Terraform provider with full API coverage: - 20 managed resources (server, build, SSH key, user, firewall, IP blocks, etc.) - 30 data sources (hypervisors, packages, servers, IP blocks, self-service, etc.) - New HTTP client with proper error handling, query parameter support, and automatic multipage pagination via GetAllPages (fetches all pages from Laravel-style paginated endpoints and merges into a single response) - Fixed type mismatches against live API: ServerData.Suspended (int→bool), IPBlockData.Type (string→int), PackageData json tags (primaryStorage, etc.), ServerData nested CPU/Settings/Resources structure, HypervisorGroupResources array response - Configurable results-per-page (default 300) on all list data sources - Migrated CI from GitHub Actions to Gitea Actions - Updated goreleaser config, go.mod dependencies, and examples Verified against live VirtFusion instance at cp.vps.ezscale.tech: all data sources return correct data with full pagination support. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
112 lines
3.6 KiB
Go
112 lines
3.6 KiB
Go
// Copyright (c) EZSCALE.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
package provider
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"fmt"
|
|
|
|
"terraform-provider-virtfusion/internal/client"
|
|
|
|
"github.com/hashicorp/terraform-plugin-framework/datasource"
|
|
"github.com/hashicorp/terraform-plugin-framework/datasource/schema"
|
|
"github.com/hashicorp/terraform-plugin-framework/types"
|
|
)
|
|
|
|
var (
|
|
_ datasource.DataSource = &SelfServiceResourcePackDataSource{}
|
|
_ datasource.DataSourceWithConfigure = &SelfServiceResourcePackDataSource{}
|
|
)
|
|
|
|
// NewSelfServiceResourcePackDataSource returns a new self-service resource pack data source.
|
|
func NewSelfServiceResourcePackDataSource() datasource.DataSource {
|
|
return &SelfServiceResourcePackDataSource{}
|
|
}
|
|
|
|
// SelfServiceResourcePackDataSource defines the data source implementation.
|
|
type SelfServiceResourcePackDataSource struct {
|
|
client *client.Client
|
|
}
|
|
|
|
// SelfServiceResourcePackDataSourceModel describes the data source data model.
|
|
type SelfServiceResourcePackDataSourceModel struct {
|
|
ID types.Int64 `tfsdk:"id"`
|
|
Name types.String `tfsdk:"name"`
|
|
UserID types.Int64 `tfsdk:"user_id"`
|
|
PackID types.Int64 `tfsdk:"pack_id"`
|
|
}
|
|
|
|
func (d *SelfServiceResourcePackDataSource) Metadata(_ context.Context, req datasource.MetadataRequest, resp *datasource.MetadataResponse) {
|
|
resp.TypeName = req.ProviderTypeName + "_self_service_resource_pack"
|
|
}
|
|
|
|
func (d *SelfServiceResourcePackDataSource) Schema(_ context.Context, _ datasource.SchemaRequest, resp *datasource.SchemaResponse) {
|
|
resp.Schema = schema.Schema{
|
|
MarkdownDescription: "Fetches a single VirtFusion self-service resource pack by ID.",
|
|
Attributes: map[string]schema.Attribute{
|
|
"id": schema.Int64Attribute{
|
|
MarkdownDescription: "The resource pack ID.",
|
|
Required: true,
|
|
},
|
|
"name": schema.StringAttribute{
|
|
MarkdownDescription: "The resource pack name.",
|
|
Computed: true,
|
|
},
|
|
"user_id": schema.Int64Attribute{
|
|
MarkdownDescription: "The user ID associated with the resource pack.",
|
|
Computed: true,
|
|
},
|
|
"pack_id": schema.Int64Attribute{
|
|
MarkdownDescription: "The pack ID associated with the resource pack.",
|
|
Computed: true,
|
|
},
|
|
},
|
|
}
|
|
}
|
|
|
|
func (d *SelfServiceResourcePackDataSource) Configure(_ context.Context, req datasource.ConfigureRequest, resp *datasource.ConfigureResponse) {
|
|
if req.ProviderData == nil {
|
|
return
|
|
}
|
|
|
|
c, ok := req.ProviderData.(*client.Client)
|
|
if !ok {
|
|
resp.Diagnostics.AddError(
|
|
"Unexpected Data Source Configure Type",
|
|
fmt.Sprintf("Expected *client.Client, got: %T.", req.ProviderData),
|
|
)
|
|
return
|
|
}
|
|
|
|
d.client = c
|
|
}
|
|
|
|
func (d *SelfServiceResourcePackDataSource) Read(ctx context.Context, req datasource.ReadRequest, resp *datasource.ReadResponse) {
|
|
var data SelfServiceResourcePackDataSourceModel
|
|
resp.Diagnostics.Append(req.Config.Get(ctx, &data)...)
|
|
if resp.Diagnostics.HasError() {
|
|
return
|
|
}
|
|
|
|
rawResp, err := d.client.Get(ctx, fmt.Sprintf("/selfService/resourcePack/%d", data.ID.ValueInt64()))
|
|
if err != nil {
|
|
resp.Diagnostics.AddError("Error Reading Self-Service Resource Pack", err.Error())
|
|
return
|
|
}
|
|
|
|
var packResp client.SelfServiceResourcePackResponse
|
|
if err := json.Unmarshal(rawResp, &packResp); err != nil {
|
|
resp.Diagnostics.AddError("Error Parsing Self-Service Resource Pack Response", err.Error())
|
|
return
|
|
}
|
|
|
|
data.ID = types.Int64Value(packResp.Data.ID)
|
|
data.Name = types.StringValue(packResp.Data.Name)
|
|
data.UserID = types.Int64Value(packResp.Data.UserID)
|
|
data.PackID = types.Int64Value(packResp.Data.PackID)
|
|
|
|
resp.Diagnostics.Append(resp.State.Set(ctx, &data)...)
|
|
}
|