Initial commit

This commit is contained in:
tf-modules 2024-09-14 12:29:55 +00:00
commit d6c34607b4
7 changed files with 23 additions and 0 deletions

1
README.md Normal file
View File

@ -0,0 +1 @@
# terraform module

1
data.tf Normal file
View File

@ -0,0 +1 @@
//Data

3
locals.tf Normal file
View File

@ -0,0 +1,3 @@
//Locals
locals {
}

1
main.tf Normal file
View File

@ -0,0 +1 @@
//Main resources

3
output.tf Normal file
View File

@ -0,0 +1,3 @@
output "example" {
//value = some_resource.example
}

5
provider.tf Normal file
View File

@ -0,0 +1,5 @@
terraform {
required_providers {
//Provider name
}
}

9
variable.tf Normal file
View File

@ -0,0 +1,9 @@
variable "name" {
type = string
description = "name"
}
variable "description" {
type = string
description = "description"
}