https://github.com/vitalvas/terraform
Terraform modules
https://github.com/vitalvas/terraform
terraform terraform-deployment terraform-managed terraform-module terraform-modules
Last synced: 4 months ago
JSON representation
Terraform modules
- Host: GitHub
- URL: https://github.com/vitalvas/terraform
- Owner: vitalvas
- Created: 2024-01-21T18:02:40.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-01-20T03:23:46.000Z (5 months ago)
- Last Synced: 2025-01-31T01:15:39.706Z (4 months ago)
- Topics: terraform, terraform-deployment, terraform-managed, terraform-module, terraform-modules
- Language: HCL
- Homepage:
- Size: 119 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 = []
}
```