-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add public-samples/startup-metrics-hizlkn/infrastructure/terraform/en…
…vironments/dev/terraform.tfvars
- Loading branch information
1 parent
1f575ca
commit 2cbb9d6
Showing
1 changed file
with
39 additions
and
0 deletions.
There are no files selected for viewing
39 changes: 39 additions & 0 deletions
39
infrastructure/terraform/environments/dev/terraform.tfvars
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# Development environment configuration for Startup Metrics Benchmarking Platform | ||
# Version: 1.0 | ||
# Last Updated: 2023 | ||
|
||
# Environment identifier | ||
environment = "dev" | ||
|
||
# AWS region configuration | ||
region = "us-east-1" | ||
|
||
# Network configuration | ||
vpc_cidr = "10.0.0.0/16" | ||
|
||
# Compute resource specifications for development environment | ||
# Using t3.medium instances as specified in Technical Specifications/8.1.2 | ||
web_instance_type = "t3.medium" | ||
api_instance_type = "t3.medium" | ||
|
||
# Database specifications for development | ||
# Using minimal configurations as per Technical Specifications/8.1.2 | ||
db_instance_class = "db.t3.medium" | ||
redis_node_type = "cache.t3.medium" | ||
|
||
# Scaling configuration for development environment | ||
# Minimal scaling requirements for development as per Technical Specifications/2.5 | ||
web_min_capacity = 1 | ||
web_max_capacity = 2 | ||
api_min_capacity = 1 | ||
api_max_capacity = 2 | ||
|
||
# High availability configuration | ||
# Single-AZ deployment for development as per Technical Specifications/8.1.2 | ||
multi_az = false | ||
availability_zones = ["us-east-1a"] | ||
|
||
# Backup retention configuration for development environment | ||
# Minimum required retention periods | ||
db_backup_retention = 7 | ||
redis_snapshot_retention = 7 |