Skip to content

Commit

Permalink
add config for apple validation
Browse files Browse the repository at this point in the history
  • Loading branch information
Thumimku committed Nov 15, 2023
1 parent bcd5e1f commit 48012ca
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,8 @@
<ClientAttestation>
<!-- This tag defines the allowed window between current time and attestation object creation time. -->
<AllowedWindowMillis>60000</AllowedWindowMillis>
<AppleAttestationRootCertificatePath>${carbon.home}/repository/resources/identity/apple/attestation/apple_attestation_root_ca.pem</AppleAttestationRootCertificatePath>
<AppleAttestationRevocationCheckEnabled>false</AppleAttestationRevocationCheckEnabled>
</ClientAttestation>

<OAuth>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,8 @@
<ClientAttestation>
<!-- This tag defines the allowed window between current time and attestation object creation time. -->
<AllowedWindowMillis>{{client_attestation.allowed_window}}</AllowedWindowMillis>
<AppleAttestationRootCertificatePath>{{client_attestation.apple_attestation_root_certificate_path}}</AppleAttestationRootCertificatePath>
<AppleAttestationRevocationCheckEnabled>{{client_attestation.apple_attestation_revocation_check_enabled}}</AppleAttestationRevocationCheckEnabled>
</ClientAttestation>

<OAuth>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1374,5 +1374,7 @@
"organization_management.self_service.default_token_expiry_time": "7200",
"organization_management.self_service.internal_role_name": "B2B-SS-System-Role",
"organization_management.self_service.user_store_name_for_system_user": "PRIMARY",
"client_attestation.allowed_window": "60000"
"client_attestation.allowed_window": "60000",
"client_attestation.apple_attestation_root_certificate_path": "${carbon.home}/repository/resources/identity/apple/attestation/apple_attestation_root_ca.pem",
"client_attestation.apple_attestation_revocation_check_enabled": false
}

0 comments on commit 48012ca

Please sign in to comment.