Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/vitalvas/terraform
- Owner: vitalvas
- Created: 2024-01-21T18:02:40.000Z (10 months ago)
- Default Branch: master
- Last Pushed: 2024-08-19T22:27:48.000Z (3 months ago)
- Last Synced: 2024-09-27T19:01:39.381Z (about 2 months ago)
- Topics: terraform, terraform-deployment, terraform-managed, terraform-module, terraform-modules
- Language: HCL
- Homepage:
- Size: 88.9 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
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 = []
}
```