## Description
<!-- **Please link some issue here describing what you are trying to achieve.**
In case there is no issue present for your PR, please consider creating one.
At least please give us some description what you are trying to achieve and why your change is needed. -->
relates to #1234
## Checklist
- [ ] Issue was linked above
- [ ] Code format was applied: `make fmt`
- [ ] Examples were added / adjusted (see `examples/` directory)
- [x] Docs are up-to-date: `make generate-docs` (will be checked by CI)
- [ ] Unit tests got implemented or updated
- [ ] Acceptance tests got implemented or updated (see e.g. [here](f5f99d1709/stackit/internal/services/dns/dns_acc_test.go))
- [x] Unit tests are passing: `make test` (will be checked by CI)
- [x] No linter issues: `make lint` (will be checked by CI)
Reviewed-on: #35
Reviewed-by: Andre_Harms <andre.harms@stackit.cloud>
Co-authored-by: Marcel S. Henselin <marcel.henselin@stackit.cloud>
Co-committed-by: Marcel S. Henselin <marcel.henselin@stackit.cloud>
217 lines
8.1 KiB
Go
217 lines
8.1 KiB
Go
package postgresflexalpha
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"github.com/hashicorp/terraform-plugin-framework/attr"
|
|
"github.com/hashicorp/terraform-plugin-framework/types"
|
|
"github.com/hashicorp/terraform-plugin-framework/types/basetypes"
|
|
"github.com/hashicorp/terraform-plugin-log/tflog"
|
|
postgresflex "tf-provider.git.onstackit.cloud/stackit-dev-tools/terraform-provider-stackitprivatepreview/pkg_gen/postgresflexalpha"
|
|
postgresflexalphadatasource "tf-provider.git.onstackit.cloud/stackit-dev-tools/terraform-provider-stackitprivatepreview/stackit/internal/services/postgresflexalpha/instance/datasources_gen"
|
|
postgresflexalpharesource "tf-provider.git.onstackit.cloud/stackit-dev-tools/terraform-provider-stackitprivatepreview/stackit/internal/services/postgresflexalpha/instance/resources_gen"
|
|
"tf-provider.git.onstackit.cloud/stackit-dev-tools/terraform-provider-stackitprivatepreview/stackit/internal/utils"
|
|
)
|
|
|
|
func mapGetInstanceResponseToModel(ctx context.Context, m *postgresflexalpharesource.InstanceModel, resp *postgresflex.GetInstanceResponse) error {
|
|
tflog.Debug(ctx, ">>>> MSH DEBUG <<<<", map[string]interface{}{
|
|
"id": m.Id.ValueString(),
|
|
"instance_id": m.InstanceId.ValueString(),
|
|
"backup_schedule": m.BackupSchedule.ValueString(),
|
|
"flavor_id": m.FlavorId.ValueString(),
|
|
"encryption.kek_key_id": m.Encryption.KekKeyId.ValueString(),
|
|
"encryption.kek_key_ring_id": m.Encryption.KekKeyRingId.ValueString(),
|
|
"encryption.kek_key_version": m.Encryption.KekKeyVersion.ValueString(),
|
|
"encryption.service_account": m.Encryption.ServiceAccount.ValueString(),
|
|
"is_deletable": m.IsDeletable.ValueBool(),
|
|
"name": m.Name.ValueString(),
|
|
"status": m.Status.ValueString(),
|
|
"retention_days": m.RetentionDays.ValueInt64(),
|
|
"replicas": m.Replicas.ValueInt64(),
|
|
"network.instance_address": m.Network.InstanceAddress.ValueString(),
|
|
"network.router_address": m.Network.RouterAddress.ValueString(),
|
|
"version": m.Version.ValueString(),
|
|
"network.acl": m.Network.Acl.String(),
|
|
})
|
|
|
|
m.BackupSchedule = types.StringValue(resp.GetBackupSchedule())
|
|
m.Encryption = postgresflexalpharesource.NewEncryptionValueNull()
|
|
if resp.HasEncryption() {
|
|
m.Encryption = postgresflexalpharesource.NewEncryptionValueMust(
|
|
m.Encryption.AttributeTypes(ctx),
|
|
map[string]attr.Value{
|
|
"kek_key_id": types.StringValue(resp.Encryption.GetKekKeyId()),
|
|
"kek_key_ring_id": types.StringValue(resp.Encryption.GetKekKeyRingId()),
|
|
"kek_key_version": types.StringValue(resp.Encryption.GetKekKeyVersion()),
|
|
"service_account": types.StringValue(resp.Encryption.GetServiceAccount()),
|
|
},
|
|
)
|
|
}
|
|
|
|
m.ConnectionInfo.Host = types.StringValue("")
|
|
if host, ok := resp.ConnectionInfo.GetHostOk(); ok {
|
|
m.ConnectionInfo.Host = types.StringValue(host)
|
|
}
|
|
|
|
m.ConnectionInfo.Port = types.Int64Value(0)
|
|
if port, ok := resp.ConnectionInfo.GetPortOk(); ok {
|
|
m.ConnectionInfo.Port = types.Int64Value(port)
|
|
}
|
|
|
|
m.FlavorId = types.StringValue(resp.GetFlavorId())
|
|
if m.Id.IsNull() || m.Id.IsUnknown() {
|
|
m.Id = utils.BuildInternalTerraformId(m.ProjectId.ValueString(), m.Region.ValueString(), m.InstanceId.ValueString())
|
|
}
|
|
m.InstanceId = types.StringPointerValue(resp.Id)
|
|
|
|
m.IsDeletable = types.BoolValue(resp.GetIsDeletable())
|
|
|
|
netAcl, diags := types.ListValueFrom(ctx, types.StringType, resp.Network.GetAcl())
|
|
if diags.HasError() {
|
|
return fmt.Errorf("failed converting network acl from response")
|
|
}
|
|
|
|
m.Acl = netAcl
|
|
|
|
netInstAdd := types.StringValue("")
|
|
if instAdd, ok := resp.Network.GetInstanceAddressOk(); ok {
|
|
netInstAdd = types.StringValue(instAdd)
|
|
}
|
|
|
|
netRtrAdd := types.StringValue("")
|
|
if rtrAdd, ok := resp.Network.GetRouterAddressOk(); ok {
|
|
netRtrAdd = types.StringValue(rtrAdd)
|
|
}
|
|
|
|
net, diags := postgresflexalpharesource.NewNetworkValue(
|
|
postgresflexalpharesource.NetworkValue{}.AttributeTypes(ctx),
|
|
map[string]attr.Value{
|
|
"access_scope": basetypes.NewStringValue(string(resp.Network.GetAccessScope())),
|
|
"acl": netAcl,
|
|
"instance_address": netInstAdd,
|
|
"router_address": netRtrAdd,
|
|
},
|
|
)
|
|
if diags.HasError() {
|
|
return fmt.Errorf("failed converting network from response")
|
|
}
|
|
|
|
m.Network = net
|
|
m.Replicas = types.Int64Value(int64(resp.GetReplicas()))
|
|
m.RetentionDays = types.Int64Value(resp.GetRetentionDays())
|
|
|
|
m.Name = types.StringValue(resp.GetName())
|
|
|
|
m.Status = types.StringValue(string(resp.GetStatus()))
|
|
|
|
storage, diags := postgresflexalpharesource.NewStorageValue(
|
|
postgresflexalpharesource.StorageValue{}.AttributeTypes(ctx),
|
|
map[string]attr.Value{
|
|
"performance_class": types.StringValue(resp.Storage.GetPerformanceClass()),
|
|
"size": types.Int64Value(resp.Storage.GetSize()),
|
|
},
|
|
)
|
|
if diags.HasError() {
|
|
return fmt.Errorf("failed converting storage from response")
|
|
}
|
|
m.Storage = storage
|
|
|
|
m.Version = types.StringValue(resp.GetVersion())
|
|
return nil
|
|
}
|
|
|
|
func mapGetDataInstanceResponseToModel(ctx context.Context, m *postgresflexalphadatasource.InstanceModel, resp *postgresflex.GetInstanceResponse) error {
|
|
m.BackupSchedule = types.StringValue(resp.GetBackupSchedule())
|
|
handleEncryption(m, resp)
|
|
m.ConnectionInfo.Host = types.StringValue(resp.ConnectionInfo.GetHost())
|
|
m.ConnectionInfo.Port = types.Int64Value(resp.ConnectionInfo.GetPort())
|
|
m.FlavorId = types.StringValue(resp.GetFlavorId())
|
|
m.Id = utils.BuildInternalTerraformId(m.ProjectId.ValueString(), m.Region.ValueString(), m.InstanceId.ValueString())
|
|
m.InstanceId = types.StringPointerValue(resp.Id)
|
|
m.IsDeletable = types.BoolValue(resp.GetIsDeletable())
|
|
m.Name = types.StringValue(resp.GetName())
|
|
|
|
err := handleNetwork(ctx, m, resp)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
m.Replicas = types.Int64Value(int64(resp.GetReplicas()))
|
|
m.RetentionDays = types.Int64Value(resp.GetRetentionDays())
|
|
m.Status = types.StringValue(string(resp.GetStatus()))
|
|
storage, diags := postgresflexalphadatasource.NewStorageValue(
|
|
postgresflexalphadatasource.StorageValue{}.AttributeTypes(ctx),
|
|
map[string]attr.Value{
|
|
"performance_class": types.StringValue(resp.Storage.GetPerformanceClass()),
|
|
"size": types.Int64Value(resp.Storage.GetSize()),
|
|
},
|
|
)
|
|
if diags.HasError() {
|
|
return fmt.Errorf("failed converting storage from response")
|
|
}
|
|
m.Storage = storage
|
|
m.Version = types.StringValue(resp.GetVersion())
|
|
return nil
|
|
}
|
|
|
|
func handleNetwork(ctx context.Context, m *postgresflexalphadatasource.InstanceModel, resp *postgresflex.GetInstanceResponse) error {
|
|
netAcl, diags := types.ListValueFrom(ctx, types.StringType, resp.Network.GetAcl())
|
|
if diags.HasError() {
|
|
return fmt.Errorf("failed converting network acl from response")
|
|
}
|
|
|
|
instAddr := ""
|
|
if iA, ok := resp.Network.GetInstanceAddressOk(); ok {
|
|
instAddr = iA
|
|
}
|
|
|
|
rtrAddr := ""
|
|
if rA, ok := resp.Network.GetRouterAddressOk(); ok {
|
|
rtrAddr = rA
|
|
}
|
|
|
|
net, diags := postgresflexalphadatasource.NewNetworkValue(
|
|
postgresflexalphadatasource.NetworkValue{}.AttributeTypes(ctx),
|
|
map[string]attr.Value{
|
|
"access_scope": types.StringValue(string(resp.Network.GetAccessScope())),
|
|
"acl": netAcl,
|
|
"instance_address": types.StringValue(instAddr),
|
|
"router_address": types.StringValue(rtrAddr),
|
|
},
|
|
)
|
|
if diags.HasError() {
|
|
return fmt.Errorf("failed converting network from response")
|
|
}
|
|
m.Network = net
|
|
return nil
|
|
}
|
|
|
|
func handleEncryption(m *postgresflexalphadatasource.InstanceModel, resp *postgresflex.GetInstanceResponse) {
|
|
keyId := ""
|
|
if keyIdVal, ok := resp.Encryption.GetKekKeyIdOk(); ok {
|
|
keyId = keyIdVal
|
|
}
|
|
|
|
keyRingId := ""
|
|
if keyRingIdVal, ok := resp.Encryption.GetKekKeyRingIdOk(); ok {
|
|
keyRingId = keyRingIdVal
|
|
}
|
|
|
|
keyVersion := ""
|
|
if keyVersionVal, ok := resp.Encryption.GetKekKeyVersionOk(); ok {
|
|
keyVersion = keyVersionVal
|
|
}
|
|
|
|
svcAcc := ""
|
|
if svcAccVal, ok := resp.Encryption.GetServiceAccountOk(); ok {
|
|
svcAcc = svcAccVal
|
|
}
|
|
|
|
m.Encryption = postgresflexalphadatasource.EncryptionValue{
|
|
KekKeyId: types.StringValue(keyId),
|
|
KekKeyRingId: types.StringValue(keyRingId),
|
|
KekKeyVersion: types.StringValue(keyVersion),
|
|
ServiceAccount: types.StringValue(svcAcc),
|
|
}
|
|
}
|