-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathoutputs.tf
45 lines (38 loc) · 1.04 KB
/
outputs.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
44
45
output "location" {
description = "Converted Azure region in standard format"
value = module.azure_region.location
sensitive = false
}
output "location_short" {
description = "Converted Azure region in short format for resource naming purpose"
value = module.azure_region.location_short
sensitive = false
}
output "location_cli" {
description = "Converted Azure region in Azure CLI name format"
value = module.azure_region.location_cli
sensitive = false
}
output "azure_user_tags" {
description = "Azure user tags"
value = module.azure_user_tags.tags
}
output "aws_user_tags" {
description = "AWS user tags"
value = module.aws_user_tags.tags
sensitive = false
}
output "tls_private_key" {
description = "TLS private key data"
value = tls_private_key.this
sensitive = true
}
output "module_key_pair" {
description = "Key pair data"
value = module.key-pair
sensitive = false
}
output "create_test_vms" {
value = module.create_test_vms
sensitive = false
}