Skip to content

Instantly share code, notes, and snippets.

@garystafford
Last active September 28, 2021 12:57
Show Gist options
  • Save garystafford/0d1e3f130d6d06aa2917cf1a758a9e6d to your computer and use it in GitHub Desktop.
Save garystafford/0d1e3f130d6d06aa2917cf1a758a9e6d to your computer and use it in GitHub Desktop.
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