Skip to content

Commit d4465a9

Browse files
authored
UID2-4808 Use shared 8.1.0 version to get AksAttestationService (#213)
* Use shared snapshot version to get AksAttestationService * Fix typo * Use 8.0.34-alpha-191-SNAPSHOT shared * Use uid2-shared 8.1.0
1 parent 37d2bfa commit d4465a9

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<vertx.verticle>com.uid2.core.vertx.CoreVerticle</vertx.verticle>
2525
<launcher.class>io.vertx.core.Launcher</launcher.class>
2626

27-
<uid2-shared.version>8.0.32</uid2-shared.version>
27+
<uid2-shared.version>8.1.0</uid2-shared.version>
2828
<image.version>${project.version}</image.version>
2929
</properties>
3030

src/main/java/com/uid2/core/Main.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,8 @@ public static void main(String[] args) {
149149
}
150150

151151
var maaServerBaseUrl = ConfigStore.Global.getOrDefault(com.uid2.core.Const.Config.MaaServerBaseUrlProp, "https://sharedeus.eus.attest.azure.net");
152-
attestationService.with("azure-cc", new AzureCCCoreAttestationService(maaServerBaseUrl, ConfigStore.Global.get(Const.Config.CorePublicUrlProp)));
152+
attestationService.with("azure-cc", new AzureCCCoreAttestationService(maaServerBaseUrl, ConfigStore.Global.get(Const.Config.CorePublicUrlProp), "azure-cc"));
153+
attestationService.with("azure-cc-aks", new AzureCCCoreAttestationService(maaServerBaseUrl, ConfigStore.Global.get(Const.Config.CorePublicUrlProp), "azure-cc-aks"));
153154

154155
attestationService.with("gcp-oidc", new GcpOidcCoreAttestationService(corePublicUrl));
155156

0 commit comments

Comments
 (0)