Skip to content

Instantly share code, notes, and snippets.

View vhugo006's full-sized avatar
💭
Always developing myself!

vhugo006

💭
Always developing myself!
View GitHub Profile
@vhugo006
vhugo006 / main.tf
Last active August 23, 2023 09:00
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
}