Skip to content

Commit dc2a8ff

Browse files
Merge pull request #1175 from IABTechLab/cbc-UID2-4454-cloud-encryption-operator
Cbc UI d2 4454 cloud encryption operator
2 parents abe4a87 + 14360fe commit dc2a8ff

25 files changed

+409
-8
lines changed

conf/default-config.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@
3030
"salts_metadata_path": "salts/metadata.json",
3131
"services_metadata_path": "services/metadata.json",
3232
"service_links_metadata_path": "service_links/metadata.json",
33+
"cloud_encryption_keys_metadata_path": "cloud_encryption_keys/metadata.json",
34+
"cloud_encryption_keys_refresh_ms": 300000,
3335
"optout_metadata_path": null,
3436
"optout_inmem_cache": false,
3537
"enclave_platform": null,

conf/docker-config.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
"salts_metadata_path": "/com.uid2.core/test/salts/metadata.json",
3232
"services_metadata_path": "/com.uid2.core/test/services/metadata.json",
3333
"service_links_metadata_path": "/com.uid2.core/test/service_links/metadata.json",
34+
"cloud_encryption_keys_metadata_path": "/com.uid2.core/test/cloud_encryption_keys/metadata.json",
3435
"identity_token_expires_after_seconds": 3600,
3536
"optout_metadata_path": null,
3637
"optout_inmem_cache": false,

conf/integ-config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@
1414
"optout_api_token": "test-operator-key",
1515
"optout_api_uri": "http://localhost:8081/optout/replicate",
1616
"salts_expired_shutdown_hours": 12,
17+
"cloud_encryption_keys_metadata_path": "http://localhost:8088/cloud_encryption_keys/retrieve",
1718
"operator_type": "public"
18-
1919
}

conf/local-config.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
"salts_metadata_path": "/com.uid2.core/test/salts/metadata.json",
1010
"services_metadata_path": "/com.uid2.core/test/services/metadata.json",
1111
"service_links_metadata_path": "/com.uid2.core/test/service_links/metadata.json",
12+
"cloud_encryption_keys_metadata_path":"/com.uid2.core/test/cloud_encryption_keys/metadata.json",
1213
"identity_token_expires_after_seconds": 3600,
1314
"refresh_token_expires_after_seconds": 86400,
1415
"refresh_identity_token_after_seconds": 900,

conf/local-e2e-docker-private-config.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
"keysets_metadata_path": "http://core:8088/key/keyset/refresh",
1212
"keyset_keys_metadata_path": "http://core:8088/key/keyset-keys/refresh",
1313
"salts_metadata_path": "http://core:8088/salt/refresh",
14+
"cloud_encryption_keys_metadata_path": "http://core:8088/cloud_encryption_keys/retrieve",
1415
"identity_token_expires_after_seconds": 3600,
1516
"refresh_token_expires_after_seconds": 86400,
1617
"refresh_identity_token_after_seconds": 900,

conf/local-e2e-docker-public-config.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
"salts_metadata_path": "http://core:8088/salt/refresh",
1414
"services_metadata_path": "http://core:8088/services/refresh",
1515
"service_links_metadata_path": "http://core:8088/service_links/refresh",
16+
"cloud_encryption_keys_metadata_path": "http://core:8088/cloud_encryption_keys/retrieve",
1617
"identity_token_expires_after_seconds": 3600,
1718
"refresh_token_expires_after_seconds": 86400,
1819
"refresh_identity_token_after_seconds": 900,

conf/local-e2e-private-config.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
"salts_metadata_path": "http://localhost:8088/salt/refresh",
1414
"services_metadata_path": "http://localhost:8088/services/refresh",
1515
"service_links_metadata_path": "http://localhost:8088/service_links/refresh",
16+
"cloud_encryption_keys_metadata_path": "http://core:8088/cloud_encryption_keys/retrieve",
1617
"identity_token_expires_after_seconds": 3600,
1718
"refresh_token_expires_after_seconds": 86400,
1819
"refresh_identity_token_after_seconds": 900,

conf/local-e2e-public-config.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
"salts_metadata_path": "http://localhost:8088/salt/refresh",
1414
"services_metadata_path": "http://localhost:8088/services/refresh",
1515
"service_links_metadata_path": "http://localhost:8088/service_links/refresh",
16+
"cloud_encryption_keys_metadata_path": "http://core:8088/cloud_encryption_keys/retrieve",
1617
"identity_token_expires_after_seconds": 3600,
1718
"refresh_token_expires_after_seconds": 86400,
1819
"refresh_identity_token_after_seconds": 900,

conf/validator-latest-e2e-docker-public-config.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
"salts_metadata_path": "http://core:8088/salt/refresh",
1515
"services_metadata_path": "http://core:8088/services/refresh",
1616
"service_links_metadata_path": "http://core:8088/service_links/refresh",
17+
"cloud_encryption_keys_metadata_path": "https://core:8088/cloud_encryption_keys/retrieve",
1718
"identity_token_expires_after_seconds": 3600,
1819
"refresh_token_expires_after_seconds": 86400,
1920
"refresh_identity_token_after_seconds": 900,

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.uid2</groupId>
88
<artifactId>uid2-operator</artifactId>
9-
<version>5.44.6</version>
9+
<version>5.44.7-alpha-148-SNAPSHOT</version>
1010

1111
<properties>
1212
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

0 commit comments

Comments
 (0)