Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/main/java/com/uid2/admin/vertx/RequestUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ public class RequestUtil {
"aws-nitro",
"gcp-vmid",
"gcp-oidc",
"azure-cc"
"azure-cc",
"azure-cc-aks"
);

public static String getRolesSpec(Set<Role> roles) {
Expand Down
16 changes: 16 additions & 0 deletions src/main/resources/localstack/s3/core/operators/operators.json
Original file line number Diff line number Diff line change
Expand Up @@ -128,5 +128,21 @@
"key_hash": "rx3SYxt2PdnIIbhGMc0Cue3/JTk9WwyDiMMOp5WiU6pXbdkhjZ+BxgIChzMMZeLqAi/E4G5XZHMFnOe8Zzx3jg==",
"key_salt": "0L8h9CSPfDFEHurZZ33OOogd26zSjApBTWLmYHtauC8=",
"key_id": "UID2-O-L-127-pDqph"
},
{
"key": "UID2-O-L-124-xLZElr.QQ4UoUtg/1BcAw27O//HRBuxEWXv/nOQc4j6k=",
"key_hash": "nteJZFdETvxwYVD1ahPlATuSYWt3BHtmJqUumLQLXXCD0/rU4WnNpOeLHMVViYPKSpyTBLfYqL7ce6PHZiVPrQ==",
"key_salt": "+iBSy933XDw8X4j/N0ktbr7Mw4NaZvIsMF2Xdy7DQK8=",
"name": "dev-test-aks",
"contact": "dev-test-aks",
"protocol": "azure-cc-aks",
"created": 1738641691,
"disabled": false,
"site_id": 124,
"roles": [
"OPERATOR"
],
"operator_type": "PRIVATE",
"key_id": "UID2-O-L-124-xLZEl"
}
]
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public void enclave_List_Success(Vertx vertx, VertxTestContext vertxTestContext)
}

@ParameterizedTest
@ValueSource(strings = {"aws-nitro", "azure-cc", "gcp-oidc"})
@ValueSource(strings = {"aws-nitro", "azure-cc", "gcp-oidc", "azure-cc-aks"})
public void enclaveId_Add_Success(String protocol, Vertx vertx, VertxTestContext vertxTestContext) {
fakeAuth(Role.PRIVILEGED);

Expand Down