Prices
Estimated monthly on-demand costs for this workload architecture.
Workload Costs Comparison
Prices by provider and services that enable users to run this workload. Shape the architecture based on cloud best practices using the four Architecture Priorities below — Capacity, Performance, Reliability, and Security. Components and prices recompute as you adjust each priority (e.g. higher Security adds a WAF, KMS, and threat monitoring), and you can switch region or billing period to compare like-for-like.
Architecture Priorities
Select level (High / Medium / Low) to adjust requirementsVolume Assumptions
Infrastructure Architecture Blueprint
Copy or download (export) Terraform and OpenTofu architecture blueprints to deploy this workload in a cloud provider of your choice. Add parameters, credentials, or steps for CLI and DevOps CI/CD pipelines.
| 1 | # ============================================================================== |
| 2 | # ARCHITECTURE BLUEPRINT (TERRAFORM / OPENTOFU) |
| 3 | # Copyright (c) 2026 Cosell Plus, LLC. All Rights Reserved. |
| 4 | # |
| 5 | # DISCLAIMER & TERMS OF USE: |
| 6 | # This IaC blueprint is generated by CompareCloudCosts (CCC) for educational, |
| 7 | # planning, and directional architectural purposes. Provided "AS IS" without |
| 8 | # warranty of any kind, express or implied. Cosell Plus, LLC assumes no |
| 9 | # liability for operational costs, misconfigurations, or service interruptions. |
| 10 | # Always review and validate security, IAM, and compliance parameters before |
| 11 | # deploying to production environment. |
| 12 | # ============================================================================== |
| 13 | # |
| 14 | # ------------------------------------------------------------------------------ |
| 15 | # IDENTITY & CREDENTIAL PLACEHOLDERS (CLI & DEVOPS CI/CD PIPELINE) |
| 16 | # ------------------------------------------------------------------------------ |
| 17 | # Steps to execute this blueprint using Terraform: |
| 18 | # 1. Save this file as main.tf |
| 19 | # 2. Set provider authentication credentials: |
| 20 | # |
| 21 | # For AWS Local CLI Execution: |
| 22 | # export AWS_ACCESS_KEY_ID="<YOUR_AWS_ACCESS_KEY_ID>" |
| 23 | # export AWS_SECRET_ACCESS_KEY="<YOUR_AWS_SECRET_ACCESS_KEY>" |
| 24 | # export AWS_REGION="<REGION>" |
| 25 | # |
| 26 | # For AWS DevOps CI/CD Pipeline (GitHub Actions / GitLab CI / Azure DevOps): |
| 27 | # Recommended: Use AWS OpenID Connect (OIDC) Role Assumption: |
| 28 | # - role-to-assume: "arn:aws:iam::123456789012:role/GitHubActionsDeployerRole" |
| 29 | # - aws-region: "<REGION>" |
| 30 | # |
| 31 | # 3. Initialize and apply: |
| 32 | # $ terraform init |
| 33 | # $ terraform plan |
| 34 | # $ terraform apply |
| 35 | # ------------------------------------------------------------------------------ |
| 36 | |
| 37 | # ------------------------------------------------------------------------------ |
| 38 | # PROVIDER CONFIGURATION (TERRAFORM) |
| 39 | # ------------------------------------------------------------------------------ |
| 40 | 🔑 terraform { |
| 41 | required_version = ">= 1.5.0" |
| 42 | required_providers { |
| 43 | aws = { |
| 44 | source = "hashicorp/aws" |
| 45 | version = "~> 5.0" |
| 46 | } |
| 47 | } |
| 48 | } |
| 49 | |
| 50 | 🔑 provider "aws" { |
| 51 | region = var.aws_region |
| 52 | |
| 53 | default_tags { |
| 54 | tags = { |
| 55 | ManagedBy = "Terraform" |
| 56 | Environment = var.environment |
| 57 | Workload = var.workload_id |
| 58 | Vendor = "Cosell Plus LLC Blueprint" |
| 59 | } |
| 60 | } |
| 61 | } |
| 62 | |
| 63 | 🔑 variable "aws_region" { |
| 64 | type = string |
| 65 | default = "us-east-1" |
| 66 | description = "Target AWS Deployment Region" |
| 67 | } |
| 68 | |
| 69 | 🔑 variable "environment" { |
| 70 | type = string |
| 71 | default = "production" |
| 72 | description = "Deployment environment (e.g. dev, staging, production)" |
| 73 | } |
| 74 | |
| 75 | 🔑 variable "workload_id" { |
| 76 | type = string |
| 77 | default = "workload-blueprint" |
| 78 | description = "Identifier tag for the workload" |
| 79 | } |
| 80 | |
| 81 | # ------------------------------------------------------------------------------ |
| 82 | # WORKLOAD COMPONENT RESOURCES (SMART MANUFACTURING (IIOT)) |
| 83 | # ------------------------------------------------------------------------------ |
| 84 | # Component: Edge Gateway / Local Compute (On-prem/edge collection and buffering) |
| 85 | 🔑 resource "aws_custom_🔑 resource" "edge_compute" { |
| 86 | # Add required parameters for Edge Gateway / Local Compute |
| 87 | } |
| 88 | |
| 89 | # Component: Stream Ingestion (Serverless ingestion of sensor telemetry) |
| 90 | 🔑 resource "aws_custom_🔑 resource" "ingest_compute" { |
| 91 | # Add required parameters for Stream Ingestion |
| 92 | } |
| 93 | |
| 94 | # Component: Event Bus (Fans telemetry to storage, analytics, and alerting) |
| 95 | 🔑 resource "aws_custom_🔑 resource" "event_bus" { |
| 96 | # Add required parameters for Event Bus |
| 97 | } |
| 98 | |
| 99 | # Component: Time-Series Store (Live metrics and sensor state) |
| 100 | 🔑 resource "aws_custom_🔑 resource" "timeseries_db" { |
| 101 | # Add required parameters for Time-Series Store |
| 102 | } |
| 103 | |
| 104 | # Component: Historical Analytics (Warehouse for historical sensor analytics) |
| 105 | 🔑 resource "aws_custom_🔑 resource" "analytics" { |
| 106 | # Add required parameters for Historical Analytics |
| 107 | } |
| 108 | |
| 109 | # Component: Raw Data Lake |
| 110 | 🔑 resource "aws_s3_bucket" "storage" { |
| 111 | bucket_prefix = "ccc-storage-" |
| 112 | force_destroy = false |
| 113 | } |
| 114 | |
| 115 | 🔑 resource "aws_s3_bucket_server_side_encryption_configuration" "storage_enc" { |
| 116 | bucket = aws_s3_bucket.storage.id |
| 117 | rule { |
| 118 | apply_server_side_encryption_by_default { |
| 119 | sse_algorithm = "AES256" |
| 120 | } |
| 121 | } |
| 122 | } |
| 123 | |
| 124 | |
| 125 | |
| 126 | # Component: Predictive Maintenance (ML inference for anomaly / failure prediction) |
| 127 | 🔑 resource "aws_custom_🔑 resource" "predictive_ai" { |
| 128 | # Add required parameters for Predictive Maintenance |
| 129 | } |
| 130 | |
| 131 | # Component: Backup Storage |
| 132 | 🔑 resource "aws_s3_bucket" "backup_storage" { |
| 133 | bucket_prefix = "ccc-backup_storage-" |
| 134 | force_destroy = false |
| 135 | } |
| 136 | |
| 137 | 🔑 resource "aws_s3_bucket_server_side_encryption_configuration" "backup_storage_enc" { |
| 138 | bucket = aws_s3_bucket.backup_storage.id |
| 139 | rule { |
| 140 | apply_server_side_encryption_by_default { |
| 141 | sse_algorithm = "AES256" |
| 142 | } |
| 143 | } |
| 144 | } |
| 145 | |
| 146 | |
| 147 | |
| 148 | |
| 149 | # ------------------------------------------------------------------------------ |
| 150 | # OUTPUTS |
| 151 | # ------------------------------------------------------------------------------ |
| 152 | 🔑 output "blueprint_summary" { |
| 153 | value = { |
| 154 | workload_id = "smart-manufacturing" |
| 155 | 🔑 provider = "aws" |
| 156 | region = "us-east-1" |
| 157 | components = 8 |
| 158 | priorities = { |
| 159 | capacity = "medium" |
| 160 | performance = "medium" |
| 161 | reliability = "medium" |
| 162 | security = "medium" |
| 163 | } |
| 164 | } |
| 165 | } |
| 166 |