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-apigateway-rest-1.0.0.sigstore.json \
https://www.iac-bazaar.com/api/artifacts/aws-apigateway-rest/signature
# 3. Verify the tarball you downloaded
cosign verify-blob \
--key cosign.pub \
--bundle aws-apigateway-rest-1.0.0.sigstore.json \
aws-apigateway-rest-1.0.0.tar.gz
# → Verified OK
# 4. (optional) confirm the checksum too
echo "83449a011f0de9fdb5f1a373cfa38af9320b557bf2f9ec5fde08283f2a3795d5 aws-apigateway-rest-1.0.0.tar.gz" | sha256sum -cUse it from the registry
terraform · opentofumodule "apigateway_rest" {
source = "www.iac-bazaar.com/iac-bazaar/aws-apigateway-rest/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 Professional, so its contract unlocks when you buy it.
Documentation
aws-apigateway-rest — API Gateway REST API
A REST API (API Gateway v1) wired end to end: the API, a resource tree
built automatically from your route paths (nested paths and their parents
included), methods with deny-by-default authorization, MOCK integrations
(no backend required) or Lambda/HTTP proxies, a deployment + stage with
throttling and detailed metrics, structured JSON access logs to a managed
CloudWatch log group, and the account-level CloudWatch role those logs need.
Works with Terraform and OpenTofu (>= 1.6), AWS provider >= 6.0, < 7.0.
API Gateway is pay-per-call, and this module is VPC-free (REGIONAL/EDGE
endpoints only).
Status: static-validated, live-test pending. Ships under live-test quarantine — validated with
tofu fmt,tofu validate, andtflint. The bundled live-test fixture (tests/) does a real apply → curl the deployed/healthMOCK route → destroy; it runs once a cloud sandbox is available.
Secure / sane defaults
- Deny-by-default authorization. Routes that leave
authorizationunset inheritdefault_authorization, which isAWS_IAM— unauthenticated callers are rejected unless a route is explicitly opened withauthorization = "NONE". Flip the default toNONEonly for a public API. - Access logs on by default, streamed as a structured JSON record (request id, source IP, method, resource path, status, latency) to a module-managed CloudWatch log group with 30-day retention (KMS optional).
- Execution logging at
ERRORby default;data_trace_enabled(full request/response bodies, which can capture secrets) is off. - Throttling on by default (burst/rate caps in the stage method settings) so a single client cannot exhaust the account-wide soft limits.
- No cost surprises: the API cache cluster and X-Ray tracing are off
(both bill independently of request volume);
cache_data_encryptedis forced on whenever a cache cluster is enabled. - The CloudWatch-role footgun is handled. REST API logging requires a
region-wide account CloudWatch role; the module creates and registers it for
you (
create_cloudwatch_role, defaulttrue) and a stage precondition fails fast if logging is requested with no role available.
Requirements
- Terraform or OpenTofu
>= 1.6 hashicorp/aws>= 6.0, < 7.0
License
Commercial — LicenseRef-IaCBazaar-Commercial. © 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 (key)
- Outputs
- Notes
- Live test (`tests/`)