From 72499ecfe6e12e7dadfde53d873d82b0c4064871 Mon Sep 17 00:00:00 2001 From: Are Almaas Date: Wed, 5 Jun 2024 14:22:00 +0200 Subject: [PATCH] chore: fix security vulnerability for slacknotifier (#815) ## Description Got notified about the issue in GH security scanning: https://github.com/digdir/dialogporten/security/code-scanning/5 ## Related Issue(s) - #{issue number} ## Verification - [ ] **Your** code builds clean without any errors or warnings - [ ] Manual testing done (required) - [ ] Relevant automated test added (if you find this hard, leave it and we'll help out) ## Documentation - [ ] Documentation is updated (either in `docs`-directory, Altinnpedia or a separate linked PR in [altinn-studio-docs.](https://github.com/Altinn/altinn-studio-docs), if applicable) --- .azure/modules/functionApp/slackNotifier.bicep | 1 + 1 file changed, 1 insertion(+) diff --git a/.azure/modules/functionApp/slackNotifier.bicep b/.azure/modules/functionApp/slackNotifier.bicep index a6188f647..ca6ec8759 100644 --- a/.azure/modules/functionApp/slackNotifier.bicep +++ b/.azure/modules/functionApp/slackNotifier.bicep @@ -25,6 +25,7 @@ resource storageAccount 'Microsoft.Storage/storageAccounts@2023-04-01' = { properties: { supportsHttpsTrafficOnly: true defaultToOAuthAuthentication: true + minimumTlsVersion: 'TLS1_2' } }