Skip to content

Commit

Permalink
chore: ATLAS-178: update donor import function to v3
Browse files Browse the repository at this point in the history
  • Loading branch information
benbelow committed May 7, 2020
1 parent df0a17b commit 8e77e9d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Atlas.DonorImport.Api/Atlas.DonorImport.Api.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netcoreapp2.2</TargetFramework>
<TargetFramework>netcoreapp3.1</TargetFramework>
<OutputPath>bin/</OutputPath>
</PropertyGroup>

Expand Down
2 changes: 1 addition & 1 deletion Atlas.DonorImport.Data/Atlas.DonorImport.Data.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netcoreapp2.2</TargetFramework>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netcoreapp2.2</TargetFramework>
<TargetFramework>netcoreapp3.1</TargetFramework>
<AzureFunctionsVersion>v3</AzureFunctionsVersion>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<OutputPath>bin/</OutputPath>
</PropertyGroup>

</Project>
2 changes: 1 addition & 1 deletion terraform/donor_import_function.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ resource "azurerm_function_app" "atlas_donor_import_function" {
location = local.location
app_service_plan_id = azurerm_app_service_plan.atlas.id
https_only = true
version = "~2"
version = "~3"
storage_connection_string = azurerm_storage_account.shared_function_storage.primary_connection_string

tags = local.common_tags
Expand Down

0 comments on commit 8e77e9d

Please sign in to comment.