Error in profiles.yml file

Hey Everyone,

I have installed dbt and using snowflake adapter. However I have a problem with my profiles.yml file.

Error message:

12:58:16 Encountered an error:
Runtime Error
Syntax error near line 7

4 | dev:
5 | type: snowflake
6 | account: [ANALYTICS]
7 |
8 | # User/password auth
9 | user: [AJJU@TEST.ORG]
10 | password: [Test]

Raw Error:

while scanning for the next token
found character that cannot start any token
in “”, line 7, column 1

Some example code or error messages

my-snowflake-db:
target: dev
outputs:
dev:
type: snowflake
account: [ANALYTICS]
user: [AJJU@TEST.ORG]
password: [Test]
role: [DEVELOPER]
database: [DEV]
warehouse: [XL_WH]
schema: [DI_TEST]
threads: [4]
client_session_keep_alive: False
#query_tag: [anything]

      # optional
      connect_retries: 0 # default 0
      connect_timeout: 10 # default: 10
      retry_on_database_errors: False # default: false
      retry_all: False  # default: false
      reuse_connections: True # default: True if client_session_keep_alive is False, otherwise None

For some reason I think it is using my old profiles.yml file. Can someone help me with this.

Thanks,
Ajju