Verification
Live-testedReally deployed to a cloud sandbox, verified against its outputs and assertions, then destroyed - with the teardown confirmed.
Conformance
- Static validation (fmt · validate · tflint)
- Security scan clean (Checkov)
- Plan test superseded by live test
Provenance
- SHA-256 checksum
- Cosign signature
Functional
- Live-tested - applied, verified, destroyed
Last verified 2026-06-30 · how we verify
Verify this download
cosign · sha-256Don't take our word for it. Every release is signed with cosign - check the bytes against our pinned public key before you trust them.
# 1. Our pinned public key - fetch once, trust out-of-band
curl -O https://www.iac-bazaar.com/cosign.pub
# 2. This module's Sigstore bundle
curl -o aws-kinesis-1.0.0.sigstore.json \
https://www.iac-bazaar.com/api/artifacts/aws-kinesis/signature
# 3. Verify the tarball you downloaded
cosign verify-blob \
--key cosign.pub \
--bundle aws-kinesis-1.0.0.sigstore.json \
aws-kinesis-1.0.0.tar.gz
# → Verified OK
# 4. (optional) confirm the checksum too
echo "c1c763a9d431a9e9dfc77664da21d366ae5b5e41bc77908b7c78af0e8c6d92f2 aws-kinesis-1.0.0.tar.gz" | sha256sum -cUse it from the registry
terraform · opentofumodule "kinesis" {
source = "www.iac-bazaar.com/iac-bazaar/aws-kinesis/aws"
version = "1.0.0"
}Paid module — needs a purchase (or a subscription that covers it) plus a registry token from /account/tokens. Full setup: registry docs.
Inputs & outputs
Create a free account to read this module's contract
The declared contract — every input name, type, default and description, plus every output — is shown to signed-in accounts, not to anonymous visitors.
A free account sees the contract of every Free module. This one is Premium, so its contract unlocks when you buy it.
Documentation
aws-kinesis
Amazon Kinesis Data Stream with encryption at rest on by default and a
plug-and-play capacity mode. Works with Terraform and OpenTofu (>= 1.6),
AWS provider >= 6.0, < 7.0. ON_DEMAND by default means there is no shard
math to do — the stream scales itself; flip to PROVISIONED when you want a
fixed, cheaper-per-hour shard count you control. Optional enhanced fan-out
consumers are registered for you. No VPC, no public endpoint — access is purely
IAM-governed against the stream ARN.
Secure defaults:
- Encryption at rest always on (
encryption_type = "KMS") using the AWS-managed Kinesis key (alias/aws/kinesis): encrypted records, no key to manage, no monthly key charge. Bring a customer-managed key viakms_key_idfor full control and rotation policy. - ON_DEMAND capacity by default — no over/under-provisioning, no shard resharding to operate.
- Enhanced monitoring off by default (
shard_level_metrics = []) — each shard-level metric is billed per shard-hour, so it is opt-in. - No network exposure: Kinesis has no VPC/public surface; reads and writes are authorized through IAM only.
Security notes
- Encryption is KMS by default; setting
encryption_type = "NONE"is supported but disables encryption at rest and is not recommended. - The default
alias/aws/kinesiskey is AWS-managed (free, but AWS owns rotation). For compliance regimes that require customer-controlled keys, pass your own CMK inkms_key_id. - Grant producers
kinesis:PutRecord*and consumerskinesis:GetRecords/kinesis:SubscribeToShardscoped tostream_arn— least privilege against a single resource, no wildcardkinesis:*.
Requirements
- Terraform or OpenTofu
>= 1.6 hashicorp/aws>= 6.0, < 7.0
License
Commercial — IaC Bazaar EULA. © IaC Bazaar. Original work (not derived from a third-party module).
Usage code & full reference unlock after purchase
The complete copy-paste usage, the full input/output reference, and operational notes ship with your licence - shown here and bundled in the download.
- Usage
- Inputs
- Outputs
Related modules
EventBridge Bus, Rule & Target
A custom EventBridge event bus, a pattern-filtered rule, and a target wired end-to-end - encryption at rest always on, least-privilege log delivery, and a 24h retry policy with optional DLQ.
MSK Serverless (Apache Kafka)
An MSK Serverless Apache Kafka cluster with no brokers to size - SASL/IAM authentication only, encryption in transit and at rest always on, multi-AZ placement, and a locked-down security group.
SES v2 Sending Stack
An SES v2 sending stack - a configuration set with an optional domain/email identity (Easy DKIM) - with TLS required, bounce/complaint suppression, and reputation metrics to CloudWatch.
SNS Topic with Subscriptions
SNS standard/FIFO topic with encryption, delivery policies, and SQS/Lambda/email subscriptions.
SQS Queue with DLQ
SQS standard/FIFO queue with dead-letter queue, redrive policy, SSE, and least-privilege queue policy.