Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Multiple Updates in READMEs and wording #1407

Merged
merged 1 commit into from
May 31, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion blueprints/networking/ha-vpn-over-interconnect/README.md
Original file line number Diff line number Diff line change
@@ -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.

Expand Down
2 changes: 1 addition & 1 deletion modules/net-dedicated-vlan-attachment/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ module "example-va-b" {
| [bandwidth](variables.tf#L23) | The bandwidth assigned to the VLAN attachment (e.g. BPS_10G). | <code>string</code> | | <code>&#34;BPS_10G&#34;</code> |
| [bgp_range](variables.tf#L30) | The underlay link-local IP range (in CIDR notation). | <code>string</code> | | <code>&#34;169.254.128.0&#47;29&#34;</code> |
| [ipsec_gateway_ip_ranges](variables.tf#L46) | IPSec Gateway IP Ranges. | <code>map&#40;string&#41;</code> | | <code>&#123;&#125;</code> |
| [mtu](variables.tf#L52) | The MTU associated to the VLAN attachemnt (1440 / 1500). | <code>number</code> | | <code>1500</code> |
| [mtu](variables.tf#L52) | The MTU associated to the VLAN attachment (1440 / 1500). | <code>number</code> | | <code>1500</code> |
| [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. | <code>string</code> | | <code>null</code> |

<!-- END TFDOC -->
2 changes: 1 addition & 1 deletion modules/net-dedicated-vlan-attachment/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Expand Down