Initial commit
This commit is contained in:
commit
b89b538c6e
3
output.tf
Normal file
3
output.tf
Normal file
@ -0,0 +1,3 @@
|
||||
output "example" {
|
||||
//value = some_resource.example
|
||||
}
|
5
provider.tf
Normal file
5
provider.tf
Normal file
@ -0,0 +1,5 @@
|
||||
terraform {
|
||||
required_providers {
|
||||
//Provider name
|
||||
}
|
||||
}
|
9
variable.tf
Normal file
9
variable.tf
Normal file
@ -0,0 +1,9 @@
|
||||
variable "name" {
|
||||
type = string
|
||||
description = "name"
|
||||
}
|
||||
|
||||
variable "description" {
|
||||
type = string
|
||||
description = "description"
|
||||
}
|
Loading…
Reference in New Issue
Block a user