Initial commit for template

This commit is contained in:
Justine Pelletreau
2026-02-23 18:37:37 +01:00
commit 2e8173bb79
6 changed files with 724 additions and 0 deletions

6
outputs.tf Normal file
View File

@ -0,0 +1,6 @@
#Outputs from providers are generally not documented, we have to use the provider once and then run "tofu show"
output "output_name" {
description = "Some output that we want to add"
value = provider.resource.resourcename.value
}