skip to Main Content

Can we use self-signed certification for our azure function which run on timer schedule/trigger

I developed an Azure Function which is timer triggered. For this I created a self-signed certification : New-SelfSignedCertificate -certstorelocation cert:localmachinemy -dnsname "SP Az Func 3" $pwd =ConvertT-SecureString -String "**************" -Force -AsPlainText Export-PfxCertificate -cert cert:localMachinemyEB7D9E53BA1DF88AEDE1EA8CA3488CD794E0A9E9 -FilePath "c:SPAzFunc2.pfx" -Password $pwd Export-Certificate -cert…

VIEW QUESTION
Back To Top
Search