7 lines
241 B
HCL
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
|
|
}
|
|
|