-
Notifications
You must be signed in to change notification settings - Fork 1
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/benchmarks-website-27dn3k/infrastructure/terraform…
…/environments/staging/terraform.tfvars
- Loading branch information
1 parent
6af360d
commit be7eef8
Showing
1 changed file
with
34 additions
and
0 deletions.
There are no files selected for viewing
34 changes: 34 additions & 0 deletions
34
infrastructure/terraform/environments/staging/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,34 @@ | ||
# Environment and Project Configuration | ||
# Used for resource tagging and environment segregation | ||
environment = "staging" | ||
project = "saas-benchmarks" | ||
|
||
# AWS Region Configuration | ||
# Staging environment deployment region, separate from production | ||
aws_region = "us-west-2" | ||
|
||
# Network Configuration | ||
# CIDR block for staging VPC, non-overlapping with other environments | ||
vpc_cidr = "10.1.0.0/16" | ||
|
||
# Single availability zone for cost-optimized staging deployment | ||
availability_zones = [ | ||
"us-west-2a" | ||
] | ||
|
||
# Database Configuration | ||
# Cost-effective RDS instance size suitable for staging workloads | ||
db_instance_class = "db.t3.small" | ||
|
||
# Redis Cache Configuration | ||
# Reduced-size Redis instance for staging caching requirements | ||
redis_node_type = "cache.t3.small" | ||
|
||
# Domain Configuration | ||
# Staging environment domain name following DNS naming convention | ||
domain_name = "staging.saas-benchmarks.com" | ||
|
||
# ECS Container Configuration | ||
# Container resource allocations sized for staging workloads | ||
ecs_container_memory = 1024 # Memory allocation in MB | ||
ecs_container_cpu = 256 # CPU allocation in units (256 = 0.25 vCPU) |