From 45487d92e0f3421c237bc571d4164bc546d305d5 Mon Sep 17 00:00:00 2001 From: Chris Ayers Date: Wed, 29 Jun 2022 12:56:44 -0400 Subject: [PATCH] Minor demo updates --- dotnet-sample/Program.cs | 2 +- dotnet-sample/iac/main.bicep | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dotnet-sample/Program.cs b/dotnet-sample/Program.cs index f0094f7..c4c4613 100644 --- a/dotnet-sample/Program.cs +++ b/dotnet-sample/Program.cs @@ -1,6 +1,6 @@ var builder = WebApplication.CreateBuilder(args); var app = builder.Build(); -app.MapGet("/", () => "Hello DevIntersections!"); +app.MapGet("/", () => "Hello FTA Live!"); app.Run(); diff --git a/dotnet-sample/iac/main.bicep b/dotnet-sample/iac/main.bicep index 660b571..740a232 100644 --- a/dotnet-sample/iac/main.bicep +++ b/dotnet-sample/iac/main.bicep @@ -3,7 +3,7 @@ param sku string = 'S1' // The SKU of App Service Plan param location string = resourceGroup().location // Location for all resources param linuxFxVersion string = 'DOTNETCORE|6.0' // The runtime stack of web app -var appServicePlanName = toLower('AppServicePlan-FeatureFlags') +var appServicePlanName = toLower('AppServicePlan-gh-demo') var webSiteName = toLower('wapp-${webAppName}')