diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f5335e5..2fd4003b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -808,8 +808,8 @@ All notable changes to this project will be documented in this file. - use `xpnServiceAdmin` (custom role) for stage 3 service accounts that need to attach to a shared VPC - simplify and standarize ourputs from each stage - standarize names of projects, service accounts and buckets -- swtich to folder-level `xpnAdmin` and `xpnServiceAdmin` -- moved networking projects to folder matching their enviroments +- switch to folder-level `xpnAdmin` and `xpnServiceAdmin` +- moved networking projects to folder matching their environments ## [13.0.0] - 2022-01-27 diff --git a/blueprints/networking/ha-vpn-over-interconnect/README.md b/blueprints/networking/ha-vpn-over-interconnect/README.md index 8dfab4a8..db89d87e 100644 --- a/blueprints/networking/ha-vpn-over-interconnect/README.md +++ b/blueprints/networking/ha-vpn-over-interconnect/README.md @@ -1,6 +1,6 @@ # HA VPN over Interconnect -This blueprint creates a complete HA VPN over Interconnect setup, which leverages IPSec to encrypt all traffic transiting through purposedly-created VLAN Attachments. +This blueprint creates a complete HA VPN over Interconnect setup, which leverages IPSec to encrypt all traffic transiting through purposely-created VLAN Attachments. This blueprint supports Dedicated Interconnect - in case Partner Interconnect is used instead (hence the VLAN Attachments are already created), simply refer to the [net-ipsec-over-interconnect](../../../modules/net-ipsec-over-interconnect/) module documentation. diff --git a/modules/net-dedicated-vlan-attachment/README.md b/modules/net-dedicated-vlan-attachment/README.md index a5a3c860..d3df8457 100644 --- a/modules/net-dedicated-vlan-attachment/README.md +++ b/modules/net-dedicated-vlan-attachment/README.md @@ -293,7 +293,7 @@ module "example-va-b" { | [bandwidth](variables.tf#L23) | The bandwidth assigned to the VLAN attachment (e.g. BPS_10G). | string | | "BPS_10G" | | [bgp_range](variables.tf#L30) | The underlay link-local IP range (in CIDR notation). | string | | "169.254.128.0/29" | | [ipsec_gateway_ip_ranges](variables.tf#L46) | IPSec Gateway IP Ranges. | map(string) | | {} | -| [mtu](variables.tf#L52) | The MTU associated to the VLAN attachemnt (1440 / 1500). | number | | 1500 | +| [mtu](variables.tf#L52) | The MTU associated to the VLAN attachment (1440 / 1500). | number | | 1500 | | [vpn_gateways_ip_range](variables.tf#L109) | The IP range (cidr notation) to be used for the GCP VPN gateways. If null IPSec over Interconnect is not enabled. | string | | null | diff --git a/modules/net-dedicated-vlan-attachment/variables.tf b/modules/net-dedicated-vlan-attachment/variables.tf index f75261cd..10e771ad 100644 --- a/modules/net-dedicated-vlan-attachment/variables.tf +++ b/modules/net-dedicated-vlan-attachment/variables.tf @@ -50,7 +50,7 @@ variable "ipsec_gateway_ip_ranges" { } variable "mtu" { - description = "The MTU associated to the VLAN attachemnt (1440 / 1500)." + description = "The MTU associated to the VLAN attachment (1440 / 1500)." type = number default = "1500" }