-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4e5dbb6
commit 9d2366a
Showing
4 changed files
with
6 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
output "id" { | ||
description = "an identifier for the resource with format projects/{{project}}/global/networks/{{name}}" | ||
value = try(google_compute_network.network[0].id, null) | ||
value = try(google_compute_network.this[0].id, null) | ||
} | ||
|
||
output "gateway_ipv4" { | ||
description = "The gateway address for default routing out of the network. This value is selected by GCP." | ||
value = try(google_compute_network.network[0].gateway_ipv4, null) | ||
value = try(google_compute_network.this[0].gateway_ipv4, null) | ||
} | ||
|
||
output "numeric_id" { | ||
description = "The unique identifier for the resource. This identifier is defined by the server." | ||
value = try(google_compute_network.network[0].numeric_id, null) | ||
value = try(google_compute_network.this[0].numeric_id, null) | ||
} | ||
|
||
output "self_link" { | ||
description = "The URI of the created resource." | ||
value = try(google_compute_network.network[0].self_link, null) | ||
value = try(google_compute_network.this[0].self_link, null) | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters