Skip to content

Commit

Permalink
generate-terraform-docs: automated action (#129)
Browse files Browse the repository at this point in the history
Signed-off-by: GitHub <[email protected]>
Co-authored-by: thogarty <[email protected]>
Co-authored-by: thogarty <[email protected]>
  • Loading branch information
3 people authored Sep 13, 2024
1 parent 2987c47 commit 4b0a209
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions modules/cloud-router-routing-protocols/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,11 @@ variable "bgp_customer_asn" {
type = string
default = ""
}
variable "bgp_auth_key" {
description = "BGP authorization key"
type = string
default = ""
}
```

#outputs.tf
Expand Down Expand Up @@ -117,6 +122,7 @@ resource "equinix_fabric_routing_protocol" "bgp" {
type = "BGP"
customer_asn = var.bgp_customer_asn
bgp_auth_key = var.bgp_auth_key != "" ? var.bgp_auth_key : null
bgp_ipv4 {
enabled = var.bgp_enabled_ipv4
Expand Down Expand Up @@ -159,6 +165,7 @@ No modules.

| Name | Description | Type | Default | Required |
|------|-------------|------|---------|:--------:|
| <a name="input_bgp_auth_key"></a> [bgp\_auth\_key](#input\_bgp\_auth\_key) | BGP authorization key | `string` | `""` | no |
| <a name="input_bgp_customer_asn"></a> [bgp\_customer\_asn](#input\_bgp\_customer\_asn) | Customer ASN for BGP Routing Protocol | `string` | `""` | no |
| <a name="input_bgp_customer_peer_ipv4"></a> [bgp\_customer\_peer\_ipv4](#input\_bgp\_customer\_peer\_ipv4) | Customer Peering IPv4 Address for BGP Routing Protocol | `string` | `""` | no |
| <a name="input_bgp_customer_peer_ipv6"></a> [bgp\_customer\_peer\_ipv6](#input\_bgp\_customer\_peer\_ipv6) | Customer Peering IPv6 Address for BGP Routing Protocol | `string` | `""` | no |
Expand Down

0 comments on commit 4b0a209

Please sign in to comment.