Skip to content

Commit

Permalink
add static gateway id to outputs (#1270)
Browse files Browse the repository at this point in the history
  • Loading branch information
ludoo authored and lcaggio committed May 5, 2023
1 parent aedd2f7 commit 7525642
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 8 deletions.
17 changes: 9 additions & 8 deletions modules/net-vpn-ha/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,13 +147,14 @@ module "vpn_ha" {
| [bgp_peers](outputs.tf#L18) | BGP peer resources. | |
| [external_gateway](outputs.tf#L25) | External VPN gateway resource. | |
| [gateway](outputs.tf#L30) | VPN gateway resource (only if auto-created). | |
| [name](outputs.tf#L35) | VPN gateway name (only if auto-created). . | |
| [random_secret](outputs.tf#L40) | Generated secret. | |
| [router](outputs.tf#L45) | Router resource (only if auto-created). | |
| [router_name](outputs.tf#L50) | Router name. | |
| [self_link](outputs.tf#L55) | HA VPN gateway self link. | |
| [tunnel_names](outputs.tf#L60) | VPN tunnel names. | |
| [tunnel_self_links](outputs.tf#L68) | VPN tunnel self links. | |
| [tunnels](outputs.tf#L76) | VPN tunnel resources. | |
| [id](outputs.tf#L35) | Static gateway id. | |
| [name](outputs.tf#L42) | VPN gateway name (only if auto-created). . | |
| [random_secret](outputs.tf#L47) | Generated secret. | |
| [router](outputs.tf#L52) | Router resource (only if auto-created). | |
| [router_name](outputs.tf#L57) | Router name. | |
| [self_link](outputs.tf#L62) | HA VPN gateway self link. | |
| [tunnel_names](outputs.tf#L67) | VPN tunnel names. | |
| [tunnel_self_links](outputs.tf#L75) | VPN tunnel self links. | |
| [tunnels](outputs.tf#L83) | VPN tunnel resources. | |

<!-- END TFDOC -->
7 changes: 7 additions & 0 deletions modules/net-vpn-ha/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,13 @@ output "gateway" {
value = one(google_compute_ha_vpn_gateway.ha_gateway[*])
}

output "id" {
description = "Static gateway id."
value = (
"projects/${var.project_id}/regions/${var.region}/vpnGateways/${var.name}"
)
}

output "name" {
description = "VPN gateway name (only if auto-created). ."
value = one(google_compute_ha_vpn_gateway.ha_gateway[*].name)
Expand Down

0 comments on commit 7525642

Please sign in to comment.