-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutput.tf
34 lines (28 loc) · 992 Bytes
/
output.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
output "common_tags" {
description = "Most services support simple `key = value` pairs."
value = local.common_tags
}
output "launch_template_resource_tags" {
description = "Tags formatted for use with _Launch Templates_."
value = local.launch_template_resource_tags
}
output "app" {
description = "The value of the `app` input variable."
value = local.std_tags["app"]
}
output "env" {
description = "The value of the `env` input variable."
value = local.std_tags["env"]
}
output "region" {
description = "The AWS region in which the resources are being created."
value = local.std_tags["region"]
}
output "deployed_at" {
description = "The [RFC 3339](https://datatracker.ietf.org/doc/html/rfc3339) at which the resources were deployed."
value = local.std_tags["deployed_at"]
}
output "deployed_by" {
description = "The ARN of the assumed role which performed the deployment."
value = local.std_tags["deployed_by"]
}