From facf1a40730fd3563699124bd88fed537810c258 Mon Sep 17 00:00:00 2001 From: Mohamed Asaker Date: Fri, 1 Nov 2024 17:16:56 -0700 Subject: [PATCH] Set dotnet E2E nuget test target for dotnet sdk v1.3.2 --- terraform/dotnet/ec2/nuget/main.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/terraform/dotnet/ec2/nuget/main.tf b/terraform/dotnet/ec2/nuget/main.tf index 7fdebad8b..c33aedd77 100644 --- a/terraform/dotnet/ec2/nuget/main.tf +++ b/terraform/dotnet/ec2/nuget/main.tf @@ -137,7 +137,7 @@ resource "null_resource" "main_service_setup" { export OTEL_RESOURCE_ATTRIBUTES=service.name=dotnet-sample-application-${var.test_id} cd ./asp_frontend_service - dotnet add package AWS.Distro.OpenTelemetry.AutoInstrumentation --prerelease + dotnet add package AWS.Distro.OpenTelemetry.AutoInstrumentation --version 1.3.2 dotnet build --runtime linux-x64 dos2unix bin/Debug/netcoreapp8.0/linux-x64/adot-launch.sh nohup sh bin/Debug/netcoreapp8.0/linux-x64/adot-launch.sh dotnet bin/Debug/netcoreapp8.0/linux-x64/asp_frontend_service.dll & @@ -226,7 +226,7 @@ resource "null_resource" "remote_service_setup" { export OTEL_RESOURCE_ATTRIBUTES=service.name=dotnet-sample-remote-application-${var.test_id} export ASPNETCORE_URLS=http://0.0.0.0:8081 - dotnet add package AWS.Distro.OpenTelemetry.AutoInstrumentation --prerelease + dotnet add package AWS.Distro.OpenTelemetry.AutoInstrumentation --version 1.3.2 dotnet build --runtime linux-x64 dos2unix bin/Debug/netcoreapp8.0/linux-x64/adot-launch.sh nohup sh bin/Debug/netcoreapp8.0/linux-x64/adot-launch.sh dotnet bin/Debug/netcoreapp8.0/linux-x64/asp_remote_service.dll &