We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e154b84 commit 34e2218Copy full SHA for 34e2218
examples/simple-provision/outputs.tf
@@ -0,0 +1,33 @@
1
+###
2
+# VDB Group Information
3
4
+output "vdb_group_id" {
5
+ value = delphix_vdb_group.create_vdb_group.id
6
+}
7
+
8
+output "vdb_group_name" {
9
+ value = delphix_vdb_group.create_vdb_group.name
10
11
12
13
+# VDB 1 Information
14
15
+output "vdb_id_1" {
16
+ value = delphix_vdb.provision_vdb_1.id
17
18
19
+output "vdb_name_1" {
20
+ value = delphix_vdb.provision_vdb_1.name
21
22
23
+output "vdb_ip_address_1" {
24
+ value = delphix_vdb.provision_vdb_1.ip_address
25
26
27
+output "vdb_database_type_1" {
28
+ value = delphix_vdb.provision_vdb_1.database_type
29
30
31
+output "vdb_database_version_1" {
32
+ value = delphix_vdb.provision_vdb_1.database_version
33
0 commit comments