-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
31 lines (28 loc) · 1.28 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
################################################################################
# Blobstore Azure
################################################################################
output "blobstore_azure_name" {
description = "The name of the blobstore azure."
value = [for b in module.nexus_blobstore_azure : b.name]
}
################################################################################
# Blobstore File
################################################################################
output "blobstore_file_name" {
description = "The name of the blobstore file."
value = [for b in module.nexus_blobstore_file : b.name]
}
################################################################################
# Blobstore Group
################################################################################
output "blobstore_group_name" {
description = "The name of the blobstore group."
value = [for b in module.nexus_blobstore_group : b.name]
}
################################################################################
# Blobstore S3
################################################################################
output "blobstore_s3_name" {
description = "The name of the blobstore s3."
value = [for b in module.nexus_blobstore_s3 : b.name]
}