I have followed this article to setup an OWIN self hosted Web API within an Azure service fabric stateless service.
I also found this article which describes setting up an HTTPS endpoint within an Azure service fabric service.
...
<Certificates>
<EndpointCertificate Name="TestCert1" X509FindValue="FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF F0" X509StoreName="MY" />
</Certificates>
...
How do I configure the SSL certificate for my WebAPI service within service fabric? When I access my service fabric cluster in the Azure portal, the "Certificate" textboxes are greyed out.
In other Azure services their is typically a area to upload certificates which can then be referenced by the application.
Do I need to manually include my certificate in the service fabric package and install it into the certificate store before it can be referenced?
In addition does azure provide a HTTPS cert for *.cloudapp.azure.com that can be used during development?