Untitled

 avatar
unknown
plain_text
a month ago
2.1 kB
6
Indexable
execution-engine:
  triggeredSoarActionsTableName: triggered_soar_actions
  bigQueryDatasetPrefix: account
  redisHost: localhost
  spannerInstance: soar-developer
  spannerDatabase: soar-db
  soarAdminServiceHost: localhost
  adminApiServiceHost: localhost
  googleCloud:
    project: cysiv-dev-kiranr
    soarProject: cysiv-dev-kiranr
  loggify:
    filterBucket: cysiv-dev-kiranr-connector-logstash-filters
  subscription:
    topic: soar-action-execution-test
    subscription: soar-action-execution-test-sub
    requestBytesThreshold: 1048576 # 1MB
    maxOutstandingMessages: 4000
    maxOutstandingRequestBytes: 1000000000 # ~ 1 GB
    maxAckExtensionPeriod: 10 # in seconds
    terminationTimeoutMilliseconds: 30000
    parallelPullCount: 8
    pullerThreads: 8
  resolvedActionSubscription:
    topic: ${SOAR_RESOLVED_ACTION_TOPIC}
    subscription: ${SOAR_RESOLVED_ACTION_SUBSCRIPTION}
    requestBytesThreshold: 1048576 # 1MB
    maxOutstandingMessages: 4000
    maxOutstandingRequestBytes: 1000000000 # ~ 1 GB
    maxAckExtensionPeriod: 10 # in seconds
    parallelPullCount: 2
    pullerThreads: 2
  elasticsearch:
    connectTimeoutMilliseconds: 5000
    socketTimeoutMilliseconds: 60000
    retries: 5
    esVersion: es7

management:
  server.ssl.enabled: false
  health.elasticsearch.enabled: false
  trace.http:
    enabled: true
    include: PRINCIPAL
  endpoints.web:
    base-path: /
    exposure:
      include: health,prometheus

KMS:
  projectId: ${execution-engine.googleCloud.project}
  locationId: us-central1 #static location of keyring
  keyRingId: ${KEY_RING}
  keyId: ${KEY_NAME}

server:
  error:
    include-message: always # include the message in Spring's default API error responses

spring:
  datasource:
    url: jdbc:cloudspanner:/projects/fs-soar-dev/instances/${execution-engine.spannerInstance}/databases/${execution-engine.spannerDatabase}
    driver-class-name: com.google.cloud.spanner.jdbc.JdbcDriver

logging:
  level:
    org.springframework.security: INFO

scheduling:
  janitor:
    enabled: false # False for local development, TRUE for envs
    cron: '0 0 */2 * * ?' # Every 2 hours
Leave a Comment