terraform-provider-towerops/internal/provider/site_resource.go
Graham McIntire e8e2a5fa56
fix site lat/lng inconsistent result after apply
mark latitude and longitude as Computed in addition to Optional so
the provider accepts server-set values (geocoding, UI) when the user
omits them from config
2026-03-18 09:33:22 -05:00

272 lines
7.8 KiB
Go

package provider
import (
"context"
"errors"
"fmt"
"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/planmodifier"
"github.com/hashicorp/terraform-plugin-framework/resource/schema/stringplanmodifier"
"github.com/hashicorp/terraform-plugin-framework/types"
)
var _ resource.Resource = &SiteResource{}
var _ resource.ResourceWithImportState = &SiteResource{}
// SiteResource defines the resource implementation.
type SiteResource struct {
client *Client
}
// SiteResourceModel describes the resource data model.
type SiteResourceModel struct {
ID types.String `tfsdk:"id"`
Name types.String `tfsdk:"name"`
Location types.String `tfsdk:"location"`
Address types.String `tfsdk:"address"`
Latitude types.Float64 `tfsdk:"latitude"`
Longitude types.Float64 `tfsdk:"longitude"`
SNMPCommunity types.String `tfsdk:"snmp_community"`
InsertedAt types.String `tfsdk:"inserted_at"`
}
// NewSiteResource creates a new site resource.
func NewSiteResource() resource.Resource {
return &SiteResource{}
}
func (r *SiteResource) Metadata(ctx context.Context, req resource.MetadataRequest, resp *resource.MetadataResponse) {
resp.TypeName = req.ProviderTypeName + "_site"
}
func (r *SiteResource) Schema(ctx context.Context, req resource.SchemaRequest, resp *resource.SchemaResponse) {
resp.Schema = schema.Schema{
Description: "Manages a TowerOps site. Sites represent physical locations that contain devices.",
Attributes: map[string]schema.Attribute{
"id": schema.StringAttribute{
Description: "The unique identifier of the site.",
Computed: true,
PlanModifiers: []planmodifier.String{
stringplanmodifier.UseStateForUnknown(),
},
},
"name": schema.StringAttribute{
Description: "The name of the site. Must be between 2 and 200 characters.",
Required: true,
},
"location": schema.StringAttribute{
Description: "A short description of the physical location.",
Optional: true,
},
"address": schema.StringAttribute{
Description: "The street address of the site.",
Optional: true,
},
"latitude": schema.Float64Attribute{
Description: "The latitude of the site (-90 to 90).",
Optional: true,
Computed: true,
},
"longitude": schema.Float64Attribute{
Description: "The longitude of the site (-180 to 180).",
Optional: true,
Computed: true,
},
"snmp_community": schema.StringAttribute{
Description: "The default SNMP community string for devices at this site.",
Optional: true,
Sensitive: true,
},
"inserted_at": schema.StringAttribute{
Description: "The timestamp when the site was created.",
Computed: true,
PlanModifiers: []planmodifier.String{
stringplanmodifier.UseStateForUnknown(),
},
},
},
}
}
func (r *SiteResource) Configure(ctx context.Context, req resource.ConfigureRequest, resp *resource.ConfigureResponse) {
if req.ProviderData == nil {
return
}
client, ok := req.ProviderData.(*Client)
if !ok {
resp.Diagnostics.AddError(
"Unexpected Resource Configure Type",
fmt.Sprintf("Expected *Client, got: %T", req.ProviderData),
)
return
}
r.client = client
}
func (r *SiteResource) Create(ctx context.Context, req resource.CreateRequest, resp *resource.CreateResponse) {
var data SiteResourceModel
resp.Diagnostics.Append(req.Plan.Get(ctx, &data)...)
if resp.Diagnostics.HasError() {
return
}
site := buildSiteFromModel(&data)
created, err := r.client.CreateSite(site)
if err != nil {
resp.Diagnostics.AddError("Failed to create site", err.Error())
return
}
data.ID = types.StringValue(created.ID)
data.InsertedAt = types.StringValue(created.InsertedAt)
setSiteOptionalFields(&data, created)
resp.Diagnostics.Append(resp.State.Set(ctx, &data)...)
}
func (r *SiteResource) Read(ctx context.Context, req resource.ReadRequest, resp *resource.ReadResponse) {
var data SiteResourceModel
resp.Diagnostics.Append(req.State.Get(ctx, &data)...)
if resp.Diagnostics.HasError() {
return
}
site, err := r.client.GetSite(data.ID.ValueString())
if err != nil {
if errors.Is(err, ErrNotFound) {
// Site was deleted outside of Terraform, remove from state
resp.State.RemoveResource(ctx)
return
}
resp.Diagnostics.AddError("Failed to read site", err.Error())
return
}
data.Name = types.StringValue(site.Name)
data.InsertedAt = types.StringValue(site.InsertedAt)
setSiteOptionalFields(&data, site)
resp.Diagnostics.Append(resp.State.Set(ctx, &data)...)
}
func (r *SiteResource) Update(ctx context.Context, req resource.UpdateRequest, resp *resource.UpdateResponse) {
var data SiteResourceModel
resp.Diagnostics.Append(req.Plan.Get(ctx, &data)...)
if resp.Diagnostics.HasError() {
return
}
site := buildSiteFromModel(&data)
updated, err := r.client.UpdateSite(data.ID.ValueString(), site)
if err != nil {
if errors.Is(err, ErrNotFound) {
// Site was deleted outside of Terraform, recreate it
created, createErr := r.client.CreateSite(site)
if createErr != nil {
resp.Diagnostics.AddError("Failed to create site (after 404 on update)", createErr.Error())
return
}
data.ID = types.StringValue(created.ID)
data.InsertedAt = types.StringValue(created.InsertedAt)
data.Name = types.StringValue(created.Name)
setSiteOptionalFields(&data, created)
resp.Diagnostics.Append(resp.State.Set(ctx, &data)...)
return
}
resp.Diagnostics.AddError("Failed to update site", err.Error())
return
}
data.Name = types.StringValue(updated.Name)
setSiteOptionalFields(&data, updated)
resp.Diagnostics.Append(resp.State.Set(ctx, &data)...)
}
func (r *SiteResource) Delete(ctx context.Context, req resource.DeleteRequest, resp *resource.DeleteResponse) {
var data SiteResourceModel
resp.Diagnostics.Append(req.State.Get(ctx, &data)...)
if resp.Diagnostics.HasError() {
return
}
err := r.client.DeleteSite(data.ID.ValueString())
if err != nil {
resp.Diagnostics.AddError("Failed to delete site", err.Error())
return
}
}
func (r *SiteResource) ImportState(ctx context.Context, req resource.ImportStateRequest, resp *resource.ImportStateResponse) {
resource.ImportStatePassthroughID(ctx, path.Root("id"), req, resp)
}
// buildSiteFromModel converts the Terraform model to an API Site struct.
func buildSiteFromModel(data *SiteResourceModel) Site {
site := Site{
Name: data.Name.ValueString(),
}
if !data.Location.IsNull() {
v := data.Location.ValueString()
site.Location = &v
}
if !data.Address.IsNull() {
v := data.Address.ValueString()
site.Address = &v
}
if !data.Latitude.IsNull() {
v := data.Latitude.ValueFloat64()
site.Latitude = &v
}
if !data.Longitude.IsNull() {
v := data.Longitude.ValueFloat64()
site.Longitude = &v
}
if !data.SNMPCommunity.IsNull() {
v := data.SNMPCommunity.ValueString()
site.SNMPCommunity = &v
}
return site
}
// setSiteOptionalFields maps API response optional fields back to the Terraform model.
func setSiteOptionalFields(data *SiteResourceModel, site *Site) {
if site.Location != nil {
data.Location = types.StringValue(*site.Location)
} else {
data.Location = types.StringNull()
}
if site.Address != nil {
data.Address = types.StringValue(*site.Address)
} else {
data.Address = types.StringNull()
}
if site.Latitude != nil {
data.Latitude = types.Float64Value(*site.Latitude)
} else {
data.Latitude = types.Float64Null()
}
if site.Longitude != nil {
data.Longitude = types.Float64Value(*site.Longitude)
} else {
data.Longitude = types.Float64Null()
}
if site.SNMPCommunity != nil {
data.SNMPCommunity = types.StringValue(*site.SNMPCommunity)
} else {
data.SNMPCommunity = types.StringNull()
}
}