Skip to content

Instantly share code, notes, and snippets.

@vhugo006
Last active August 23, 2023 09:00
Show Gist options
  • Save vhugo006/9895712f6aea4e877b27b0635df7c86e to your computer and use it in GitHub Desktop.
Save vhugo006/9895712f6aea4e877b27b0635df7c86e to your computer and use it in GitHub Desktop.
Amazon Kinesis Hands-on with Terraform, Python, and the SDK | main.tf
provider "aws" {
region = "us-east-1"
}
resource "aws_kinesis_stream" "data_portfolio_stream" {
name = "DataPortfolioStream"
shard_count = 1
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment