Files
Terraform_template/outputs.tf
2026-02-23 18:37:37 +01:00

7 lines
241 B
HCL

#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
}