Two suites in kitchen.yml file

Hi experts,
Could you guide me what is the syntax for wrting two suites.Below gives error
when i do kitchen converge

-----> Starting Kitchen (v1.23.2)
>>>>>> ------Exception-------
>>>>>> Class: Kitchen::UserError
>>>>>> Message: Error parsing /home/sandeep/Desktop/new1/cms_mysql/.kitchen.yml as YAML.
Please run `kitchen diagnose --no-instances --loader' to help debug your issue.
>>>>>> ----------------------
>>>>>> Please see .kitchen/logs/kitchen.log for more details
>>>>>> Also try running `kitchen diagnose --all` for configuration
---
driver:
  name: vagrant
  linked_clone: true
  gui: false
  synced_folders:
  - ["/home/sandeep/mysql/","/home/sandeep/mysql", "create: true"]
  customize:
    audio: none

provisioner:
  name: chef_zero
  product_name: chef
  product_version: 13.6.4
  multiple_converge: 2
  enforce_idempotency: true

verifier:
  name: inspec

platforms:
   #- name: centos-6
  - name: centos-7
suites:
  - name: default
    run_list:
      - recipe[cms_mysql::default]
    data_bags_path: 'test/integration/default/data_bags'
    attributes:
      chef-vault:
        databag_fallback: true
      cms_mysql:
        vault:
          name: 'secrets'
    verifier:
      inspec_tests:
        - test/integration/default
    attributes:
      
      cms_mysql:
        repo:
          path: '/Binaries/MYSQL/RHEL7/'
  - name: default1
    run_list:
      - recipe[cms_mysql::default]
    data_bags_path: 'test/integration/default/data_bags'
    attributes:
      chef-vault:
        databag_fallback: true
      cms_mysql:
        vault:
          name: 'secrets'
    verifier:
      inspec_tests:
        - test/integration/default
    attributes:
      
      cms_mysql:
        repo:
          path: '/Binaries/MYSQL/RHEL7/'
dbname: 'mysqlcls'

YAML is picky about indentation and formatting so something about the syntax is wrong, to see a well formatted file you can reference https://github.com/chef-cookbooks/openldap/blob/master/kitchen.yml

In the above you have keys like attributes specified twice on each suite when you only need it once. There are probably some other formatting issues but because it wasn't posted as a code block (I fixed that in the post for you) it's hard to tell what other formatting might be incorrect.

Thank you for your help on this issue i have been struggling a lot with this issue.Iam able to resolve the issue with your help ,Appreciate your guidance on this.Saved my day!!!