The charter file carried a tool-specific name while being the repository's own document: mission, non-negotiable constraints, the pinned stack, repo conventions and phase status, cited as authority by thirty files across the agent, api, deploy, docs, search and terraform trees. PROJECT-SPEC.md says what it is. All 42 references are updated in the same commit, including the relative link in docs/status.md, so nothing points at a filename that no longer exists.
146 lines
5.3 KiB
Go
146 lines
5.3 KiB
Go
// Package provider is Cairn OBS's Terraform provider implementation,
|
|
// built on HashiCorp's terraform-plugin-framework (not the legacy
|
|
// SDKv2 -- the framework is the actively-developed, currently-
|
|
// recommended library for a provider started from scratch, matching
|
|
// PROJECT-SPEC.md's "prefer boring, well-understood dependencies" read
|
|
// forward rather than backward).
|
|
package provider
|
|
|
|
import (
|
|
"context"
|
|
"os"
|
|
|
|
"github.com/hashicorp/terraform-plugin-framework/datasource"
|
|
"github.com/hashicorp/terraform-plugin-framework/provider"
|
|
"github.com/hashicorp/terraform-plugin-framework/provider/schema"
|
|
"github.com/hashicorp/terraform-plugin-framework/resource"
|
|
"github.com/hashicorp/terraform-plugin-framework/types"
|
|
)
|
|
|
|
var _ provider.Provider = &cairnobsProvider{}
|
|
|
|
// New matches providerserver.Serve's expected constructor shape --
|
|
// version is threaded through from main.go's -ldflags-injected build
|
|
// version.
|
|
func New(version string) func() provider.Provider {
|
|
return func() provider.Provider {
|
|
return &cairnobsProvider{version: version}
|
|
}
|
|
}
|
|
|
|
type cairnobsProvider struct {
|
|
version string
|
|
}
|
|
|
|
type cairnobsProviderModel struct {
|
|
Endpoint types.String `tfsdk:"endpoint"`
|
|
AlertingEndpoint types.String `tfsdk:"alerting_endpoint"`
|
|
Token types.String `tfsdk:"token"`
|
|
}
|
|
|
|
// providerData is what Configure hands resources/data sources via
|
|
// req.ProviderData -- two separate clients, not one, because `alerting`
|
|
// is a genuinely separate service with its own base URL (its own
|
|
// REST API, its own port, sometimes its own deployment) -- same split
|
|
// web/src/lib/api.ts's apiBase/alertingBase and cli/cmd/cairnobsctl's
|
|
// --api/--alerting-api already draw, not something invented for this
|
|
// provider.
|
|
type providerData struct {
|
|
api *client
|
|
alerting *client
|
|
}
|
|
|
|
func (p *cairnobsProvider) Metadata(_ context.Context, _ provider.MetadataRequest, resp *provider.MetadataResponse) {
|
|
resp.TypeName = "cairnobs"
|
|
resp.Version = p.version
|
|
}
|
|
|
|
func (p *cairnobsProvider) Schema(_ context.Context, _ provider.SchemaRequest, resp *provider.SchemaResponse) {
|
|
resp.Schema = schema.Schema{
|
|
Description: "Manages Cairn OBS log-aggregation-platform resources. Dashboards, alert rules, and notification targets for now -- tenant/RBAC resources are real, disclosed future work, not built in this pass; see the provider README.",
|
|
Attributes: map[string]schema.Attribute{
|
|
"endpoint": schema.StringAttribute{
|
|
Optional: true,
|
|
Description: "Base URL of the api service, e.g. \"http://localhost:8080\". Defaults to " +
|
|
"$CAIRNOBS_API_ENDPOINT, or \"http://localhost:8080\" if that's unset too -- same " +
|
|
"default cairnobsctl's --api/$CAIRNOBSCTL_API_URL uses (cli/cmd/cairnobsctl/main.go).",
|
|
},
|
|
"alerting_endpoint": schema.StringAttribute{
|
|
Optional: true,
|
|
Description: "Base URL of the alerting service, e.g. \"http://localhost:8081\" -- a " +
|
|
"separate service from api, not a path under endpoint above (see " +
|
|
"/docs/phase-3-alerting-design.md's component boundary). Defaults to " +
|
|
"$CAIRNOBS_ALERTING_API_ENDPOINT, or \"http://localhost:8081\" if that's unset too -- " +
|
|
"same default cairnobsctl's --alerting-api/$CAIRNOBSCTL_ALERTING_API_URL uses.",
|
|
},
|
|
"token": schema.StringAttribute{
|
|
Optional: true,
|
|
Sensitive: true,
|
|
Description: "Bearer credential sent as \"Authorization: Bearer <token>\" on every request " +
|
|
"-- required once a deployment configures enterprise-auth (see " +
|
|
"/docs/phase-4-rbac-design.md), same as cairnobsctl's $CAIRNOBSCTL_TOKEN. Defaults to " +
|
|
"$CAIRNOBS_API_TOKEN if unset. Set via a variable or environment, never a literal in a " +
|
|
".tf file committed to version control.",
|
|
},
|
|
},
|
|
}
|
|
}
|
|
|
|
// Configure resolves endpoint/token the same precedence order
|
|
// cairnobsctl's resolveAPIURL/resolveToken use (explicit config value,
|
|
// then an environment variable, then a hardcoded default) so behavior
|
|
// stays predictable across both of this project's Cairn OBS API clients.
|
|
func (p *cairnobsProvider) Configure(ctx context.Context, req provider.ConfigureRequest, resp *provider.ConfigureResponse) {
|
|
var config cairnobsProviderModel
|
|
resp.Diagnostics.Append(req.Config.Get(ctx, &config)...)
|
|
if resp.Diagnostics.HasError() {
|
|
return
|
|
}
|
|
|
|
endpoint := config.Endpoint.ValueString()
|
|
if endpoint == "" {
|
|
endpoint = os.Getenv("CAIRNOBS_API_ENDPOINT")
|
|
}
|
|
if endpoint == "" {
|
|
endpoint = "http://localhost:8080"
|
|
}
|
|
|
|
alertingEndpoint := config.AlertingEndpoint.ValueString()
|
|
if alertingEndpoint == "" {
|
|
alertingEndpoint = os.Getenv("CAIRNOBS_ALERTING_API_ENDPOINT")
|
|
}
|
|
if alertingEndpoint == "" {
|
|
alertingEndpoint = "http://localhost:8081"
|
|
}
|
|
|
|
token := config.Token.ValueString()
|
|
if token == "" {
|
|
token = os.Getenv("CAIRNOBS_API_TOKEN")
|
|
}
|
|
|
|
data := &providerData{
|
|
api: newClient(endpoint, token),
|
|
alerting: newClient(alertingEndpoint, token),
|
|
}
|
|
resp.DataSourceData = data
|
|
resp.ResourceData = data
|
|
}
|
|
|
|
func (p *cairnobsProvider) Resources(_ context.Context) []func() resource.Resource {
|
|
return []func() resource.Resource{
|
|
newDashboardResource,
|
|
newDashboardPanelResource,
|
|
newAlertRuleResource,
|
|
newNotificationTargetResource,
|
|
}
|
|
}
|
|
|
|
func (p *cairnobsProvider) DataSources(_ context.Context) []func() datasource.DataSource {
|
|
return []func() datasource.DataSource{
|
|
newDashboardDataSource,
|
|
newDashboardPanelDataSource,
|
|
newAlertRuleDataSource,
|
|
newNotificationTargetDataSource,
|
|
}
|
|
}
|