Skip to content

Commit bd57296

Browse files
added runtime config metadata path to private operator configs
1 parent a1040a9 commit bd57296

6 files changed

Lines changed: 21 additions & 3 deletions

File tree

conf/default-config.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
"services_metadata_path": "services/metadata.json",
3232
"service_links_metadata_path": "service_links/metadata.json",
3333
"cloud_encryption_keys_metadata_path": "cloud_encryption_keys/metadata.json",
34+
"runtime_config_metadata_path": "runtime_config/metadata.json",
3435
"encrypted_files": false,
3536
"optout_metadata_path": null,
3637
"optout_inmem_cache": false,

scripts/aws/conf/default-config.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
"salts_metadata_path": "salts/metadata.json",
2929
"services_metadata_path": "services/metadata.json",
3030
"service_links_metadata_path": "service_links/metadata.json",
31+
"runtime_config_metadata_path": "runtime_config/metadata.json",
3132
"optout_metadata_path": null,
3233
"optout_inmem_cache": false,
3334
"enclave_platform": "aws-nitro",

scripts/aws/conf/euid-integ-config.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,12 @@
1212
"optout_api_uri": "https://optout.integ.euid.eu/optout/replicate",
1313
"cloud_encryption_keys_metadata_path": "https://core.integ.euid.eu/cloud_encryption_keys/retrieve",
1414
"optout_s3_folder": "optout/",
15-
"identity_scope": "euid"
15+
"identity_scope": "euid",
16+
"runtime_config_store": {
17+
"type": "http",
18+
"config" : {
19+
"url": "https://core.integ.euid.eu/operator/config"
20+
},
21+
"config_scan_period_ms": 300000
22+
}
1623
}

scripts/aws/conf/uid2-integ-config.json

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,13 @@
1111
"service_links_metadata_path": "https://core-integ.uidapi.com/service_links/refresh",
1212
"optout_metadata_path": "https://optout-integ.uidapi.com/optout/refresh",
1313
"cloud_encryption_keys_metadata_path": "https://core-integ.uidapi.com/cloud_encryption_keys/retrieve",
14+
"runtime_config_metadata_path": "https://core-integ.uidapi.com/operator/config",
1415
"optout_s3_folder": "uid-optout-integ/",
15-
"identity_scope": "uid2"
16-
}
16+
"identity_scope": "uid2",
17+
"runtime_config_store": {
18+
"type": "http",
19+
"config" : {
20+
"url": "https://core-integ.uidapi.com/operator/config"
21+
},
22+
"config_scan_period_ms": 300000
23+
}}

scripts/azure-cc/conf/default-config.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
"salts_metadata_path": "salts/metadata.json",
2929
"services_metadata_path": "services/metadata.json",
3030
"service_links_metadata_path": "service_links/metadata.json",
31+
"runtime_config_metadata_path": "runtime_config/metadata.json",
3132
"optout_metadata_path": null,
3233
"enclave_platform": "azure-cc",
3334
"optout_inmem_cache": true,

scripts/gcp-oidc/conf/default-config.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
"salts_metadata_path": "salts/metadata.json",
2929
"services_metadata_path": "services/metadata.json",
3030
"service_links_metadata_path": "service_links/metadata.json",
31+
"runtime_config_metadata_path": "runtime_config/metadata.json",
3132
"optout_metadata_path": null,
3233
"enclave_platform": "gcp-oidc",
3334
"optout_inmem_cache": true,

0 commit comments

Comments
 (0)