You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
91 lines
3.2 KiB
91 lines
3.2 KiB
package k8ci
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/hashicorp/terraform-plugin-framework-timeouts/datasource/timeouts"
|
|
"github.com/hashicorp/terraform-plugin-framework/datasource"
|
|
"github.com/hashicorp/terraform-plugin-framework/datasource/schema"
|
|
"github.com/hashicorp/terraform-plugin-log/tflog"
|
|
"repository.basistech.ru/BASIS/terraform-provider-dynamix/internal/client"
|
|
"repository.basistech.ru/BASIS/terraform-provider-dynamix/internal/constants"
|
|
"repository.basistech.ru/BASIS/terraform-provider-dynamix/internal/service/cloudbroker/k8ci/flattens"
|
|
"repository.basistech.ru/BASIS/terraform-provider-dynamix/internal/service/cloudbroker/k8ci/models"
|
|
"repository.basistech.ru/BASIS/terraform-provider-dynamix/internal/service/cloudbroker/k8ci/schemas"
|
|
)
|
|
|
|
// Ensure the implementation satisfies the expected interfaces.
|
|
var (
|
|
_ datasource.DataSource = &dataSourceK8CI{}
|
|
)
|
|
|
|
func NewDataSourceK8CI() datasource.DataSource {
|
|
return &dataSourceK8CI{}
|
|
}
|
|
|
|
// dataSourceK8CI is the data source implementation.
|
|
type dataSourceK8CI struct {
|
|
client *client.Client
|
|
}
|
|
|
|
func (d *dataSourceK8CI) Read(ctx context.Context, req datasource.ReadRequest, resp *datasource.ReadResponse) {
|
|
// Read Terraform configuration data into the model
|
|
var state models.DataSourceK8CIModel
|
|
resp.Diagnostics.Append(req.Config.Get(ctx, &state)...)
|
|
if resp.Diagnostics.HasError() {
|
|
tflog.Error(ctx, "Read dataSourceK8CI: Error get state")
|
|
return
|
|
}
|
|
k8ciID := uint64(state.K8ciID.ValueInt64())
|
|
tflog.Info(ctx, "Read dataSourceK8CI: got state successfully", map[string]any{"k8ci_id": k8ciID})
|
|
|
|
// Set timeouts
|
|
readTimeout, diags := state.Timeouts.Read(ctx, constants.Timeout180s)
|
|
resp.Diagnostics.Append(diags...)
|
|
if resp.Diagnostics.HasError() {
|
|
tflog.Error(ctx, "Read dataSourceK8CI: Error set timeout")
|
|
return
|
|
}
|
|
tflog.Info(ctx, "Read dataSourceK8CI: set timeouts successfully", map[string]any{
|
|
"k8ci_id": k8ciID,
|
|
"readTimeout": readTimeout})
|
|
|
|
ctx, cancel := context.WithTimeout(ctx, readTimeout)
|
|
defer cancel()
|
|
|
|
// Map response body to schema
|
|
resp.Diagnostics.Append(flattens.K8CIDataSource(ctx, &state, d.client)...)
|
|
if resp.Diagnostics.HasError() {
|
|
tflog.Error(ctx, "Read dataSourceK8CI: Error flatten")
|
|
return
|
|
}
|
|
|
|
// Set refreshed state
|
|
resp.Diagnostics.Append(resp.State.Set(ctx, &state)...)
|
|
if resp.Diagnostics.HasError() {
|
|
tflog.Error(ctx, "Read dataSourceK8CI: Error set state")
|
|
return
|
|
}
|
|
tflog.Info(ctx, "End read dataSourceK8CI", map[string]any{"k8ci_id": k8ciID})
|
|
}
|
|
|
|
func (d *dataSourceK8CI) Schema(ctx context.Context, _ datasource.SchemaRequest, resp *datasource.SchemaResponse) {
|
|
resp.Schema = schema.Schema{
|
|
Attributes: schemas.MakeSchemaDataSourceK8CI(),
|
|
Blocks: map[string]schema.Block{
|
|
"timeouts": timeouts.Block(ctx),
|
|
},
|
|
}
|
|
}
|
|
|
|
func (d *dataSourceK8CI) Metadata(_ context.Context, req datasource.MetadataRequest, resp *datasource.MetadataResponse) {
|
|
resp.TypeName = req.ProviderTypeName + "_cb_k8ci"
|
|
}
|
|
|
|
// Configure adds the provider configured client to the data source.
|
|
func (d *dataSourceK8CI) Configure(ctx context.Context, req datasource.ConfigureRequest, resp *datasource.ConfigureResponse) {
|
|
tflog.Info(ctx, "Get Configure dataSourceK8CI")
|
|
d.client = client.DataSource(ctx, &req, resp)
|
|
tflog.Info(ctx, "Getting Configure dataSourceK8ci successfully")
|
|
}
|