Skip to content

Commit

Permalink
Renamed output.tf in net-vlan-attachment (#1535)
Browse files Browse the repository at this point in the history
* Renamed output.tf in net-vlan-attachment
  • Loading branch information
sruffilli authored and thinhha committed Jul 29, 2023
1 parent 543723e commit a66bb38
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions modules/net-vlan-attachment/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -515,4 +515,16 @@ module "example-va-b" {
| [vlan_tag](variables.tf#L110) | The VLAN id to be used for this VLAN attachment. | <code>number</code> | | <code>null</code> |
| [vpn_gateways_ip_range](variables.tf#L116) | The IP range (cidr notation) to be used for the GCP VPN gateways. If null IPSec over Interconnect is not enabled. | <code>string</code> | | <code>null</code> |

## Outputs

| name | description | sensitive |
|---|---|:---:|
| [attachment](outputs.tf#L17) | VLAN Attachment resource. | |
| [id](outputs.tf#L22) | Fully qualified VLAN attachment id. | |
| [name](outputs.tf#L27) | The name of the VLAN attachment created. | |
| [pairing_key](outputs.tf#L32) | Opaque identifier of an PARTNER attachment used to initiate provisioning with a selected partner. | |
| [router](outputs.tf#L37) | Router resource (only if auto-created). | |
| [router_interface](outputs.tf#L42) | Router interface created for the VLAN attachment. | |
| [router_name](outputs.tf#L47) | Router name. | |

<!-- END TFDOC -->
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/

output "attachment" {
description = "VLAN Attachment resource"
description = "VLAN Attachment resource."
value = google_compute_interconnect_attachment.default
}

Expand Down

0 comments on commit a66bb38

Please sign in to comment.