Terraform
Infrastructure as Code (IaC) for deploying Ever Gauzy using Terraform.
Directory Structureβ
.deploy/terraform/
βββ main.tf # Provider and module config
βββ variables.tf # Input variables
βββ outputs.tf # Output values
βββ terraform.tfvars # Variable values
βββ modules/
β βββ networking/ # VPC, subnets, security groups
β βββ database/ # RDS PostgreSQL
β βββ compute/ # ECS/EC2 instances
β βββ storage/ # S3 buckets
β βββ cdn/ # CloudFront distribution
Quick Startβ
cd .deploy/terraform
# Initialize Terraform
terraform init
# Preview changes
terraform plan
# Apply infrastructure
terraform apply
# Destroy infrastructure
terraform destroy
Example Configurationβ
# main.tf
provider "aws" {
region = var.aws_region
}
module "networking" {
source = "./modules/networking"
vpc_cidr = "10.0.0.0/16"
environment = var.environment
}
module "database" {
source = "./modules/database"
vpc_id = module.networking.vpc_id
subnet_ids = module.networking.private_subnet_ids
db_name = "gauzy"
db_username = var.db_username
db_password = var.db_password
instance_class = "db.t3.medium"
}
module "compute" {
source = "./modules/compute"
vpc_id = module.networking.vpc_id
subnet_ids = module.networking.private_subnet_ids
api_image = "ghcr.io/ever-co/gauzy-api:latest"
webapp_image = "ghcr.io/ever-co/gauzy-webapp:latest"
db_host = module.database.endpoint
}
Variablesβ
# variables.tf
variable "aws_region" {
default = "us-east-1"
}
variable "environment" {
default = "production"
}
variable "db_username" {
sensitive = true
}
variable "db_password" {
sensitive = true
}
State Managementβ
Store Terraform state remotely:
terraform {
backend "s3" {
bucket = "gauzy-terraform-state"
key = "production/terraform.tfstate"
region = "us-east-1"
encrypt = true
}
}
Related Pagesβ
- AWS β AWS services reference
- Pulumi β alternative IaC in TypeScript
- Deployment Overview