Skip to content

Commit

Permalink
Update config values in description
Browse files Browse the repository at this point in the history
  • Loading branch information
Nuvindu committed Apr 10, 2024
1 parent ed4d366 commit 0d36727
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions examples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ The Ballerina Avro Serializer/Deserializer connector for Confluent Schema Regist
Create a `Config.toml` file with the base URL, schema capacity, subject, connection configurations and header values. Here's an example of how your `Config.toml` file should look:

```toml
baseUrl = <BASE_URL>
baseUrl = "<BASE_URL>"
identityMapCapacity = <SCHEMA_MAP_CAPACITY>
subject = <SCHEMA_REGISTRY_TOPIC>
subject = "<SCHEMA_REGISTRY_TOPIC>"

[originals]
"schema.registry.url" = <SCHEMA_REGISTRY_ENDPOINT_URL>
"schema.registry.url" = "<SCHEMA_REGISTRY_ENDPOINT_URL>"
"basic.auth.credentials.source" = "USER_INFO"
"bootstrap.servers" = "<SERVER>:<PORT>"
"schema.registry.basic.auth.user.info" = "<KEY>:<SECRET>"
Expand Down
8 changes: 4 additions & 4 deletions examples/kafka-avro-consumer/kafka-avro-consumer.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ This guide demonstrates how to consume data in the correct format according to A

### Configuration

Configure the followings in Config.toml in the example directory.
Configure the followings in `Config.toml` in the directory.

```toml
baseUrl = <BASE_URL>
baseUrl = "<BASE_URL>"
identityMapCapacity = <SCHEMA_MAP_CAPACITY>
subject = <SCHEMA_REGISTRY_TOPIC>
subject = "<SCHEMA_REGISTRY_TOPIC>"

[originals]
"schema.registry.url" = <SCHEMA_REGISTRY_ENDPOINT_URL>
"schema.registry.url" = "<SCHEMA_REGISTRY_ENDPOINT_URL>"
"basic.auth.credentials.source" = "USER_INFO"
"bootstrap.servers" = "<SERVER>:<PORT>"
"schema.registry.basic.auth.user.info" = "<KEY>:<SECRET>"
Expand Down
8 changes: 4 additions & 4 deletions examples/kafka-avro-producer/kafka-avro-producer.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ This guide demonstrates how to publish Avro serialized data to a Kafka topic.

### Configuration

Configure the followings in Config.toml in the example directory.
Configure the followings in `Config.toml` in the directory.

```toml
baseUrl = <BASE_URL>
baseUrl = "<BASE_URL>"
identityMapCapacity = <SCHEMA_MAP_CAPACITY>
subject = <SCHEMA_REGISTRY_TOPIC>
subject = "<SCHEMA_REGISTRY_TOPIC>"

[originals]
"schema.registry.url" = <SCHEMA_REGISTRY_ENDPOINT_URL>
"schema.registry.url" = "<SCHEMA_REGISTRY_ENDPOINT_URL>"
"basic.auth.credentials.source" = "USER_INFO"
"bootstrap.servers" = "<SERVER>:<PORT>"
"schema.registry.basic.auth.user.info" = "<KEY>:<SECRET>"
Expand Down

0 comments on commit 0d36727

Please sign in to comment.