SCA Configuration - SecContacts.AzureBlobStorage

SecContacts.AzureBlobStorage

This setting defines Azure Blob Storage (ABS) as an optional data source for contacts. It enables Secure Contacts App (SCA) to retrieve contact data from CSV or JSON files stored in Azure Blob Storage. These CSV or JSON files can be exported contacts from any application, including on-premises systems. Exports are parsed, encrypted, and uploaded to Azure Blob Storage using the ABS Connector (ABScon).

  • Name: SecContacts.AzureBlobStorage

  • Value: [{"name":"<abs name>", "value":"<abs access key>"}]

The Value property is a JSON array of name-value pairs.

  • If there is only one entry, it becomes the default Azure Blob Storage data source.

  • If there are multiple entries, SCA assigns sequential IDs automatically (e.g., ABS1, ABS2, ABS3), regardless of the name value.

  • Each entry represents a separate CSV or JSON source file.

Configuration fields

Field
Type
Required
Description

name

string

Yes

Unique identifier for the Azure Blob Storage entry. Can be any value.

value

string

Yes

ABS access key (generated by ABScon) for the Azure Blob Storage.

Examples

Single Azure Blob Storage entry

[
  {
    "name": "ABS1",
    "value": "Xt8TVki4+ndWtqSVTAXTNr(...)0UFWNuDo2du3wZ5w92a7w=="
  }
]

Single entry becomes the default Azure Blob Storage data source (ABS). No numbering is applied because it’s the only entry.

Multiple Azure Blob Storage entries

[
  {
    "name": "ABS1",
    "value": "Xt8TVki4+ndWtqSVTAXTNr(...)0UFWNuDo2du3wZ5w92a7w=="
  },
  {
    "name": "ABS2",
    "value": "Qz1Vki5+abWtqXYTAXTNm(...)1XFWNuDo9du3wZ7x92b=="
  },
  {
    "name": "ABS-Extra",
    "value": "Abc123XyZ(...)7890=="
  }
]

Auto-enumeration applies because there are multiple entries:

  • First entry → ABS1

  • Second entry → ABS2

  • Third entry → ABS3

Each entry represents a separate CSV or JSON source file uploaded via the ABS Connector.

ABS Connector Overview

The Azure Blob Storage Connector (ABScon) is a command-line tool that allows an administrator to:

  1. Parse pre-exported contacts from CSV or JSON files.

  2. Map properties from any exported format into the SCA contact format.

  3. Encrypt the files automatically.

  4. Upload the encrypted files to Azure Blob Storage.

Download ABS Connector (ABScon): Contact us for details.

Once the files are in Azure Blob Storage, SCA can retrieve them as a data source, treating each file as a separate contact source.

Each uploaded file can correspond to one entry in SecContacts.AzureBlobStorage. Multiple files can be configured, and SCA will auto-enumerate the data sources (e.g., ABS1, ABS2, …).

Last updated

Was this helpful?