An open API service indexing awesome lists of open source software.

https://github.com/3sidedcube/infrastructure

Terraform modules for common Node team infrastructure
https://github.com/3sidedcube/infrastructure

Last synced: about 1 year ago
JSON representation

Terraform modules for common Node team infrastructure

Awesome Lists containing this project

README

          

# Terraform Infrastructure

Terraform modules for common Node team infrastructure.

This repository comprises a set of individual Terraform modules.
These modules are designed to configure the basic infrastructure needed for a standard Node application.
They can be imported directly into your stage files, or extended to add additional features.

### Direct Implementation

Each environment should have it's own Terraform configuration, which pulls together the relevant modules for that project.
This follows the recommendations made in Google's [Best Practices for Terraform](https://cloud.google.com/docs/terraform/best-practices-for-terraform).

```terraform

module "network" {
source = "github.com/chelsea-apps/infrastructure.git//network"

project_name = local.name
}
```