-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
expand example with verification step
- Loading branch information
Marcel Boehm
committed
Jun 27, 2023
1 parent
b917e4e
commit c76c9e1
Showing
3 changed files
with
45 additions
and
7 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,4 +1,9 @@ | ||
output "result" { | ||
output "result_with_cidr" { | ||
description = "The resulting IPs including their subnet. This value can be directly used e.g. for creating a managed PostgreSQL cluster." | ||
value = local.result_ips_cidr | ||
} | ||
|
||
output "result" { | ||
description = "The resulting IPs without their subnet." | ||
value = local.result_ips | ||
} |