diff --git a/pom.xml b/pom.xml
index a11f6eda..895deb85 100644
--- a/pom.xml
+++ b/pom.xml
@@ -24,7 +24,7 @@
com.uid2.core.vertx.CoreVerticle
io.vertx.core.Launcher
- 8.0.32
+ 8.1.0
${project.version}
diff --git a/src/main/java/com/uid2/core/Main.java b/src/main/java/com/uid2/core/Main.java
index 600448b1..2af7fded 100644
--- a/src/main/java/com/uid2/core/Main.java
+++ b/src/main/java/com/uid2/core/Main.java
@@ -149,7 +149,8 @@ public static void main(String[] args) {
}
var maaServerBaseUrl = ConfigStore.Global.getOrDefault(com.uid2.core.Const.Config.MaaServerBaseUrlProp, "https://sharedeus.eus.attest.azure.net");
- attestationService.with("azure-cc", new AzureCCCoreAttestationService(maaServerBaseUrl, ConfigStore.Global.get(Const.Config.CorePublicUrlProp)));
+ attestationService.with("azure-cc", new AzureCCCoreAttestationService(maaServerBaseUrl, ConfigStore.Global.get(Const.Config.CorePublicUrlProp), "azure-cc"));
+ attestationService.with("azure-cc-aks", new AzureCCCoreAttestationService(maaServerBaseUrl, ConfigStore.Global.get(Const.Config.CorePublicUrlProp), "azure-cc-aks"));
attestationService.with("gcp-oidc", new GcpOidcCoreAttestationService(corePublicUrl));