On-Premises Data Store Configuration Examples

Structured on-premises data store configuration

[
  {
    "accountName": "poc-onprem",
    "accountId": "poc-onprem-ded04baca8",
    "region": "onprem",
    "clusterName": "postgres-cluster",
    "dataStoreType": "ONPREM-POSTGRES",
    "dataStoreName": "i-02330257f15debac6-postgres",
    "host": "example.host.com",
    "port": "5432"
    "user": "ec2pguser1",
    "password": "welcome1"        
  }
]

Multiple structured on-premises data store configuration (databases)

[
  {
    "accountName": "poc-onprem",
    "accountId": "poc-onprem-ded04baca8",
    "region": "onprem",
    "clusterName": "postgres-cluster",
    "dataStoreType": "ONPREM-POSTGRES",
    "dataStoreName": "i-0987654f15debac6-postgres",
    "host": "example.host.com",
    "port": "5432"
    "user": "sampleuser1",
    "password": "welcome1"        
  },
  {
    "accountName": "poc-onprem",
    "accountId": "poc-onprem-ded04baca8",
    "region": "onprem",
    "clusterName": "postgres-cluster",
    "dataStoreType": "ONPREM-POSTGRES",
    "dataStoreName": "i-4898765f15debac6-postgres",
    "host": "example.host.com",
    "port": "5433"
    "user": "sampleuser2",
    "password": "welcome1"        
  }
]

Unstructured on-premises data store configuration (Windows File share)

[
  {
    "accountName": "Fileshare Datastore",
    "accountId": "poc-onprem-ded04baca8",
    "region": "onprem",
    "clusterName": "fileshare-1",
    "dataStoreType": "ONPREM-WINDOWS-FILE-SHARE",
    "dataStoreName": "Filestore Storage",
    "host": "10.192.10.23",
    "port": "445",
    "user": "win-share-user",
    "password": "testshareuser1",
    "fileShareName": "common-sharing-repo"
  }
]

Multiple unstructured on-premises data store configuration (Windows File share)

[
  {
    "accountName": "Fileshare Datastore",
    "accountId": "poc-onprem-ded04baca8",
    "region": "onprem",
    "clusterName": "fileshare-1",
    "dataStoreType": "ONPREM-WINDOWS-FILE-SHARE",
    "dataStoreName": "Filestore Storage",
    "host": "10.192.10.23",
    "port": "445",
    "user": "win-share-user",
    "password": "testshareuser1",
    "fileShareName": "common-sharing-repo"
  },
  {
    "accountName": "Fileshare Datastore",
    "accountId": "poc-onprem-ded04baca8",
    "region": "onprem",
    "clusterName": "fileshare-1",
    "dataStoreType": "ONPREM-WINDOWS-FILE-SHARE",
    "dataStoreName": "Filestore Storage 2",
    "host": "10.192.10.23",
    "port": "445",
    "user": "win-share-user",
    "password": "testshareuser1",
    "fileShareName": "common-sharing-repo"
  }  
]