From d14d0de31b59626c69867f327c5b287f2153ee8f Mon Sep 17 00:00:00 2001 From: kubaa Date: Mon, 6 Mar 2023 18:28:31 +0000 Subject: [PATCH] Fix type mismatch --- .../third_party/terraform/utils/compute_instance_helpers.go.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mmv1/third_party/terraform/utils/compute_instance_helpers.go.erb b/mmv1/third_party/terraform/utils/compute_instance_helpers.go.erb index e83c67ea2431..d47ac9c953c4 100644 --- a/mmv1/third_party/terraform/utils/compute_instance_helpers.go.erb +++ b/mmv1/third_party/terraform/utils/compute_instance_helpers.go.erb @@ -204,7 +204,7 @@ func flattenScheduling(resp *compute.Scheduling) []map[string]interface{} { schedulingMap["max_run_duration"] = flattenComputeMaxRunDuration(resp.MaxRunDuration) } if resp.MaintenanceInterval != "" { - schedulingMap["maintenance_interval"] = *resp.MaintenanceInterval + schedulingMap["maintenance_interval"] = resp.MaintenanceInterval } <% end -%>