Skip to content

Commit

Permalink
Merge pull request #26 from bmaidics/web_streaming_improvements
Browse files Browse the repository at this point in the history
Web streaming improvements
  • Loading branch information
jfallows authored Aug 21, 2024
2 parents 99c8539 + db0317b commit 97beff6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
9 changes: 8 additions & 1 deletion amazon-msk/cdktf/web-streaming/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,13 @@ Use the `ClusterName` of your desired MSK cluster for this variable.

Provide the Secret Name that is associated with your MSK cluster. If you use our provided example cluster, there is already a secret associated with the cluster called `AmazonMSK_alice`.

List all secrets ub Secrets Manager that can be associated with MSK:

```bash
aws secretsmanager list-secrets --query "SecretList[?starts_with(Name, 'AmazonMSK_')].Name" --output table
```


### `kafka_topic`: Kafka Topic

This variable defines the Kafka topic exposed through REST and SSE.
Expand Down Expand Up @@ -151,7 +158,7 @@ In your `terraform.tfvars` file add the desired CloudWatch Metrics Namespace for

### Enable Glue Schema Registry

To enable the Glue Schema Registry for schema fetching, set the environment variable `GLUE_REGISTRY_ENABLED` to `true`. You will also need the name of the Glue Registry.
To enable the Glue Schema Registry for schema fetching, set the environment variable `GLUE_REGISTRY_ENABLED` to `true`. You will also need the name of the Glue Registry to set the `glue_registry` terraform variable.

1. List all Glue Registries:

Expand Down
1 change: 1 addition & 0 deletions amazon-msk/cdktf/web-streaming/terraform.tfvars.example
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ public_tls_certificate_key="<your public tls certificate key ARN>"
#zilla_plus_ssh_key="<your ssh key name>"
#cloudwatch_logs_group="<your cloudwatch logs group>"
#cloudwatch_metrics_namespace="<your cloudwatch metrics namespace>"
#glue_registry="<your glue registry>"

0 comments on commit 97beff6

Please sign in to comment.