* Add internal ID structure to DSA instance descriptions * Add internal ID structure to DSA credential descriptions * Add internal ID structure to Argus descriptions * Add internal ID structure to DNS descriptions * Add internal ID structure to PostgresFlex descriptions * Add internal ID structure to ResourceManager descriptions * Add internal ID structure to SKE descriptions * Generate updated docs * Add first basis for migration guide
604 lines
21 KiB
Go
604 lines
21 KiB
Go
package dns
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"math"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/hashicorp/terraform-plugin-framework-validators/int64validator"
|
|
"github.com/hashicorp/terraform-plugin-framework-validators/listvalidator"
|
|
"github.com/hashicorp/terraform-plugin-framework-validators/stringvalidator"
|
|
"github.com/hashicorp/terraform-plugin-framework/attr"
|
|
"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/listplanmodifier"
|
|
"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/schema/validator"
|
|
"github.com/hashicorp/terraform-plugin-framework/types"
|
|
"github.com/hashicorp/terraform-plugin-log/tflog"
|
|
"github.com/stackitcloud/stackit-sdk-go/core/config"
|
|
"github.com/stackitcloud/stackit-sdk-go/services/dns"
|
|
"github.com/stackitcloud/terraform-provider-stackit/stackit/conversion"
|
|
"github.com/stackitcloud/terraform-provider-stackit/stackit/core"
|
|
"github.com/stackitcloud/terraform-provider-stackit/stackit/validate"
|
|
)
|
|
|
|
// Ensure the implementation satisfies the expected interfaces.
|
|
var (
|
|
_ resource.Resource = &zoneResource{}
|
|
_ resource.ResourceWithConfigure = &zoneResource{}
|
|
_ resource.ResourceWithImportState = &zoneResource{}
|
|
)
|
|
|
|
type Model struct {
|
|
Id types.String `tfsdk:"id"` // needed by TF
|
|
ZoneId types.String `tfsdk:"zone_id"`
|
|
ProjectId types.String `tfsdk:"project_id"`
|
|
Name types.String `tfsdk:"name"`
|
|
DnsName types.String `tfsdk:"dns_name"`
|
|
Description types.String `tfsdk:"description"`
|
|
Acl types.String `tfsdk:"acl"`
|
|
Active types.Bool `tfsdk:"active"`
|
|
ContactEmail types.String `tfsdk:"contact_email"`
|
|
DefaultTTL types.Int64 `tfsdk:"default_ttl"`
|
|
ExpireTime types.Int64 `tfsdk:"expire_time"`
|
|
IsReverseZone types.Bool `tfsdk:"is_reverse_zone"`
|
|
NegativeCache types.Int64 `tfsdk:"negative_cache"`
|
|
PrimaryNameServer types.String `tfsdk:"primary_name_server"`
|
|
Primaries types.List `tfsdk:"primaries"`
|
|
RecordCount types.Int64 `tfsdk:"record_count"`
|
|
RefreshTime types.Int64 `tfsdk:"refresh_time"`
|
|
RetryTime types.Int64 `tfsdk:"retry_time"`
|
|
SerialNumber types.Int64 `tfsdk:"serial_number"`
|
|
Type types.String `tfsdk:"type"`
|
|
Visibility types.String `tfsdk:"visibility"`
|
|
State types.String `tfsdk:"state"`
|
|
}
|
|
|
|
// NewZoneResource is a helper function to simplify the provider implementation.
|
|
func NewZoneResource() resource.Resource {
|
|
return &zoneResource{}
|
|
}
|
|
|
|
// zoneResource is the resource implementation.
|
|
type zoneResource struct {
|
|
client *dns.APIClient
|
|
}
|
|
|
|
// Metadata returns the resource type name.
|
|
func (r *zoneResource) Metadata(_ context.Context, req resource.MetadataRequest, resp *resource.MetadataResponse) {
|
|
resp.TypeName = req.ProviderTypeName + "_dns_zone"
|
|
}
|
|
|
|
// Configure adds the provider configured client to the resource.
|
|
func (r *zoneResource) Configure(ctx context.Context, req resource.ConfigureRequest, resp *resource.ConfigureResponse) {
|
|
// Prevent panic if the provider has not been configured.
|
|
if req.ProviderData == nil {
|
|
return
|
|
}
|
|
|
|
providerData, ok := req.ProviderData.(core.ProviderData)
|
|
if !ok {
|
|
resp.Diagnostics.AddError("Unexpected Resource Configure Type", fmt.Sprintf("Expected stackit.ProviderData, got %T. Please report this issue to the provider developers.", req.ProviderData))
|
|
return
|
|
}
|
|
|
|
var apiClient *dns.APIClient
|
|
var err error
|
|
if providerData.DnsCustomEndpoint != "" {
|
|
ctx = tflog.SetField(ctx, "dns_custom_endpoint", providerData.DnsCustomEndpoint)
|
|
apiClient, err = dns.NewAPIClient(
|
|
config.WithCustomAuth(providerData.RoundTripper),
|
|
config.WithEndpoint(providerData.DnsCustomEndpoint),
|
|
)
|
|
} else {
|
|
apiClient, err = dns.NewAPIClient(
|
|
config.WithCustomAuth(providerData.RoundTripper),
|
|
)
|
|
}
|
|
|
|
if err != nil {
|
|
resp.Diagnostics.AddError("Could not Configure API Client", err.Error())
|
|
return
|
|
}
|
|
|
|
tflog.Info(ctx, "DNS zone client configured")
|
|
r.client = apiClient
|
|
}
|
|
|
|
// Schema defines the schema for the resource.
|
|
func (r *zoneResource) Schema(_ context.Context, _ resource.SchemaRequest, resp *resource.SchemaResponse) {
|
|
resp.Schema = schema.Schema{
|
|
Description: "DNS Zone resource schema.",
|
|
Attributes: map[string]schema.Attribute{
|
|
"id": schema.StringAttribute{
|
|
Description: "Terraform's internal resource ID. It is structured as \"`project_id`,`zone_id`\".",
|
|
Computed: true,
|
|
PlanModifiers: []planmodifier.String{
|
|
stringplanmodifier.UseStateForUnknown(),
|
|
},
|
|
},
|
|
"project_id": schema.StringAttribute{
|
|
Description: "STACKIT project ID to which the dns zone is associated.",
|
|
Required: true,
|
|
PlanModifiers: []planmodifier.String{
|
|
stringplanmodifier.RequiresReplace(),
|
|
},
|
|
Validators: []validator.String{
|
|
validate.UUID(),
|
|
validate.NoSeparator(),
|
|
},
|
|
},
|
|
"zone_id": schema.StringAttribute{
|
|
Description: "The zone ID.",
|
|
Computed: true,
|
|
PlanModifiers: []planmodifier.String{
|
|
stringplanmodifier.UseStateForUnknown(),
|
|
},
|
|
Validators: []validator.String{
|
|
validate.UUID(),
|
|
validate.NoSeparator(),
|
|
},
|
|
},
|
|
"name": schema.StringAttribute{
|
|
Description: "The user given name of the zone.",
|
|
Required: true,
|
|
Validators: []validator.String{
|
|
stringvalidator.LengthAtLeast(1),
|
|
stringvalidator.LengthAtMost(63),
|
|
},
|
|
},
|
|
"dns_name": schema.StringAttribute{
|
|
Description: "The zone name. E.g. `example.com`",
|
|
Required: true,
|
|
PlanModifiers: []planmodifier.String{
|
|
stringplanmodifier.RequiresReplace(),
|
|
},
|
|
Validators: []validator.String{
|
|
stringvalidator.LengthAtLeast(1),
|
|
stringvalidator.LengthAtMost(253),
|
|
},
|
|
},
|
|
"description": schema.StringAttribute{
|
|
Description: "Description of the zone.",
|
|
Optional: true,
|
|
Computed: true,
|
|
Validators: []validator.String{
|
|
stringvalidator.LengthAtMost(1024),
|
|
},
|
|
},
|
|
"acl": schema.StringAttribute{
|
|
Description: "The access control list. E.g. `0.0.0.0/0,::/0`",
|
|
Optional: true,
|
|
Computed: true,
|
|
Validators: []validator.String{
|
|
stringvalidator.LengthAtMost(2000),
|
|
},
|
|
},
|
|
"active": schema.BoolAttribute{
|
|
Description: "",
|
|
Optional: true,
|
|
Computed: true,
|
|
},
|
|
"contact_email": schema.StringAttribute{
|
|
Description: "A contact e-mail for the zone.",
|
|
Optional: true,
|
|
Computed: true,
|
|
Validators: []validator.String{
|
|
stringvalidator.LengthAtMost(255),
|
|
},
|
|
},
|
|
"default_ttl": schema.Int64Attribute{
|
|
Description: "Default time to live. E.g. 3600.",
|
|
Optional: true,
|
|
Computed: true,
|
|
Validators: []validator.Int64{
|
|
int64validator.Between(60, 99999999),
|
|
},
|
|
},
|
|
"expire_time": schema.Int64Attribute{
|
|
Description: "Expire time. E.g. 1209600.",
|
|
Optional: true,
|
|
Computed: true,
|
|
Validators: []validator.Int64{
|
|
int64validator.Between(60, 99999999),
|
|
},
|
|
},
|
|
"is_reverse_zone": schema.BoolAttribute{
|
|
Description: "Specifies, if the zone is a reverse zone or not.",
|
|
Optional: true,
|
|
Computed: true,
|
|
Default: booldefault.StaticBool(false),
|
|
},
|
|
"negative_cache": schema.Int64Attribute{
|
|
Description: "Negative caching. E.g. 60",
|
|
Optional: true,
|
|
Computed: true,
|
|
Validators: []validator.Int64{
|
|
int64validator.Between(60, 99999999),
|
|
},
|
|
},
|
|
"primaries": schema.ListAttribute{
|
|
Description: `Primary name server for secondary zone. E.g. ["1.2.3.4"]`,
|
|
Optional: true,
|
|
Computed: true,
|
|
ElementType: types.StringType,
|
|
PlanModifiers: []planmodifier.List{
|
|
listplanmodifier.RequiresReplace(),
|
|
},
|
|
Validators: []validator.List{
|
|
listvalidator.SizeAtMost(10),
|
|
},
|
|
},
|
|
"refresh_time": schema.Int64Attribute{
|
|
Description: "Refresh time. E.g. 3600",
|
|
Optional: true,
|
|
Computed: true,
|
|
Validators: []validator.Int64{
|
|
int64validator.Between(60, 99999999),
|
|
},
|
|
},
|
|
"retry_time": schema.Int64Attribute{
|
|
Description: "Retry time. E.g. 600",
|
|
Optional: true,
|
|
Computed: true,
|
|
Validators: []validator.Int64{
|
|
int64validator.Between(60, 99999999),
|
|
},
|
|
},
|
|
"type": schema.StringAttribute{
|
|
Description: "Zone type. E.g. `primary`",
|
|
Optional: true,
|
|
Computed: true,
|
|
Default: stringdefault.StaticString("primary"),
|
|
Validators: []validator.String{
|
|
stringvalidator.OneOf("primary", "secondary"),
|
|
},
|
|
},
|
|
"primary_name_server": schema.StringAttribute{
|
|
Description: "Primary name server. FQDN.",
|
|
Computed: true,
|
|
Validators: []validator.String{
|
|
stringvalidator.LengthAtLeast(1),
|
|
stringvalidator.LengthAtMost(253),
|
|
},
|
|
},
|
|
"serial_number": schema.Int64Attribute{
|
|
Description: "Serial number. E.g. `2022111400`.",
|
|
Computed: true,
|
|
Validators: []validator.Int64{
|
|
int64validator.AtLeast(0),
|
|
int64validator.AtMost(math.MaxInt32 - 1),
|
|
},
|
|
},
|
|
"visibility": schema.StringAttribute{
|
|
Description: "Visibility of the zone. E.g. `public`.",
|
|
Computed: true,
|
|
},
|
|
"record_count": schema.Int64Attribute{
|
|
Description: "Record count how many records are in the zone.",
|
|
Computed: true,
|
|
},
|
|
"state": schema.StringAttribute{
|
|
Description: "Zone state. E.g. `CREATE_SUCCEEDED`.",
|
|
Computed: true,
|
|
},
|
|
},
|
|
}
|
|
}
|
|
|
|
// Create creates the resource and sets the initial Terraform state.
|
|
func (r *zoneResource) Create(ctx context.Context, req resource.CreateRequest, resp *resource.CreateResponse) { // nolint:gocritic // function signature required by Terraform
|
|
// Retrieve values from plan
|
|
var model Model
|
|
diags := req.Plan.Get(ctx, &model)
|
|
resp.Diagnostics.Append(diags...)
|
|
if resp.Diagnostics.HasError() {
|
|
return
|
|
}
|
|
|
|
projectId := model.ProjectId.ValueString()
|
|
ctx = tflog.SetField(ctx, "project_id", projectId)
|
|
|
|
// Generate API request body from model
|
|
payload, err := toCreatePayload(&model)
|
|
if err != nil {
|
|
core.LogAndAddError(ctx, &resp.Diagnostics, "Error creating zone", fmt.Sprintf("Creating API payload: %v", err))
|
|
return
|
|
}
|
|
// Create new zone
|
|
createResp, err := r.client.CreateZone(ctx, projectId).CreateZonePayload(*payload).Execute()
|
|
if err != nil {
|
|
core.LogAndAddError(ctx, &resp.Diagnostics, "Error creating zone", fmt.Sprintf("Calling API: %v", err))
|
|
return
|
|
}
|
|
if createResp.Zone.Id == nil {
|
|
core.LogAndAddError(ctx, &resp.Diagnostics, "Error creating zone", "API didn't return zone id")
|
|
return
|
|
}
|
|
zoneId := *createResp.Zone.Id
|
|
|
|
ctx = tflog.SetField(ctx, "zone_id", zoneId)
|
|
wr, err := dns.CreateZoneWaitHandler(ctx, r.client, projectId, zoneId).SetTimeout(10 * time.Minute).WaitWithContext(ctx)
|
|
if err != nil {
|
|
core.LogAndAddError(ctx, &resp.Diagnostics, "Error creating zone", fmt.Sprintf("Instance creation waiting: %v", err))
|
|
return
|
|
}
|
|
got, ok := wr.(*dns.ZoneResponse)
|
|
if !ok {
|
|
core.LogAndAddError(ctx, &resp.Diagnostics, "Error creating zone", fmt.Sprintf("Wait result conversion, got %+v", got))
|
|
return
|
|
}
|
|
|
|
// Map response body to schema and populate Computed attribute values
|
|
err = mapFields(got, &model)
|
|
if err != nil {
|
|
core.LogAndAddError(ctx, &resp.Diagnostics, "Error mapping fields", err.Error())
|
|
return
|
|
}
|
|
// Set state to fully populated data
|
|
diags = resp.State.Set(ctx, model)
|
|
resp.Diagnostics.Append(diags...)
|
|
tflog.Info(ctx, "DNS zone created")
|
|
}
|
|
|
|
// Read refreshes the Terraform state with the latest data.
|
|
func (r *zoneResource) Read(ctx context.Context, req resource.ReadRequest, resp *resource.ReadResponse) { // nolint:gocritic // function signature required by Terraform
|
|
var state Model
|
|
diags := req.State.Get(ctx, &state)
|
|
resp.Diagnostics.Append(diags...)
|
|
if resp.Diagnostics.HasError() {
|
|
return
|
|
}
|
|
projectId := state.ProjectId.ValueString()
|
|
zoneId := state.ZoneId.ValueString()
|
|
ctx = tflog.SetField(ctx, "project_id", projectId)
|
|
ctx = tflog.SetField(ctx, "zone_id", zoneId)
|
|
|
|
zoneResp, err := r.client.GetZone(ctx, projectId, zoneId).Execute()
|
|
if err != nil {
|
|
core.LogAndAddError(ctx, &resp.Diagnostics, "Error reading zones", err.Error())
|
|
return
|
|
}
|
|
|
|
// Map response body to schema and populate Computed attribute values
|
|
err = mapFields(zoneResp, &state)
|
|
if err != nil {
|
|
core.LogAndAddError(ctx, &resp.Diagnostics, "Error mapping fields", err.Error())
|
|
return
|
|
}
|
|
// Set refreshed state
|
|
diags = resp.State.Set(ctx, state)
|
|
resp.Diagnostics.Append(diags...)
|
|
tflog.Info(ctx, "DNS zone read")
|
|
}
|
|
|
|
// Update updates the resource and sets the updated Terraform state on success.
|
|
func (r *zoneResource) Update(ctx context.Context, req resource.UpdateRequest, resp *resource.UpdateResponse) { // nolint:gocritic // function signature required by Terraform
|
|
// Retrieve values from plan
|
|
var model Model
|
|
diags := req.Plan.Get(ctx, &model)
|
|
resp.Diagnostics.Append(diags...)
|
|
if resp.Diagnostics.HasError() {
|
|
return
|
|
}
|
|
projectId := model.ProjectId.ValueString()
|
|
zoneId := model.ZoneId.ValueString()
|
|
ctx = tflog.SetField(ctx, "project_id", projectId)
|
|
ctx = tflog.SetField(ctx, "zone_id", zoneId)
|
|
|
|
// Generate API request body from model
|
|
payload, err := toUpdatePayload(&model)
|
|
if err != nil {
|
|
core.LogAndAddError(ctx, &resp.Diagnostics, "Error updating zone", fmt.Sprintf("Could not create API payload: %v", err))
|
|
return
|
|
}
|
|
// Update existing zone
|
|
_, err = r.client.UpdateZone(ctx, projectId, zoneId).UpdateZonePayload(*payload).Execute()
|
|
if err != nil {
|
|
core.LogAndAddError(ctx, &resp.Diagnostics, "Error updating zone", err.Error())
|
|
return
|
|
}
|
|
wr, err := dns.UpdateZoneWaitHandler(ctx, r.client, projectId, zoneId).SetTimeout(10 * time.Minute).WaitWithContext(ctx)
|
|
if err != nil {
|
|
core.LogAndAddError(ctx, &resp.Diagnostics, "Error updating zone", fmt.Sprintf("Instance update waiting: %v", err))
|
|
return
|
|
}
|
|
got, ok := wr.(*dns.ZoneResponse)
|
|
if !ok {
|
|
core.LogAndAddError(ctx, &resp.Diagnostics, "Error updating zone", fmt.Sprintf("Wait result conversion, got %+v", got))
|
|
return
|
|
}
|
|
|
|
// Fetch updated zone
|
|
zoneResp, err := r.client.GetZone(ctx, projectId, zoneId).Execute()
|
|
if err != nil {
|
|
core.LogAndAddError(ctx, &resp.Diagnostics, "Error reading updated data", err.Error())
|
|
return
|
|
}
|
|
err = mapFields(zoneResp, &model)
|
|
if err != nil {
|
|
core.LogAndAddError(ctx, &resp.Diagnostics, "Error mapping fields in update", err.Error())
|
|
return
|
|
}
|
|
diags = resp.State.Set(ctx, model)
|
|
resp.Diagnostics.Append(diags...)
|
|
tflog.Info(ctx, "DNS zone updated")
|
|
}
|
|
|
|
// Delete deletes the resource and removes the Terraform state on success.
|
|
func (r *zoneResource) Delete(ctx context.Context, req resource.DeleteRequest, resp *resource.DeleteResponse) { // nolint:gocritic // function signature required by Terraform
|
|
// Retrieve values from state
|
|
var model Model
|
|
diags := req.State.Get(ctx, &model)
|
|
resp.Diagnostics.Append(diags...)
|
|
if resp.Diagnostics.HasError() {
|
|
return
|
|
}
|
|
|
|
projectId := model.ProjectId.ValueString()
|
|
zoneId := model.ZoneId.ValueString()
|
|
ctx = tflog.SetField(ctx, "project_id", projectId)
|
|
ctx = tflog.SetField(ctx, "zone_id", zoneId)
|
|
|
|
// Delete existing zone
|
|
_, err := r.client.DeleteZone(ctx, projectId, zoneId).Execute()
|
|
if err != nil {
|
|
core.LogAndAddError(ctx, &resp.Diagnostics, "Error deleting zone", err.Error())
|
|
return
|
|
}
|
|
_, err = dns.DeleteZoneWaitHandler(ctx, r.client, projectId, zoneId).SetTimeout(10 * time.Minute).WaitWithContext(ctx)
|
|
if err != nil {
|
|
core.LogAndAddError(ctx, &resp.Diagnostics, "Error deleting zone", fmt.Sprintf("Instance deletion waiting: %v", err))
|
|
return
|
|
}
|
|
|
|
tflog.Info(ctx, "DNS zone deleted")
|
|
}
|
|
|
|
// ImportState imports a resource into the Terraform state on success.
|
|
// The expected format of the resource import identifier is: project_id,zone_id
|
|
func (r *zoneResource) ImportState(ctx context.Context, req resource.ImportStateRequest, resp *resource.ImportStateResponse) {
|
|
idParts := strings.Split(req.ID, core.Separator)
|
|
|
|
if len(idParts) != 2 || idParts[0] == "" || idParts[1] == "" {
|
|
resp.Diagnostics.AddError(
|
|
"Unexpected Import Identifier",
|
|
fmt.Sprintf("Expected import identifier with format: [project_id],[zone_id] Got: %q", req.ID),
|
|
)
|
|
return
|
|
}
|
|
|
|
projectId := idParts[0]
|
|
zoneId := idParts[1]
|
|
ctx = tflog.SetField(ctx, "project_id", projectId)
|
|
ctx = tflog.SetField(ctx, "zone_id", zoneId)
|
|
|
|
resp.Diagnostics.Append(resp.State.SetAttribute(ctx, path.Root("project_id"), projectId)...)
|
|
resp.Diagnostics.Append(resp.State.SetAttribute(ctx, path.Root("zone_id"), zoneId)...)
|
|
tflog.Info(ctx, "DNS zone state imported")
|
|
}
|
|
|
|
func mapFields(zoneResp *dns.ZoneResponse, model *Model) error {
|
|
if zoneResp == nil || zoneResp.Zone == nil {
|
|
return fmt.Errorf("response input is nil")
|
|
}
|
|
if model == nil {
|
|
return fmt.Errorf("model input is nil")
|
|
}
|
|
z := zoneResp.Zone
|
|
|
|
var rc *int64
|
|
if z.RecordCount != nil {
|
|
recordCount64 := int64(*z.RecordCount)
|
|
rc = &recordCount64
|
|
} else {
|
|
rc = nil
|
|
}
|
|
|
|
var zoneId string
|
|
if model.ZoneId.ValueString() != "" {
|
|
zoneId = model.ZoneId.ValueString()
|
|
} else if z.Id != nil {
|
|
zoneId = *z.Id
|
|
} else {
|
|
return fmt.Errorf("zone id not present")
|
|
}
|
|
|
|
idParts := []string{
|
|
model.ProjectId.ValueString(),
|
|
zoneId,
|
|
}
|
|
model.Id = types.StringValue(
|
|
strings.Join(idParts, core.Separator),
|
|
)
|
|
|
|
if z.Primaries == nil {
|
|
model.Primaries = types.ListNull(types.StringType)
|
|
} else {
|
|
respZonePrimaries := []attr.Value{}
|
|
for _, primary := range *z.Primaries {
|
|
respZonePrimaries = append(respZonePrimaries, types.StringValue(primary))
|
|
respZonePrimariesList, diags := types.ListValue(types.StringType, respZonePrimaries)
|
|
if diags.HasError() {
|
|
return fmt.Errorf("creating primaries list: %w", core.DiagsToError(diags))
|
|
}
|
|
model.Primaries = respZonePrimariesList
|
|
}
|
|
}
|
|
model.ZoneId = types.StringValue(zoneId)
|
|
model.Description = types.StringPointerValue(z.Description)
|
|
model.Acl = types.StringPointerValue(z.Acl)
|
|
model.Active = types.BoolPointerValue(z.Active)
|
|
model.ContactEmail = types.StringPointerValue(z.ContactEmail)
|
|
model.DefaultTTL = conversion.ToTypeInt64(z.DefaultTTL)
|
|
model.DnsName = types.StringPointerValue(z.DnsName)
|
|
model.ExpireTime = conversion.ToTypeInt64(z.ExpireTime)
|
|
model.IsReverseZone = types.BoolPointerValue(z.IsReverseZone)
|
|
model.Name = types.StringPointerValue(z.Name)
|
|
model.NegativeCache = conversion.ToTypeInt64(z.NegativeCache)
|
|
model.PrimaryNameServer = types.StringPointerValue(z.PrimaryNameServer)
|
|
model.RecordCount = types.Int64PointerValue(rc)
|
|
model.RefreshTime = conversion.ToTypeInt64(z.RefreshTime)
|
|
model.RetryTime = conversion.ToTypeInt64(z.RetryTime)
|
|
model.SerialNumber = conversion.ToTypeInt64(z.SerialNumber)
|
|
model.State = types.StringPointerValue(z.State)
|
|
model.Type = types.StringPointerValue(z.Type)
|
|
model.Visibility = types.StringPointerValue(z.Visibility)
|
|
return nil
|
|
}
|
|
|
|
func toCreatePayload(model *Model) (*dns.CreateZonePayload, error) {
|
|
if model == nil {
|
|
return nil, fmt.Errorf("nil model")
|
|
}
|
|
|
|
modelPrimaries := []string{}
|
|
for _, primary := range model.Primaries.Elements() {
|
|
primaryString, ok := primary.(types.String)
|
|
if !ok {
|
|
return nil, fmt.Errorf("type assertion failed")
|
|
}
|
|
modelPrimaries = append(modelPrimaries, primaryString.ValueString())
|
|
}
|
|
return &dns.CreateZonePayload{
|
|
Name: model.Name.ValueStringPointer(),
|
|
DnsName: model.DnsName.ValueStringPointer(),
|
|
ContactEmail: model.ContactEmail.ValueStringPointer(),
|
|
Description: model.Description.ValueStringPointer(),
|
|
Acl: model.Acl.ValueStringPointer(),
|
|
Type: model.Type.ValueStringPointer(),
|
|
DefaultTTL: conversion.ToPtrInt32(model.DefaultTTL),
|
|
ExpireTime: conversion.ToPtrInt32(model.ExpireTime),
|
|
RefreshTime: conversion.ToPtrInt32(model.RefreshTime),
|
|
RetryTime: conversion.ToPtrInt32(model.RetryTime),
|
|
NegativeCache: conversion.ToPtrInt32(model.NegativeCache),
|
|
IsReverseZone: model.IsReverseZone.ValueBoolPointer(),
|
|
Primaries: &modelPrimaries,
|
|
}, nil
|
|
}
|
|
|
|
func toUpdatePayload(model *Model) (*dns.UpdateZonePayload, error) {
|
|
if model == nil {
|
|
return nil, fmt.Errorf("nil model")
|
|
}
|
|
|
|
return &dns.UpdateZonePayload{
|
|
Name: model.Name.ValueStringPointer(),
|
|
ContactEmail: model.ContactEmail.ValueStringPointer(),
|
|
Description: model.Description.ValueStringPointer(),
|
|
Acl: model.Acl.ValueStringPointer(),
|
|
DefaultTTL: conversion.ToPtrInt32(model.DefaultTTL),
|
|
ExpireTime: conversion.ToPtrInt32(model.ExpireTime),
|
|
RefreshTime: conversion.ToPtrInt32(model.RefreshTime),
|
|
RetryTime: conversion.ToPtrInt32(model.RetryTime),
|
|
NegativeCache: conversion.ToPtrInt32(model.NegativeCache),
|
|
Primaries: nil, // API returns error if this field is set, even if nothing changes
|
|
}, nil
|
|
}
|