488 lines
30 KiB
Go
488 lines
30 KiB
Go
package resources_gen
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"strings"
|
|
|
|
"terraform-provider-nubes/internal/core"
|
|
"terraform-provider-nubes/internal/resources_core"
|
|
|
|
"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/booldefault"
|
|
"github.com/hashicorp/terraform-plugin-framework/resource/schema/int64default"
|
|
"github.com/hashicorp/terraform-plugin-framework/resource/schema/planmodifier"
|
|
"github.com/hashicorp/terraform-plugin-framework/resource/schema/stringdefault"
|
|
"github.com/hashicorp/terraform-plugin-framework/resource/schema/stringplanmodifier"
|
|
"github.com/hashicorp/terraform-plugin-framework/types"
|
|
)
|
|
|
|
// Code generated by tools/gen_v2. DO NOT EDIT.
|
|
// Service: clickhouse
|
|
// Service ID: 120
|
|
|
|
var _ resource.Resource = &ClickhouseResource{}
|
|
var _ resource.ResourceWithModifyPlan = &ClickhouseResource{}
|
|
var _ resource.ResourceWithImportState = &ClickhouseResource{}
|
|
|
|
type ClickhouseResource struct {
|
|
client *core.UniversalClient
|
|
}
|
|
|
|
// ClickhouseAccessConfigurationModel — вложенная модель для map-fixed параметра accessConfiguration.
|
|
type ClickhouseAccessConfigurationModel struct {
|
|
MasterIpSpace types.String `tfsdk:"master_ip_space" json:"masterIpSpace"`
|
|
MasterAccessList types.String `tfsdk:"master_access_list" json:"masterAccessList"`
|
|
}
|
|
|
|
// ClickhouseAutoscaleConfigurationModel — вложенная модель для map-fixed параметра autoscaleConfiguration.
|
|
type ClickhouseAutoscaleConfigurationModel struct {
|
|
Enabled types.Bool `tfsdk:"enabled" json:"enabled"`
|
|
Schedule types.Int64 `tfsdk:"schedule" json:"schedule"`
|
|
Quota types.Int64 `tfsdk:"quota" json:"quota"`
|
|
Percent types.Int64 `tfsdk:"percent" json:"percent"`
|
|
}
|
|
|
|
// ClickhouseBackupConfigurationModel — вложенная модель для map-fixed параметра backupConfiguration.
|
|
type ClickhouseBackupConfigurationModel struct {
|
|
S3Uid types.String `tfsdk:"s3_uid" json:"s3Uid"`
|
|
Retain types.Int64 `tfsdk:"retain" json:"retain"`
|
|
Schedule types.String `tfsdk:"schedule" json:"schedule"`
|
|
}
|
|
|
|
// ClickhouseClickhouseConfigurationModel — вложенная модель для map-fixed параметра clickhouseConfiguration.
|
|
type ClickhouseClickhouseConfigurationModel struct {
|
|
Version types.String `tfsdk:"version" json:"version"`
|
|
}
|
|
|
|
// ClickhouseClickhouseKeeperConfigurationModel — вложенная модель для map-fixed параметра clickhouseKeeperConfiguration.
|
|
type ClickhouseClickhouseKeeperConfigurationModel struct {
|
|
Cpu types.Int64 `tfsdk:"cpu" json:"cpu"`
|
|
Memory types.Int64 `tfsdk:"memory" json:"memory"`
|
|
Replicas types.Int64 `tfsdk:"replicas" json:"replicas"`
|
|
}
|
|
|
|
// ClickhouseClusterConfigurationModel — вложенная модель для map-fixed параметра clusterConfiguration.
|
|
type ClickhouseClusterConfigurationModel struct {
|
|
Memory types.Int64 `tfsdk:"memory" json:"memory"`
|
|
Replicas types.Int64 `tfsdk:"replicas" json:"replicas"`
|
|
Shards types.Int64 `tfsdk:"shards" json:"shards"`
|
|
Disk types.Int64 `tfsdk:"disk" json:"disk"`
|
|
Cpu types.Int64 `tfsdk:"cpu" json:"cpu"`
|
|
}
|
|
|
|
// ClickhouseStartupConfigurationModel — вложенная модель для map-fixed параметра startupConfiguration.
|
|
type ClickhouseStartupConfigurationModel struct {
|
|
ResourceRealm types.String `tfsdk:"resource_realm" json:"resourceRealm"`
|
|
}
|
|
|
|
type ClickhouseModel struct {
|
|
ID types.String `tfsdk:"id"`
|
|
ResourceName types.String `tfsdk:"resource_name"`
|
|
OperationTimeout types.String `tfsdk:"operation_timeout"`
|
|
LogLevel types.String `tfsdk:"log_level"`
|
|
AccessConfiguration *ClickhouseAccessConfigurationModel `tfsdk:"access_configuration"`
|
|
AutoscaleConfiguration *ClickhouseAutoscaleConfigurationModel `tfsdk:"autoscale_configuration"`
|
|
BackupConfiguration *ClickhouseBackupConfigurationModel `tfsdk:"backup_configuration"`
|
|
ClickhouseConfiguration *ClickhouseClickhouseConfigurationModel `tfsdk:"clickhouse_configuration"`
|
|
ClickhouseFilesConfiguration types.String `tfsdk:"clickhouse_files_configuration"`
|
|
ClickhouseKeeperConfiguration *ClickhouseClickhouseKeeperConfigurationModel `tfsdk:"clickhouse_keeper_configuration"`
|
|
ClusterConfiguration *ClickhouseClusterConfigurationModel `tfsdk:"cluster_configuration"`
|
|
StartupConfiguration *ClickhouseStartupConfigurationModel `tfsdk:"startup_configuration"`
|
|
SuspendOnDestroy types.Bool `tfsdk:"suspend_on_destroy"`
|
|
AdoptExistingOnCreate types.Bool `tfsdk:"adopt_existing_on_create"`
|
|
StateParams types.Map `tfsdk:"state_params"`
|
|
StateOut types.Map `tfsdk:"state_out"`
|
|
StateParamsFlat types.Map `tfsdk:"state_params_flat"`
|
|
StateOutFlat types.Map `tfsdk:"state_out_flat"`
|
|
VaultSecrets types.Map `tfsdk:"vault_secrets"`
|
|
VaultUrl types.String `tfsdk:"vault_url"`
|
|
VaultUserPath types.String `tfsdk:"vault_user_path"`
|
|
VaultFields types.List `tfsdk:"vault_fields"`
|
|
}
|
|
|
|
func NewClickhouseResource() resource.Resource {
|
|
return &ClickhouseResource{}
|
|
}
|
|
|
|
func (r *ClickhouseResource) Metadata(ctx context.Context, req resource.MetadataRequest, resp *resource.MetadataResponse) {
|
|
resp.TypeName = req.ProviderTypeName + "_clickhouse"
|
|
}
|
|
|
|
func (r *ClickhouseResource) Schema(ctx context.Context, req resource.SchemaRequest, resp *resource.SchemaResponse) {
|
|
attrs := map[string]schema.Attribute{
|
|
"id": schema.StringAttribute{Computed: true, PlanModifiers: []planmodifier.String{stringplanmodifier.UseStateForUnknown()}},
|
|
"resource_name": schema.StringAttribute{Required: true},
|
|
"operation_timeout": schema.StringAttribute{Optional: true},
|
|
"log_level": schema.StringAttribute{Optional: true, MarkdownDescription: "Operation stages log level: none (default), info, debug. Overrides provider-level log_level."},
|
|
"access_configuration": schema.SingleNestedAttribute{Required: true,
|
|
Attributes: map[string]schema.Attribute{
|
|
"master_ip_space": schema.StringAttribute{Required: true, MarkdownDescription: "Из какого Ip-Space резервировать внешний IP<br/>Список предоставляется из Организации, в котором развёрнута ресурсная платформа"},
|
|
"master_access_list": schema.StringAttribute{Optional: true, Computed: true, Default: stringdefault.StaticString("[]"), MarkdownDescription: "Необходимо настраивать, когда зарезервирован внешний адрес<br/>Если передан пустой массив, доступ выделяется всем"},
|
|
}},
|
|
"autoscale_configuration": schema.SingleNestedAttribute{Required: true,
|
|
Attributes: map[string]schema.Attribute{
|
|
"enabled": schema.BoolAttribute{Optional: true, Computed: true, Default: booldefault.StaticBool(false), MarkdownDescription: "Включает автоскейлинг PV. При включении параметра необходимо настроить autoScalePercentage и autoScaleTechWindow. Алерт при срабатывании вызывает modify у текущей услуги"},
|
|
"schedule": schema.Int64Attribute{Optional: true, Computed: true, Default: int64default.StaticInt64(0), MarkdownDescription: "Требует включения autoScale. Окно обновления (пока не реализовано). Указывается час в виде Integer (0 / 5 / 12 / 23)"},
|
|
"quota": schema.Int64Attribute{Optional: true, Computed: true, Default: int64default.StaticInt64(100), MarkdownDescription: "До какого размера возможно увеличивать диск, когда включен Autoscale"},
|
|
"percent": schema.Int64Attribute{Optional: true, Computed: true, Default: int64default.StaticInt64(10), MarkdownDescription: "Требует включения autoScale. Позволяет указать в процентах расширение от текущего макс объема<br/>Минимальный размер на который расширяется - **1Gb**"},
|
|
}},
|
|
"backup_configuration": schema.SingleNestedAttribute{Required: true,
|
|
Attributes: map[string]schema.Attribute{
|
|
"s3_uid": schema.StringAttribute{Required: true, MarkdownDescription: "Экземпляр S3 обязателен"},
|
|
"retain": schema.Int64Attribute{Optional: true, Computed: true, Default: int64default.StaticInt64(7)},
|
|
"schedule": schema.StringAttribute{Optional: true, Computed: true, Default: stringdefault.StaticString("0 0 * * *")},
|
|
}},
|
|
"clickhouse_configuration": schema.SingleNestedAttribute{Required: true,
|
|
Attributes: map[string]schema.Attribute{
|
|
"version": schema.StringAttribute{Optional: true, Computed: true, Default: stringdefault.StaticString("25.10")},
|
|
}},
|
|
"clickhouse_files_configuration": schema.StringAttribute{Optional: true, MarkdownDescription: "Формат:<br/> - path: somethings3.xml<br/> xmlConfig: '<clickhouse>......</clickhouse>'"},
|
|
"clickhouse_keeper_configuration": schema.SingleNestedAttribute{Required: true,
|
|
Attributes: map[string]schema.Attribute{
|
|
"cpu": schema.Int64Attribute{Optional: true, Computed: true, Default: int64default.StaticInt64(500), MarkdownDescription: "Указывается в Milicores<br/>`1000` Mili == `1` Ядро"},
|
|
"memory": schema.Int64Attribute{Optional: true, Computed: true, Default: int64default.StaticInt64(512), MarkdownDescription: "Указывается в Megabytes"},
|
|
"replicas": schema.Int64Attribute{Optional: true, Computed: true, Default: int64default.StaticInt64(0), MarkdownDescription: "Если указан 0, то инстансы ClickHouse Keeper развёрнуты не будут"},
|
|
}},
|
|
"cluster_configuration": schema.SingleNestedAttribute{Required: true,
|
|
Attributes: map[string]schema.Attribute{
|
|
"memory": schema.Int64Attribute{Optional: true, Computed: true, Default: int64default.StaticInt64(2048), MarkdownDescription: "Указывается в Megabytes"},
|
|
"replicas": schema.Int64Attribute{Optional: true, Computed: true, Default: int64default.StaticInt64(1)},
|
|
"shards": schema.Int64Attribute{Optional: true, Computed: true, Default: int64default.StaticInt64(1), MarkdownDescription: "**Шард** - это часть данных, разделенная на разные узлы (серверы) для горизонтального масштабирования и обработки больших объемов информации. <br/>**Реплика** - это точная копия данных внутри одного шарда"},
|
|
"disk": schema.Int64Attribute{Optional: true, Computed: true, Default: int64default.StaticInt64(10), MarkdownDescription: "Указывается в GIGAbytes"},
|
|
"cpu": schema.Int64Attribute{Optional: true, Computed: true, Default: int64default.StaticInt64(1000), MarkdownDescription: "Указывается в Milicores<br/>`1000` Mili == `1` Ядро"},
|
|
}},
|
|
"startup_configuration": schema.SingleNestedAttribute{Required: true,
|
|
Attributes: map[string]schema.Attribute{
|
|
"resource_realm": schema.StringAttribute{Required: true, MarkdownDescription: "Кластер Kubernetes, на котором будет развернут экземпляр"},
|
|
}},
|
|
"suspend_on_destroy": schema.BoolAttribute{Optional: true, Computed: true, Default: booldefault.StaticBool(true)},
|
|
"adopt_existing_on_create": schema.BoolAttribute{Optional: true, Computed: true, Default: booldefault.StaticBool(false)},
|
|
"state_params": schema.MapAttribute{Computed: true, ElementType: types.StringType},
|
|
"state_out": schema.MapAttribute{Computed: true, ElementType: types.StringType},
|
|
"state_params_flat": schema.MapAttribute{Computed: true, ElementType: types.StringType},
|
|
"state_out_flat": schema.MapAttribute{Computed: true, ElementType: types.StringType},
|
|
"vault_secrets": schema.MapAttribute{Computed: true, ElementType: types.StringType, Sensitive: true},
|
|
"vault_url": schema.StringAttribute{Computed: true},
|
|
"vault_user_path": schema.StringAttribute{Computed: true},
|
|
"vault_fields": schema.ListAttribute{Computed: true, ElementType: types.StringType},
|
|
}
|
|
|
|
resp.Schema = schema.Schema{Attributes: attrs}
|
|
}
|
|
|
|
func (r *ClickhouseResource) ModifyPlan(ctx context.Context, req resource.ModifyPlanRequest, resp *resource.ModifyPlanResponse) {
|
|
if r.client == nil {
|
|
return
|
|
}
|
|
|
|
var config *ClickhouseModel
|
|
resp.Diagnostics.Append(req.Config.Get(ctx, &config)...)
|
|
if resp.Diagnostics.HasError() {
|
|
return
|
|
}
|
|
if config == nil {
|
|
return
|
|
}
|
|
|
|
var state *ClickhouseModel
|
|
resp.Diagnostics.Append(req.State.Get(ctx, &state)...)
|
|
if resp.Diagnostics.HasError() {
|
|
return
|
|
}
|
|
if req.State.Raw.IsNull() && req.Plan.Raw.IsNull() {
|
|
return
|
|
}
|
|
|
|
if state != nil && !state.ID.IsNull() && !state.ID.IsUnknown() {
|
|
var plan ClickhouseModel
|
|
resp.Diagnostics.Append(req.Plan.Get(ctx, &plan)...)
|
|
if resp.Diagnostics.HasError() {
|
|
return
|
|
}
|
|
if !plan.ResourceName.IsNull() && !plan.ResourceName.IsUnknown() && !state.ResourceName.IsNull() && !state.ResourceName.IsUnknown() {
|
|
if plan.ResourceName.ValueString() != state.ResourceName.ValueString() {
|
|
resp.Diagnostics.AddError("Нельзя изменить resource_name", "Параметр resource_name задается при создании и не может быть изменен. Создайте новый ресурс с другим именем.")
|
|
return
|
|
}
|
|
}
|
|
return
|
|
}
|
|
|
|
if config.ResourceName.IsNull() || config.ResourceName.IsUnknown() {
|
|
return
|
|
}
|
|
adoptExistingOnCreate := false
|
|
if !config.AdoptExistingOnCreate.IsNull() && !config.AdoptExistingOnCreate.IsUnknown() {
|
|
adoptExistingOnCreate = config.AdoptExistingOnCreate.ValueBool()
|
|
}
|
|
params := map[int]string{
|
|
837: resources_core.BuildJSON(map[string]string{"resourceRealm": fmt.Sprintf("\"%s\"", config.StartupConfiguration.ResourceRealm.ValueString())}),
|
|
838: resources_core.BuildJSON(map[string]string{"memory": fmt.Sprintf("%d", config.ClusterConfiguration.Memory.ValueInt64()), "replicas": fmt.Sprintf("%d", config.ClusterConfiguration.Replicas.ValueInt64()), "shards": fmt.Sprintf("%d", config.ClusterConfiguration.Shards.ValueInt64()), "disk": fmt.Sprintf("%d", config.ClusterConfiguration.Disk.ValueInt64()), "cpu": fmt.Sprintf("%d", config.ClusterConfiguration.Cpu.ValueInt64())}),
|
|
839: resources_core.BuildJSON(map[string]string{"masterIpSpace": fmt.Sprintf("\"%s\"", config.AccessConfiguration.MasterIpSpace.ValueString()), "masterAccessList": fmt.Sprintf("\"%s\"", config.AccessConfiguration.MasterAccessList.ValueString())}),
|
|
840: resources_core.BuildJSON(map[string]string{"cpu": fmt.Sprintf("%d", config.ClickhouseKeeperConfiguration.Cpu.ValueInt64()), "memory": fmt.Sprintf("%d", config.ClickhouseKeeperConfiguration.Memory.ValueInt64()), "replicas": fmt.Sprintf("%d", config.ClickhouseKeeperConfiguration.Replicas.ValueInt64())}),
|
|
841: resources_core.BuildJSON(map[string]string{"version": fmt.Sprintf("\"%s\"", config.ClickhouseConfiguration.Version.ValueString())}),
|
|
842: resources_core.BuildJSON(map[string]string{"s3Uid": fmt.Sprintf("\"%s\"", config.BackupConfiguration.S3Uid.ValueString()), "retain": fmt.Sprintf("%d", config.BackupConfiguration.Retain.ValueInt64()), "schedule": fmt.Sprintf("\"%s\"", config.BackupConfiguration.Schedule.ValueString())}),
|
|
843: resources_core.BuildJSON(map[string]string{"enabled": fmt.Sprintf("%v", config.AutoscaleConfiguration.Enabled.ValueBool()), "schedule": fmt.Sprintf("%d", config.AutoscaleConfiguration.Schedule.ValueInt64()), "quota": fmt.Sprintf("%d", config.AutoscaleConfiguration.Quota.ValueInt64()), "percent": fmt.Sprintf("%d", config.AutoscaleConfiguration.Percent.ValueInt64())}),
|
|
851: resources_core.FormatString(config.ClickhouseFilesConfiguration),
|
|
}
|
|
desiredDomain := ""
|
|
domainServiceIDs := []int{81, 82, 88, 96, 97, 98, 99, 119, 149, 151, 153}
|
|
|
|
resp.Diagnostics.Append(resources_core.PlanExistingResourceDiagnosticsWithParamsAndDomainAndServices(ctx, r.client, 120, config.ResourceName.ValueString(), adoptExistingOnCreate, params, desiredDomain, domainServiceIDs)...)
|
|
}
|
|
|
|
func (r *ClickhouseResource) Create(ctx context.Context, req resource.CreateRequest, resp *resource.CreateResponse) {
|
|
var data ClickhouseModel
|
|
resp.Diagnostics.Append(req.Plan.Get(ctx, &data)...)
|
|
if resp.Diagnostics.HasError() {
|
|
return
|
|
}
|
|
|
|
resourceName := data.ResourceName.ValueString()
|
|
desiredDomain := ""
|
|
domainServiceIDs := []int{81, 82, 88, 96, 97, 98, 99, 119, 149, 151, 153}
|
|
resp.Diagnostics.Append(resources_core.CreateExistingResourceDiagnosticsWithDomainAndServices(ctx, r.client, 120, resourceName, data.AdoptExistingOnCreate.ValueBool(), desiredDomain, domainServiceIDs)...)
|
|
// ⛔ Проверяем HasError ДО create — при hard-error (running без adopt, suspend без adopt,
|
|
// not created, конфликт) сайд-эффект create не должен выполняться.
|
|
if resp.Diagnostics.HasError() {
|
|
return
|
|
}
|
|
|
|
params := map[int]string{
|
|
837: resources_core.BuildJSON(map[string]string{"resourceRealm": fmt.Sprintf("\"%s\"", data.StartupConfiguration.ResourceRealm.ValueString())}),
|
|
838: resources_core.BuildJSON(map[string]string{"memory": fmt.Sprintf("%d", data.ClusterConfiguration.Memory.ValueInt64()), "replicas": fmt.Sprintf("%d", data.ClusterConfiguration.Replicas.ValueInt64()), "shards": fmt.Sprintf("%d", data.ClusterConfiguration.Shards.ValueInt64()), "disk": fmt.Sprintf("%d", data.ClusterConfiguration.Disk.ValueInt64()), "cpu": fmt.Sprintf("%d", data.ClusterConfiguration.Cpu.ValueInt64())}),
|
|
839: resources_core.BuildJSON(map[string]string{"masterIpSpace": fmt.Sprintf("\"%s\"", data.AccessConfiguration.MasterIpSpace.ValueString()), "masterAccessList": fmt.Sprintf("\"%s\"", data.AccessConfiguration.MasterAccessList.ValueString())}),
|
|
840: resources_core.BuildJSON(map[string]string{"cpu": fmt.Sprintf("%d", data.ClickhouseKeeperConfiguration.Cpu.ValueInt64()), "memory": fmt.Sprintf("%d", data.ClickhouseKeeperConfiguration.Memory.ValueInt64()), "replicas": fmt.Sprintf("%d", data.ClickhouseKeeperConfiguration.Replicas.ValueInt64())}),
|
|
841: resources_core.BuildJSON(map[string]string{"version": fmt.Sprintf("\"%s\"", data.ClickhouseConfiguration.Version.ValueString())}),
|
|
842: resources_core.BuildJSON(map[string]string{"s3Uid": fmt.Sprintf("\"%s\"", data.BackupConfiguration.S3Uid.ValueString()), "retain": fmt.Sprintf("%d", data.BackupConfiguration.Retain.ValueInt64()), "schedule": fmt.Sprintf("\"%s\"", data.BackupConfiguration.Schedule.ValueString())}),
|
|
843: resources_core.BuildJSON(map[string]string{"enabled": fmt.Sprintf("%v", data.AutoscaleConfiguration.Enabled.ValueBool()), "schedule": fmt.Sprintf("%d", data.AutoscaleConfiguration.Schedule.ValueInt64()), "quota": fmt.Sprintf("%d", data.AutoscaleConfiguration.Quota.ValueInt64()), "percent": fmt.Sprintf("%d", data.AutoscaleConfiguration.Percent.ValueInt64())}),
|
|
851: resources_core.FormatString(data.ClickhouseFilesConfiguration),
|
|
}
|
|
|
|
operationTimeout := ""
|
|
if !data.OperationTimeout.IsNull() && !data.OperationTimeout.IsUnknown() {
|
|
operationTimeout = data.OperationTimeout.ValueString()
|
|
}
|
|
if !data.LogLevel.IsNull() && !data.LogLevel.IsUnknown() {
|
|
ctx = core.CtxWithLogLevel(ctx, data.LogLevel.ValueString())
|
|
}
|
|
id, err := resources_core.CreateResourceWithTimeout(ctx, r.client, 120, resourceName, data.AdoptExistingOnCreate.ValueBool(), params, operationTimeout)
|
|
if err != nil {
|
|
resp.Diagnostics.AddError("Ошибка клиента", err.Error())
|
|
return
|
|
}
|
|
data.ID = types.StringValue(id)
|
|
|
|
state, diags := resources_core.RefreshResourceState(ctx, r.client, id, 120, data, []resources_core.StateField{
|
|
{Code: "state_params"},
|
|
{Code: "state_out"},
|
|
{Code: "state_params_flat"},
|
|
{Code: "state_out_flat"},
|
|
{Code: "vault_secrets"},
|
|
{Code: "vault_url"},
|
|
{Code: "vault_user_path"},
|
|
{Code: "vault_fields"},
|
|
}, []resources_core.InputField{
|
|
{Code: "accessConfiguration", Field: "AccessConfiguration", Type: "map-fixed"},
|
|
{Code: "autoscaleConfiguration", Field: "AutoscaleConfiguration", Type: "map-fixed"},
|
|
{Code: "backupConfiguration", Field: "BackupConfiguration", Type: "map-fixed"},
|
|
{Code: "clickhouseConfiguration", Field: "ClickhouseConfiguration", Type: "map-fixed"},
|
|
{Code: "clickhouseFilesConfiguration", Field: "ClickhouseFilesConfiguration", Type: "array-map-fixed"},
|
|
{Code: "clickhouseKeeperConfiguration", Field: "ClickhouseKeeperConfiguration", Type: "map-fixed"},
|
|
{Code: "clusterConfiguration", Field: "ClusterConfiguration", Type: "map-fixed"},
|
|
{Code: "startupConfiguration", Field: "StartupConfiguration", Type: "map-fixed"},
|
|
})
|
|
resp.Diagnostics.Append(diags...)
|
|
if resp.Diagnostics.HasError() {
|
|
return
|
|
}
|
|
|
|
resp.Diagnostics.Append(resp.State.Set(ctx, &state)...)
|
|
}
|
|
|
|
func (r *ClickhouseResource) Read(ctx context.Context, req resource.ReadRequest, resp *resource.ReadResponse) {
|
|
var state ClickhouseModel
|
|
resp.Diagnostics.Append(req.State.Get(ctx, &state)...)
|
|
if resp.Diagnostics.HasError() {
|
|
return
|
|
}
|
|
if state.ID.IsNull() || state.ID.IsUnknown() {
|
|
return
|
|
}
|
|
if r.client != nil {
|
|
remove, err := resources_core.ShouldRemoveFromState(ctx, r.client, state.ID.ValueString())
|
|
if err != nil {
|
|
resp.Diagnostics.AddError("Ошибка клиента", err.Error())
|
|
return
|
|
}
|
|
if remove {
|
|
resp.State.RemoveResource(ctx)
|
|
return
|
|
}
|
|
}
|
|
|
|
newState, diags := resources_core.RefreshResourceState(ctx, r.client, state.ID.ValueString(), 120, state, []resources_core.StateField{
|
|
{Code: "state_params"},
|
|
{Code: "state_out"},
|
|
{Code: "state_params_flat"},
|
|
{Code: "state_out_flat"},
|
|
{Code: "vault_secrets"},
|
|
{Code: "vault_url"},
|
|
{Code: "vault_user_path"},
|
|
{Code: "vault_fields"},
|
|
}, []resources_core.InputField{
|
|
{Code: "accessConfiguration", Field: "AccessConfiguration", Type: "map-fixed"},
|
|
{Code: "autoscaleConfiguration", Field: "AutoscaleConfiguration", Type: "map-fixed"},
|
|
{Code: "backupConfiguration", Field: "BackupConfiguration", Type: "map-fixed"},
|
|
{Code: "clickhouseConfiguration", Field: "ClickhouseConfiguration", Type: "map-fixed"},
|
|
{Code: "clickhouseFilesConfiguration", Field: "ClickhouseFilesConfiguration", Type: "array-map-fixed"},
|
|
{Code: "clickhouseKeeperConfiguration", Field: "ClickhouseKeeperConfiguration", Type: "map-fixed"},
|
|
{Code: "clusterConfiguration", Field: "ClusterConfiguration", Type: "map-fixed"},
|
|
{Code: "startupConfiguration", Field: "StartupConfiguration", Type: "map-fixed"},
|
|
})
|
|
resp.Diagnostics.Append(diags...)
|
|
if resp.Diagnostics.HasError() {
|
|
return
|
|
}
|
|
|
|
resp.Diagnostics.Append(resp.State.Set(ctx, &newState)...)
|
|
}
|
|
|
|
func (r *ClickhouseResource) Update(ctx context.Context, req resource.UpdateRequest, resp *resource.UpdateResponse) {
|
|
var plan ClickhouseModel
|
|
var state ClickhouseModel
|
|
resp.Diagnostics.Append(req.Plan.Get(ctx, &plan)...)
|
|
resp.Diagnostics.Append(req.State.Get(ctx, &state)...)
|
|
if resp.Diagnostics.HasError() {
|
|
return
|
|
}
|
|
|
|
instanceID := state.ID
|
|
if instanceID.IsNull() || instanceID.IsUnknown() {
|
|
instanceID = plan.ID
|
|
}
|
|
if instanceID.IsNull() || instanceID.IsUnknown() {
|
|
resp.Diagnostics.AddError("Ошибка клиента", "отсутствует идентификатор экземпляра для modify")
|
|
return
|
|
}
|
|
|
|
hasServiceParamChanges := false
|
|
if !hasServiceParamChanges {
|
|
if plan.ClickhouseFilesConfiguration.IsNull() != state.ClickhouseFilesConfiguration.IsNull() || plan.ClickhouseFilesConfiguration.IsUnknown() != state.ClickhouseFilesConfiguration.IsUnknown() {
|
|
hasServiceParamChanges = true
|
|
} else if !plan.ClickhouseFilesConfiguration.IsNull() && !plan.ClickhouseFilesConfiguration.IsUnknown() && !state.ClickhouseFilesConfiguration.IsNull() && !state.ClickhouseFilesConfiguration.IsUnknown() {
|
|
if !strings.EqualFold(plan.ClickhouseFilesConfiguration.ValueString(), state.ClickhouseFilesConfiguration.ValueString()) {
|
|
hasServiceParamChanges = true
|
|
}
|
|
}
|
|
}
|
|
|
|
if !hasServiceParamChanges {
|
|
plan.ID = instanceID
|
|
plan.StateParams = state.StateParams
|
|
plan.StateOut = state.StateOut
|
|
plan.StateParamsFlat = state.StateParamsFlat
|
|
plan.StateOutFlat = state.StateOutFlat
|
|
plan.VaultSecrets = state.VaultSecrets
|
|
plan.VaultUrl = state.VaultUrl
|
|
plan.VaultUserPath = state.VaultUserPath
|
|
plan.VaultFields = state.VaultFields
|
|
resp.Diagnostics.Append(resp.State.Set(ctx, &plan)...)
|
|
return
|
|
}
|
|
|
|
operationTimeout := ""
|
|
if !plan.OperationTimeout.IsNull() && !plan.OperationTimeout.IsUnknown() {
|
|
operationTimeout = plan.OperationTimeout.ValueString()
|
|
}
|
|
if !plan.LogLevel.IsNull() && !plan.LogLevel.IsUnknown() {
|
|
ctx = core.CtxWithLogLevel(ctx, plan.LogLevel.ValueString())
|
|
}
|
|
params := map[int]string{
|
|
844: resources_core.BuildJSON(map[string]string{"cpu": fmt.Sprintf("%d", plan.ClusterConfiguration.Cpu.ValueInt64()), "memory": fmt.Sprintf("%d", plan.ClusterConfiguration.Memory.ValueInt64()), "replicas": fmt.Sprintf("%d", plan.ClusterConfiguration.Replicas.ValueInt64()), "shards": fmt.Sprintf("%d", plan.ClusterConfiguration.Shards.ValueInt64()), "disk": fmt.Sprintf("%d", plan.ClusterConfiguration.Disk.ValueInt64())}),
|
|
845: resources_core.BuildJSON(map[string]string{"replicas": fmt.Sprintf("%d", plan.ClickhouseKeeperConfiguration.Replicas.ValueInt64()), "cpu": fmt.Sprintf("%d", plan.ClickhouseKeeperConfiguration.Cpu.ValueInt64()), "memory": fmt.Sprintf("%d", plan.ClickhouseKeeperConfiguration.Memory.ValueInt64())}),
|
|
846: resources_core.BuildJSON(map[string]string{"masterIpSpace": fmt.Sprintf("\"%s\"", plan.AccessConfiguration.MasterIpSpace.ValueString()), "masterAccessList": fmt.Sprintf("\"%s\"", plan.AccessConfiguration.MasterAccessList.ValueString())}),
|
|
847: resources_core.BuildJSON(map[string]string{"version": fmt.Sprintf("\"%s\"", plan.ClickhouseConfiguration.Version.ValueString())}),
|
|
848: resources_core.BuildJSON(map[string]string{"s3Uid": fmt.Sprintf("\"%s\"", plan.BackupConfiguration.S3Uid.ValueString()), "retain": fmt.Sprintf("%d", plan.BackupConfiguration.Retain.ValueInt64()), "schedule": fmt.Sprintf("\"%s\"", plan.BackupConfiguration.Schedule.ValueString())}),
|
|
849: resources_core.BuildJSON(map[string]string{"enabled": fmt.Sprintf("%v", plan.AutoscaleConfiguration.Enabled.ValueBool()), "schedule": fmt.Sprintf("%d", plan.AutoscaleConfiguration.Schedule.ValueInt64()), "quota": fmt.Sprintf("%d", plan.AutoscaleConfiguration.Quota.ValueInt64()), "percent": fmt.Sprintf("%d", plan.AutoscaleConfiguration.Percent.ValueInt64())}),
|
|
850: resources_core.FormatString(plan.ClickhouseFilesConfiguration),
|
|
}
|
|
if err := resources_core.UpdateResourceWithTimeout(ctx, r.client, instanceID.ValueString(), params, operationTimeout); err != nil {
|
|
resp.Diagnostics.AddError("Ошибка клиента", err.Error())
|
|
return
|
|
}
|
|
|
|
plan.ID = instanceID
|
|
state, diags := resources_core.RefreshResourceState(ctx, r.client, instanceID.ValueString(), 120, plan, []resources_core.StateField{
|
|
{Code: "state_params"},
|
|
{Code: "state_out"},
|
|
{Code: "state_params_flat"},
|
|
{Code: "state_out_flat"},
|
|
{Code: "vault_secrets"},
|
|
{Code: "vault_url"},
|
|
{Code: "vault_user_path"},
|
|
{Code: "vault_fields"},
|
|
}, []resources_core.InputField{
|
|
{Code: "accessConfiguration", Field: "AccessConfiguration", Type: "map-fixed"},
|
|
{Code: "autoscaleConfiguration", Field: "AutoscaleConfiguration", Type: "map-fixed"},
|
|
{Code: "backupConfiguration", Field: "BackupConfiguration", Type: "map-fixed"},
|
|
{Code: "clickhouseConfiguration", Field: "ClickhouseConfiguration", Type: "map-fixed"},
|
|
{Code: "clickhouseFilesConfiguration", Field: "ClickhouseFilesConfiguration", Type: "array-map-fixed"},
|
|
{Code: "clickhouseKeeperConfiguration", Field: "ClickhouseKeeperConfiguration", Type: "map-fixed"},
|
|
{Code: "clusterConfiguration", Field: "ClusterConfiguration", Type: "map-fixed"},
|
|
{Code: "startupConfiguration", Field: "StartupConfiguration", Type: "map-fixed"},
|
|
})
|
|
resp.Diagnostics.Append(diags...)
|
|
if resp.Diagnostics.HasError() {
|
|
return
|
|
}
|
|
|
|
resp.Diagnostics.Append(resp.State.Set(ctx, &state)...)
|
|
}
|
|
|
|
func (r *ClickhouseResource) Delete(ctx context.Context, req resource.DeleteRequest, resp *resource.DeleteResponse) {
|
|
var state ClickhouseModel
|
|
resp.Diagnostics.Append(req.State.Get(ctx, &state)...)
|
|
if resp.Diagnostics.HasError() {
|
|
return
|
|
}
|
|
if state.ID.IsNull() || state.ID.IsUnknown() {
|
|
return
|
|
}
|
|
deleteMode := "state_only"
|
|
if !state.SuspendOnDestroy.IsNull() && !state.SuspendOnDestroy.IsUnknown() && state.SuspendOnDestroy.ValueBool() {
|
|
deleteMode = "suspend"
|
|
}
|
|
|
|
operationTimeout := ""
|
|
if !state.OperationTimeout.IsNull() && !state.OperationTimeout.IsUnknown() {
|
|
operationTimeout = state.OperationTimeout.ValueString()
|
|
}
|
|
if !state.LogLevel.IsNull() && !state.LogLevel.IsUnknown() {
|
|
ctx = core.CtxWithLogLevel(ctx, state.LogLevel.ValueString())
|
|
}
|
|
if err := resources_core.DeleteResourceWithTimeout(ctx, r.client, state.ID.ValueString(), deleteMode, operationTimeout); err != nil {
|
|
resp.Diagnostics.AddError("Ошибка клиента", err.Error())
|
|
return
|
|
}
|
|
}
|
|
|
|
func (r *ClickhouseResource) ImportState(ctx context.Context, req resource.ImportStateRequest, resp *resource.ImportStateResponse) {
|
|
resource.ImportStatePassthroughID(ctx, path.Root("id"), req, resp)
|
|
}
|
|
|
|
func (r *ClickhouseResource) Configure(_ context.Context, req resource.ConfigureRequest, resp *resource.ConfigureResponse) {
|
|
if req.ProviderData == nil {
|
|
return
|
|
}
|
|
client, ok := req.ProviderData.(*core.UniversalClient)
|
|
if !ok {
|
|
resp.Diagnostics.AddError("Error", "Invalid client type")
|
|
return
|
|
}
|
|
r.client = client
|
|
}
|