From b6727c9afe6a92b306ab84c7bb222f91732549be Mon Sep 17 00:00:00 2001 From: kt Date: Fri, 15 Nov 2024 12:04:12 -0800 Subject: [PATCH] Update internal/services/datafactory/data_factory_integration_runtime_azure_resource.go Co-authored-by: stephybun --- .../data_factory_integration_runtime_azure_resource.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/services/datafactory/data_factory_integration_runtime_azure_resource.go b/internal/services/datafactory/data_factory_integration_runtime_azure_resource.go index b4ac3d9c661f..460f351e46de 100644 --- a/internal/services/datafactory/data_factory_integration_runtime_azure_resource.go +++ b/internal/services/datafactory/data_factory_integration_runtime_azure_resource.go @@ -273,7 +273,7 @@ func resourceDataFactoryIntegrationRuntimeAzureDelete(d *pluginsdk.ResourceData, func expandDataFactoryIntegrationRuntimeAzureComputeProperties(d *pluginsdk.ResourceData) *datafactory.IntegrationRuntimeComputeProperties { return &datafactory.IntegrationRuntimeComputeProperties{ - Location: pointer.To(azure.NormalizeLocation(d.Get("location").(string))), + Location: pointer.To(location.Normalize(d.Get("location").(string))), DataFlowProperties: &datafactory.IntegrationRuntimeDataFlowProperties{ ComputeType: datafactory.DataFlowComputeType(d.Get("compute_type").(string)), CoreCount: pointer.To(int32(d.Get("core_count").(int))),