1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Outputs ======================================================================
output "tags" {
description = "Tags map derived from baselines, AWS MAP configuration & additional tags"
value = local.computed_tags
}
output "stack_name" {
description = "Stack name"
value = var.stack_name
}
output "environment" {
description = "Deployment environment"
value = var.environment
}
output "application_name" {
description = "Application name"
value = var.application_name
}
|