Skip to content

Terraform and other infrastructure-as-code configuration files for the NZSL ecosystem of projects

Notifications You must be signed in to change notification settings

ODNZSL/nzsl-infrastructure

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NZSL Infrastructure

This repository contains Terraform and other configuration files related to the infrastructure for NZSL projects. At this stage, only signbank is Terraformed, but other projects may be added over time.

The terraform configuration (see the .tf files in this repo) is the real source of truth for this infrastructure. This document aims to provide some helpful background information and general principles.

Environments

NZSL applications have the following environments:

  1. UAT
    • Testers and acceptance of new features
  2. Production

Each environment has dedicated resources within our AWS account.

AWS Regions

We use Sydney as a primary AWS region for hosting because

  1. It is the geographically closest AWS region to New Zealand (so better latency etc.)
  2. It has three AZs (Each AWS AZ is an isolated data center) giving us good opportunity for redundancy within the region if required.

AWS Tagging

For easy management of resources and costs, all AWS resources are automatically tagged (by Terraform) with at least these tags:

  1. Name - The name of the resource
  2. Environment - The name of the environment
  3. Client - The name of the client
  4. Project - The name of the project
  5. ProvisioningTool - the name of the tool used to provision this resource

DNS

Public DNS

  • The primary DNS domain is nzsl.nz and is managed by Cloudflare.
  • DNS records should be recorded and managed using the Cloudflare Terraform provider.

Load balancers and HTTPS/TLS

  • TLS will be terminated at the load balancer - Cloudflare in this case.
  • Communication between Cloudflare and application servers, should be via HTTPS.
  • Applications should force SSL.

Application servers

  • Application serving will be handled by Heroku, a platform-as-a-service product by Salesforce.
  • Application serving should use at minimum standard-1x dynos for production traffic.

Databases

  • Databases are PostgreSQL hosted in Heroku via addons
  • For most NZSL applications, hobby-basic Postgres plans are sufficient for now. For more user-facing applications that expect more writes, postgres-standard is more appropriate.

Database backups

  • Databases are automatically backed up by Heroku
  • Database schedules should be established and maintained by Terraform.
  • The Terraform provider for Heroku cannot manage a backup schedule, so we use the local-exec provider and a null resource to ensure the schedule is set. This requires the Heroku CLI is installed.

File storage

  • All assets/files will be stored as objects on S3
  • S3 automatically provides redundancy by replicating objects (a.k.a. "files" in our context) to multiple locations in the same region
  • Server side encryption using S3 managed keys (SSE-S3) will be configured by default on all buckets so all uploaded files will be encrypted for storage on disk

Email

  • We use Mailgun to send emails from the application.
  • These emails include:
    • Notifications about various events
    • User invitations
    • Password resets, etc
  • Access to Mailgun is via TLS encrypted SMTP connection

Dependency monitoring

Ruby, Python and JS package dependencies are audited with Bundler Audit, safety and npm audit respectively. This auditing typically happens:

  1. Whenever new code is pushed
  2. Nightly as part of Ackama's in-house monitoring suite (results reported to Ackama ops team)

Projects perform a range of other automated checks depending on their specific languge, framework, and requirements.

About

Terraform and other infrastructure-as-code configuration files for the NZSL ecosystem of projects

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages