mirror of
https://github.com/crowdsecurity/crowdsec.git
synced 2025-05-12 04:45:52 +02:00
6 lines
296 B
Bash
Executable file
6 lines
296 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Create Kinesis streams
|
|
aws --endpoint-url=http://localstack:4566 --region us-east-1 kinesis create-stream --stream-name stream-1-shard --shard-count 1
|
|
aws --endpoint-url=http://localstack:4566 --region us-east-1 kinesis create-stream --stream-name stream-2-shards --shard-count 2
|
|
|