This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
aws ssm put-parameter \ | |
--name /kafka_spark_demo/kafka_servers \ | |
--type String \ | |
--value "<b-1.your-brokers.kafka.us-east-1.amazonaws.com:9098,b-2...>" \ | |
--description "Amazon MSK Kafka broker list" \ | |
--overwrite | |
aws ssm put-parameter \ | |
--name /kafka_spark_demo/kafka_demo_bucket \ | |
--type String \ | |
--value "<your-bucket-111222333444-us-east-1>" \ | |
--description "Amazon S3 bucket" \ | |
--overwrite | |
aws ssm put-parameter \ | |
--name /kafka_spark_demo/schema_resistry_url_int \ | |
--type String \ | |
--value "http://<your_host>:<your_port>" \ | |
--description "Apicurio Registry REST API base URL (Internal Address)" \ | |
--overwrite |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment