generated from cloud-native-toolkit/template-terraform-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
63 lines (58 loc) · 1.7 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# output "default_rwx_storage_class" {
# description = "Default read-write-many storage class"
# value = "portworx-db2-rwx-sc"
# depends_on = [null_resource.install_portworx]
# }
output "rwx_storage_class" {
value = var.default_rwx_storage_class
depends_on = [null_resource.enable_portworx_encryption]
}
output "rwo_storage_class" {
value = var.default_rwo_storage_class
depends_on = [null_resource.enable_portworx_encryption]
}
output "file_storage_class" {
value = var.default_file_storage_class
depends_on = [null_resource.enable_portworx_encryption]
}
output "block_storage_class" {
value = var.default_block_storage_class
depends_on = [null_resource.enable_portworx_encryption]
}
output "storage_classes_provided" {
value = [
"portworx-cassandra-sc",
"portworx-couchdb-sc",
"portworx-db-gp",
"portworx-db-gp2-sc",
"portworx-db-gp3-sc",
"portworx-db2-fci-sc",
"portworx-db2-rwo-sc",
"portworx-db2-rwx-sc",
"portworx-dv-shared-gp",
"portworx-dv-shared-gp3",
"portworx-elastic-sc",
"portworx-gp3-sc",
"portworx-kafka-sc",
"portworx-metastoredb-sc",
"portworx-nonshared-gp2",
"portworx-rwx-gp-sc",
"portworx-rwx-gp2-sc",
"portworx-rwx-gp3-sc",
"portworx-shared-gp",
"portworx-shared-gp-allow",
"portworx-shared-gp1",
"portworx-shared-gp3",
"portworx-solr-sc",
"portworx-watson-assistant-sc",
"px-db",
"px-db-cloud-snapshot",
"px-db-cloud-snapshot-encrypted",
"px-db-encrypted",
"px-db-local-snapshot",
"px-db-local-snapshot-encrypted",
"px-replicated",
"px-replicated-encrypted"
]
depends_on = [null_resource.enable_portworx_encryption]
}