> ## Documentation Index
> Fetch the complete documentation index at: https://docs.morph-data.io/llms.txt
> Use this file to discover all available pages before exploring further.

# config

You can write configuration values in SQL using jinja as follows.

```sql theme={"dark"}
{{
	config(
		name="test",
		description="this is test sql statement",
		connection="your_connection_slug",
	)
}}

select 1 as test
```

## Parameters

<ParamField body="name" type="string" default="SQL file name">
  The process name, which can also be used as an alias when called from other files.
</ParamField>

<ParamField body="description" type="string">
  You can describe the process.
</ParamField>

<ParamField body="connection" type="string" default="default_connection set in morph_project.yml">
  The destination of connections other than the built-in ones registered on the screen (optional).

  ※ If not specified, it will be set to the built-in PostgreSQL.
</ParamField>
