# Configure the Pulsar inbound connector

The `config` subsection of `aerospike-pulsar-inbound.yml` can have the following options:

| Option | Required | Default | Description |
| --- | --- | --- | --- |
| [`aerospike`](https://aerospike.com/docs/connectors/streaming/pulsar/inbound/configure/aerospike) | yes |  | Configures the connection properties that the connector must use when connecting to your Aerospike database. |
| [`topics`](https://aerospike.com/docs/connectors/streaming/pulsar/inbound/configure/topics) | yes |  | Configures the Pulsar topics the connector listens to and the transformations to Aerospike records. |

Example:

```yaml
config:

    aerospike:

      seeds:

        - 192.168.50.1:

            port: 3000

            tls-name: red

        - 192.168.50.2

      cluster-name: east

    topics:

      users:

        mapping:

          namespace:

            mode: static

            value: users

          set:

            mode: dynamic

            source: value-field

            field-name: city

          key-field:

            source: key

          ttl:

            mode: dynamic

            source: value-field

            field-name: ttl

          bins:

            type: multi-bins

            map:

              name:

                source: value-field

                field-name: firstName
```