File tree 1 file changed +10
-3
lines changed
1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -54,14 +54,21 @@ output "minio_storage_passwords" {
54
54
}
55
55
56
56
output "couchbackup_storage_names" {
57
- value = module. simphera_instance [* ]. couchbackup_storage_name
57
+ value = tomap ({
58
+ for name , instance in module . simphera_instance : name => instance . couchbackup_storage_name
59
+ })
58
60
}
59
61
60
62
output "couchbackup_storage_account_keys" {
61
- value = module. simphera_instance [* ]. couchbackup_storage_account_key
63
+ value = tomap ({
64
+ for name , instance in module . simphera_instance : name => instance . couchbackup_storage_account_key
65
+ })
62
66
sensitive = true
67
+
63
68
}
64
69
65
70
output "couchbackup_storage_share_names" {
66
- value = module. simphera_instance [* ]. couchbackup_storage_share_name
71
+ value = tomap ({
72
+ for name , instance in module . simphera_instance : name => instance . couchbackup_storage_share_name
73
+ })
67
74
}
You can’t perform that action at this time.
0 commit comments