Configuration Files
These configuration files contain the connection details for each OSDU environment at Equinor — server URLs, service paths, authentication settings, and default entitlements.
They are used by the OSDU CLI, but the values (server URLs, partition IDs, scopes, client IDs) are the same ones you need for any application or script that connects to OSDU.
Where the CLI looks for configs
- Windows:
C:\Users\<YourUsername>\.osducli\ - macOS/Linux:
~/.osducli/
.osducli/
├── config_dev
├── config_test
└── config_prod
Dev (equinorswedev)
[core]
server = https://equinorswedev.energy.azure.com
crs_catalog_url = /api/crs/catalog/v2/
crs_converter_url = /api/crs/converter/v2/
entitlements_url = /api/entitlements/v2/
file_url = /api/file/v2/
legal_url = /api/legal/v1/
schema_url = /api/schema-service/v1/
search_url = /api/search/v2/
storage_url = /api/storage/v2/
wellbore_ddms_url = /api/os-wellbore-ddms
unit_url = /api/unit/v3/
workflow_url = /api/workflow/v1/
data_partition_id = dev
legal_tag = dev-equinor-private-default
acl_viewer = data.default.viewers@dev.dataservices.energy
acl_owner = data.osdudevops.owners@dev.dataservices.energy
authentication_mode = msal_interactive
authority = https://login.microsoftonline.com/3aa4a235-b6e2-48d5-9195-7fcf05b459b0
scopes = https://energy.azure.com/.default openid
client_id = 7a414874-4b27-4378-b34f-bc9e5a5faa4f
Test (equinorswetest)
[core]
server = https://equinorswetest.energy.azure.com
crs_catalog_url = /api/crs/catalog/v2/
crs_converter_url = /api/crs/converter/v2/
entitlements_url = /api/entitlements/v2/
file_url = /api/file/v2/
legal_url = /api/legal/v1/
schema_url = /api/schema-service/v1/
search_url = /api/search/v2/
storage_url = /api/storage/v2/
wellbore_ddms_url = /api/os-wellbore-ddms
unit_url = /api/unit/v3/
workflow_url = /api/workflow/v1/
data_partition_id = test
legal_tag = test-equinor-private-default
acl_viewer = data.default.viewers@test.dataservices.energy
acl_owner = data.osdudevops.owners@test.dataservices.energy
authentication_mode = msal_interactive
authority = https://login.microsoftonline.com/3aa4a235-b6e2-48d5-9195-7fcf05b459b0
scopes = https://energy.azure.com/.default openid
client_id = 7a414874-4b27-4378-b34f-bc9e5a5faa4f
Prod (equinorswe)
Prod still uses the old per-instance scope
Entra ID integration is not yet available for production. Use the per-instance resource ID scope below — not the https://energy.azure.com/.default scope used in dev and test.
[core]
server = https://equinorswe.energy.azure.com
crs_catalog_url = /api/crs/catalog/v2/
crs_converter_url = /api/crs/converter/v2/
entitlements_url = /api/entitlements/v2/
file_url = /api/file/v2/
legal_url = /api/legal/v1/
schema_url = /api/schema-service/v1/
search_url = /api/search/v2/
storage_url = /api/storage/v2/
wellbore_ddms_url = /api/os-wellbore-ddms
unit_url = /api/unit/v3/
workflow_url = /api/workflow/v1/
data_partition_id = data
legal_tag = data-equinor-private-default
acl_viewer = data.default.viewers@data.dataservices.energy
acl_owner = data.osdudevops.owners@data.dataservices.energy
authentication_mode = msal_interactive
authority = https://login.microsoftonline.com/3aa4a235-b6e2-48d5-9195-7fcf05b459b0
scopes = 5a1178c2-5867-4a34-8fb8-216164e30b5f/.default openid
client_id = 7a414874-4b27-4378-b34f-bc9e5a5faa4f
Last update:
2026-02-27