An Azure service that provides streamlined full-stack web app development.
Hello ab
Thanks for contacting Microsoft Q&A. I’ll be happy to help clarify this issue.
Thanks for sharing the details. You’re encountering a known limitation with Azure Static Web Apps (SWA) when using the Enterprise-Grade Edge feature — the platform does not currently allow you to disable or remove individual TLS cipher suites (including the CBC-based ones flagged in your audit):
TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384 (0xc028)
TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256 (0xc027)
These cipher suites are part of the managed TLS configuration provided by the Static Web Apps infrastructure (built on Azure Front Door). Unlike App Service, SWA does not expose a “Minimum TLS Cipher Suite” setting or any other way to override the platform’s TLS negotiation.
**Recommendations
- Use your own Azure Front Door (Standard/Premium):** If you need to enforce stronger TLS policies, deploy a dedicated Azure Front Door Standard/Premium in front of your Static web app.
- Configure a custom TLS policy to exclude older CBC cyphers.
- Point your custom domain to the Front Door endpoint.
- Lock down the SWA so it only accepts traffic from your Front Door (via access restrictions/IP allowlist).
2. Open a Microsoft support request/feature request. If your compliance requirements require disabling these cyphers, could you raise a support ticket or submit a feature request? Cypher customisation for SWA is not yet available, but Microsoft tracks customer demand.
- Apply compensating controls
- Enable and prefer TLS 1.3 (modern clients will use stronger cypher suites).
- Configure HSTS to block downgrade attacks.
- Monitor connections to your app to detect clients using older/weaker suites.
Currently, there is no supported way to remove or disable weak cypher suites on Azure Static Web Apps Enterprise-Grade Edge. To meet strict compliance requirements, the recommended approach is to front your SWA with a dedicated Azure Front Door where you can fully control TLS policies.
https://learn.microsoft.com/azure/frontdoor/end-to-end-tls
https://learn.microsoft.com/azure/static-web-apps/enterprise-edge
If this answers your query, do click Accept Answer and Yes. If this answer was helpful, and you have any further queries, please let us know.
Siri