85 lines
2.4 KiB
Go
85 lines
2.4 KiB
Go
package provider
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"git.adyxax.org/adyxax/terraform-provider-eventline/external/evcli"
|
|
"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"
|
|
)
|
|
|
|
type Provider struct {
|
|
version string
|
|
}
|
|
|
|
var _ provider.Provider = &Provider{} // Ensure provider defined types fully satisfy framework interfaces.
|
|
func New(version string) func() provider.Provider {
|
|
return func() provider.Provider {
|
|
return &Provider{
|
|
version: version,
|
|
}
|
|
}
|
|
}
|
|
|
|
type ProviderModel struct {
|
|
ApiKey types.String `tfsdk:"api_key"`
|
|
Endpoint types.String `tfsdk:"endpoint"`
|
|
}
|
|
|
|
func (p *Provider) Metadata(ctx context.Context, req provider.MetadataRequest, resp *provider.MetadataResponse) {
|
|
resp.TypeName = "eventline"
|
|
resp.Version = p.version
|
|
}
|
|
|
|
func (p *Provider) Schema(ctx context.Context, req provider.SchemaRequest, resp *provider.SchemaResponse) {
|
|
resp.Schema = schema.Schema{
|
|
Attributes: map[string]schema.Attribute{
|
|
"api_key": schema.StringAttribute{
|
|
MarkdownDescription: "Eventline's api key",
|
|
Required: true,
|
|
Sensitive: true,
|
|
},
|
|
"endpoint": schema.StringAttribute{
|
|
MarkdownDescription: "Eventline's HTTP endpoint",
|
|
Required: true,
|
|
},
|
|
},
|
|
}
|
|
}
|
|
|
|
func (p *Provider) Configure(ctx context.Context, req provider.ConfigureRequest, resp *provider.ConfigureResponse) {
|
|
var data ProviderModel
|
|
resp.Diagnostics.Append(req.Config.Get(ctx, &data)...)
|
|
if resp.Diagnostics.HasError() {
|
|
return
|
|
}
|
|
config := evcli.APIConfig{Endpoint: data.Endpoint.ValueString(), Key: data.ApiKey.ValueString()}
|
|
client, err := evcli.NewClient(&config)
|
|
if err != nil {
|
|
resp.Diagnostics.AddError("new api client", fmt.Sprintf("Unable to instantiate eventline api client, got error: %s", err))
|
|
return
|
|
}
|
|
|
|
resp.DataSourceData = client
|
|
resp.ResourceData = client
|
|
}
|
|
|
|
func (p *Provider) Resources(ctx context.Context) []func() resource.Resource {
|
|
return []func() resource.Resource{
|
|
NewIdentityResource,
|
|
NewProjectResource,
|
|
}
|
|
}
|
|
|
|
func (p *Provider) DataSources(ctx context.Context) []func() datasource.DataSource {
|
|
return []func() datasource.DataSource{
|
|
NewIdentitiesDataSource,
|
|
NewJobsDataSource,
|
|
NewProjectDataSource,
|
|
NewProjectsDataSource,
|
|
}
|
|
}
|