Skip to content

Commit f024760

Browse files
committed
Fix issue #5998 - certificates created without server authentication usage
1 parent fb52143 commit f024760

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/ResourceManager/ServiceFabric/ChangeLog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
- Additional information about change #1
1919
-->
2020
## Current Release
21+
* Fixed server authentication usage with generated certificates (Issue #5998)
2122

2223
## Version 0.3.5
2324
* Update default Linux image version sku

src/ResourceManager/ServiceFabric/Commands.ServiceFabric/Commands/ServiceFabricClusterCertificateCmdlet.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ private void CreateSelfSignedCertificate(string subjectName, string keyVaultUrl,
211211
X509CertificateProperties = new X509CertificateProperties()
212212
{
213213
Subject = subjectName,
214-
Ekus = new List<string> { "1.3.6.1.5.5.7.3.2" }
214+
Ekus = new List<string> { "1.3.6.1.5.5.7.3.1", "1.3.6.1.5.5.7.3.2" }
215215
},
216216
IssuerParameters = new IssuerParameters() { Name = Constants.SelfSignedIssuerName }
217217
};

0 commit comments

Comments
 (0)