Release/august - #207
Merged
Dominic Betts (dominicbetts) merged 5 commits intoAug 21, 2026
Merged
Conversation
added 5 commits
May 12, 2026 13:24
…st bundle support and TLS configuration
Dominic Betts (dominicbetts)
merged commit Aug 21, 2026
82eaae0
into
Azure-Samples:main
1 check passed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Security process update, with some minor updates to docs and deployment process.
NOTE this only applies to the simulation modules
edgemqttsimand
demohistorianwithin the AIO quickstart. Other components are unaffected.Confirmed as a valid CWE-295 certificate-validation issue in both
edgemqttsimand
demohistorian. The MQTT clients previously transmitted the KubernetesServiceAccount token while TLS certificate validation was disabled.
The fix is implemented. Both clients now require the AIO broker CA with
ssl.CERT_REQUIRED, preserve hostname validation, and refuse the K8S-SATconnection before reading or sending the token when the CA is missing, unreadable,
empty, or invalid. The applications emit an explicit nonsecret log message for
each of these failure cases.
The Kubernetes manifests now mount the AIO trust bundle read-only at
/var/run/certs/ca.crt.Deploy-EdgeModules.ps1automatically refreshes thenamespace-local ConfigMap from the AIO-managed trust bundle before deploying
either module. The default listener continues to use AIO
cert-manager/trust-manager; custom Key Vault-backed certificates remain managed
through AIO SecretSync.
Validation completed in a development AIO environment.
edgemqttsimanddemohistorianwere both Running and Ready with zero restarts. Both logged TLSserver verification and successful MQTT connections. The simulator published
telemetry, and the historian subscribed and persisted 2,494 messages across 14
topics with zero session errors. Source scans found no remaining
CERT_NONE,tls_insecure_set(True), or unverified-TLS guidance in the affected modules.