Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
source {
  // The Cassandra server used with Syndeia Cloud 3.2
  db {
    host = "localhost"
    username = ""
    password = ""
    port = 9042
    keyspace = "syndeia"
  }

  // If the Syndeia Cloud 3.2 server is LDAP enabled
  server {
    isLdapEnabled = false
  }
}

target {
  // The Cassandra server used with Syndeia Cloud 3.3
  db {
    host = "localhost"
    username = ""
    password = ""
    port = 9042
    keyspace = "syndeia_cloud_devops"
  }
}

targetStore {
  // The Cassandra server used with Syndeia Cloud 3.3 (for auto keys)
  db {
    host = "localhost"
    username = ""
    password = ""
    port = 9042
    keyspace = "syndeia_cloud_store"
  }
}

// Syndeia Cloud 3.3 admin user credentials
sign-in {
  username = ""
  password = ""
}

// Syndeia Cloud 3.3 server host, port and protocol
server {
  ip-address = "localhost"
  port = 9000
  protocol = "http"
}

api {
  default-wait-duration = 2
}

...