terraform-template/outputs.tf

9 lines
236 B
HCL

output "resource_name_prefix" {
description = "Resource name prefix used for tagging and naming AWS resources"
value = var.resource_name_prefix
}
output "ex module output" {
description = "ex"
value = module.ex.output
}