Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/vitalvas/terraform

Terraform modules
https://github.com/vitalvas/terraform

terraform terraform-deployment terraform-managed terraform-module terraform-modules

Last synced: about 1 month ago
JSON representation

Terraform modules

Awesome Lists containing this project

README

        

# Terraform modules

This repository contains a collection of Terraform modules for deploying various common infrastructure patterns on one or more cloud providers.

## Usage

```hcl
module "test" {
source = "git::https://github.com/vitalvas/terraform.git//src/?ref=master"
}
```

### Example

```hcl
module "zone" {
source = "git::https://github.com/vitalvas/terraform.git//src/cloudflare-zone?ref=master"
name = "vitalvas.dev"
account_id = "..."

records = []
}
```