-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutput.tf
43 lines (33 loc) · 797 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
35
36
37
38
39
40
41
42
43
output "account_id" {
value = data.aws_caller_identity.current.account_id
}
output "arn" {
value = data.aws_caller_identity.current.arn
}
output "az_group_names" {
value = data.aws_availability_zones.current.group_names
}
output "az_names" {
value = data.aws_availability_zones.current.names
}
output "az_zone_ids" {
value = data.aws_availability_zones.current.zone_ids
}
output "aws_caller_identity" {
value = data.aws_caller_identity.current
}
output "dns_suffix" {
value = data.aws_partition.current.dns_suffix
}
output "partition" {
value = data.aws_partition.current.partition
}
output "region" {
value = data.aws_region.current
}
output "regions" {
value = data.aws_regions.current.names
}
output "user_id" {
value = data.aws_caller_identity.current.user_id
}