-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
UID2-4808 Add azure-cc-aks protocol #1340
base: main
Are you sure you want to change the base?
Conversation
f1a8d8c
to
023381f
Compare
8cf3425
to
21c462a
Compare
eb45e88
to
41d02b3
Compare
validate_url("core_base_url", environment) | ||
validate_url("optout_base_url", environment) | ||
validate_operator_key() | ||
# validate_url("core_base_url", environment) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ignore this for now, uncomment before merge
String maaServerBaseUrl = this.config.getString(Const.Config.MaaServerBaseUrlProp, "https://sharedeus.eus.attest.azure.net"); | ||
attestationProvider = AttestationFactory.getAzureCCAttestation(maaServerBaseUrl); | ||
break; | ||
case "azure-cc-aks": |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
QQ: We specify enclavePlatform
in config, however, azure-cc
and azure-cc-aks
gets the same attestation provider. Do we still want to separate azure-cc
and azure-cc-aks
for enclavePlatform
? It's quite confusing comapred to protocol
in operator key, should we potentially make them a same thing in the future?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it is fine since platform is different, attestation is same.
String maaServerBaseUrl = this.config.getString(Const.Config.MaaServerBaseUrlProp, "https://sharedeus.eus.attest.azure.net"); | ||
attestationProvider = AttestationFactory.getAzureCCAttestation(maaServerBaseUrl); | ||
break; | ||
case "azure-cc-aks": |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
cant we do
case "azure-cc", "azure-cc-aks":
6f2e3be
to
499ea63
Compare
No description provided.