Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
sappusaketh authored Apr 25, 2024
1 parent 8c99000 commit 5496ba7
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,16 @@ https://github.com/hashicorp/terraform-provider-aws/issues/5396
terraform {
required_providers {
schemaregistry = {
source = "arkiaconsulting/confluent-schema-registry"
source = "fetch-rewards/confluent-schema-registry"
}
}
}
provider "schemaregistry" {
schema_registry_url = "https://xxxxxx.confluent.cloud"
username = "<confluent_schema_registry_key>"
password = "<confluent_schema_registry_password>"
schema_registry_url = "https://<env>-event-tracking-schema-registry.fetchrewards.com"
# Below configs are not needed for our SR as we dont have auth enabled
# username = "<confluent_schema_registry_key>"
# password = "<confluent_schema_registry_password>"
}
```
_You can omit the credential details by defining the environment variables `SCHEMA_REGISTRY_URL`, `SCHEMA_REGISTRY_USERNAME`, `SCHEMA_REGISTRY_PASSWORD`_
Expand Down Expand Up @@ -139,4 +140,4 @@ To see any logging that you added to the provider (using tflog) you can add the

An example of using tflog to log a message in the provider is below:

```tflog.Info(ctx, "Configuring SchemaRegistry client")```
```tflog.Info(ctx, "Configuring SchemaRegistry client")```

0 comments on commit 5496ba7

Please sign in to comment.