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-29 · 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-codedeploy-1.0.0.sigstore.json \
https://www.iac-bazaar.com/api/artifacts/aws-codedeploy/signature
# 3. Verify the tarball you downloaded
cosign verify-blob \
--key cosign.pub \
--bundle aws-codedeploy-1.0.0.sigstore.json \
aws-codedeploy-1.0.0.tar.gz
# → Verified OK
# 4. (optional) confirm the checksum too
echo "a6812243d2f77b84edbe064a08761acd2f8376a9721308d5afe0e7b9d8da0d4f aws-codedeploy-1.0.0.tar.gz" | sha256sum -cUse it from the registry
terraform · opentofumodule "codedeploy" {
source = "www.iac-bazaar.com/iac-bazaar/aws-codedeploy/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-codedeploy
An AWS CodeDeploy application with deployment groups for CI/CD rollouts to EC2/on-premises (Server), ECS, or Lambda — plus the correctly-scoped service role, created automatically. CodeDeploy itself is free for EC2/Lambda/ECS deployments.
Status: static-validated, live-test pending. Validated with
tofu validate
tflint+checkov(STATIC_OK). A live test was attempted against a real account: the IAM service role applies correctly, butCreateApplicationreturnedSubscriptionRequiredExceptionbecause that sandbox account is not activated for CodeDeploy — an account/billing state, not a module defect. Ready to live-test on any CodeDeploy-enabled account viatests/live.tfvars.
Design & secure defaults
- Platform-correct service role. The module attaches the right AWS-managed
policy for the chosen
compute_platform(AWSCodeDeployRolefor Server,AWSCodeDeployRoleForECSfor ECS,AWSCodeDeployRoleForLambdafor Lambda) — the usual cause of "deployment failed" misconfigurations. Bring your own role withcreate_service_role = false+service_role_arn. - Automatic rollback on failure is on by default for every deployment group
(
auto_rollback_configurationwithDEPLOYMENT_FAILURE). - Sensible deployment config per platform (
OneAtATime/ECSAllAtOnce/LambdaAllAtOnce) unless you overridedeployment_config_name. - Preconditions enforce platform invariants (ECS requires
ecs_service; a BYO role requiresservice_role_arn).
Provider
hashicorp/aws >= 6.0, < 7.0. Requires Terraform/OpenTofu >= 1.6.
License
Commercial — LicenseRef-IaCBazaar-Commercial. See the IaC Bazaar terms.
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
- Key inputs
- Outputs
Related modules
CodePipeline + CodeBuild CI/CD
AWS-native CI/CD: CodePipeline orchestrating a CodeBuild project, with an encrypted private artifact bucket and least-privilege roles. Sources from S3 (or GitHub).
Jenkins Controller on AWS (EC2)
Self-hosted Jenkins controller on a hardened EC2 instance - restricted security group, IMDSv2 enforced, SSM access, encrypted root volume, Jenkins auto-installed via user-data.