Skip to content
This repository was archived by the owner on Apr 18, 2024. It is now read-only.

Commit 41fdf37

Browse files
committed
Removed multi-AD from network output.tf
1 parent 0641354 commit 41fdf37

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

terraform/modules/network/outputs.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
output "private-id" {
2-
value = "${oci_core_subnet.private.*.id[var.availability_domain - 1]}"
2+
value = "${oci_core_subnet.private.*.id}"
33
}
44

55
output "public-id" {
6-
value = "${oci_core_subnet.public.*.id[var.availability_domain - 1]}"
6+
value = "${oci_core_subnet.public.*.id}"
77
}
88

99
output "bastion-id" {
10-
value = "${oci_core_subnet.bastion.*.id[var.availability_domain - 1]}"
10+
value = "${oci_core_subnet.bastion.*.id}"
1111
}
1212

1313
output "vcn-dn" {

0 commit comments

Comments
 (0)