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 ea3ae56 commit 0f98e73Copy full SHA for 0f98e73
outputs.tf
@@ -21,3 +21,20 @@ output "crn" {
21
depends_on = [null_resource.post_vpc_address_pfx_default]
22
description = "The CRN for the vpc instance"
23
}
24
+
25
+output "count" {
26
+ value = 1
27
+ description = "The number of VPCs created by this module. Always set to 1"
28
+}
29
30
+output "names" {
31
+ value = [local.vpc_name]
32
+ depends_on = [null_resource.post_vpc_address_pfx_default]
33
+ description = "The name of the vpc instance"
34
35
36
+output "ids" {
37
+ value = [local.vpc_id]
38
39
+ description = "The id of the vpc instance"
40
0 commit comments