Initial commit

This commit is contained in:
tf-modules
2024-09-14 12:28:57 +00:00
commit b89b538c6e
7 changed files with 23 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
# terraform module
+1
View File
@@ -0,0 +1 @@
//Data
+3
View File
@@ -0,0 +1,3 @@
//Locals
locals {
}
+1
View File
@@ -0,0 +1 @@
//Main resources
+3
View File
@@ -0,0 +1,3 @@
output "example" {
//value = some_resource.example
}
+5
View File
@@ -0,0 +1,5 @@
terraform {
required_providers {
//Provider name
}
}
+9
View File
@@ -0,0 +1,9 @@
variable "name" {
type = string
description = "name"
}
variable "description" {
type = string
description = "description"
}