terraform-template/outputs.tf

9 lines
236 B
Terraform
Raw Normal View History

2024-03-02 13:21:38 +00:00
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
}