How to set Certificates and SNIs in Kong DB-less

snis:
- hello.test

Same error as

snis: [“hello.test”]

I run Kong in Docker with kong:1.3rc1 and add certificates via API, then use

kong config db_export kong.yml

kong.yml look like this worked for me with kong 1.2.x

_format_version: '1.1'
services:
- name: test
  url: http://httpbin.org
  routes:
  - name: test
    hosts:
    - hello.test

certificates:
- cert: "-----BEGIN CERTIFICATE-----..."
  key: "-----BEGIN PRIVATE KEY-----..."
  snis:
  - name: hello.test

Thank you @bungle for quick response :slight_smile: