You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This module handles opinionated Google Cloud Platform routing.
3
+
This module handles opinionated Google Cloud Platform [cloud router](https://cloud.google.com/network-connectivity/docs/router/concepts/overview). Optionally it can also create [cloud nat](https://cloud.google.com/nat/docs/overview)
4
+
5
+
## Compatibility
6
+
7
+
This module is meant for use with Terraform 1.3+ and tested using Terraform 1.3+. If you find incompatibilities using Terraform >=1.3, please open an issue.
8
+
9
+
## Version
10
+
11
+
Upgrade guides:
12
+
13
+
-[5.X -> 6.0.](/docs/upgrading_to_v6.0.md)
4
14
5
15
## Usage
6
16
@@ -9,27 +19,33 @@ Basic usage of this module is as follows:
# The ASN (16550, 64512 - 65534, 4200000000 - 4294967294) can be any private ASN
29
+
# not already used as a peer ASN in the same region and network or 16550 for Partner Interconnect.
30
+
asn = "65001"
31
+
}
32
+
33
+
project = "<PROJECT ID>"
17
34
network = "default"
18
35
}
19
36
```
20
37
21
-
Functional examples are included in the
22
-
[examples](./examples/) directory.
38
+
Functional examples are included in the [examples](./examples/) directory. By default logging will be enabled for `Cloud NAT` with `filter` set to `All`. You can disable cloud nat logging by setting parameters in `nats.log_config`
23
39
24
40
<!-- BEGINNING OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
25
41
## Inputs
26
42
27
43
| Name | Description | Type | Default | Required |
The v6.0 release contains backwards-incompatible changes.
4
+
5
+
### [Terraform](https://www.terraform.io/downloads.html) >= 1.3.0 is required Since [optional attributes](https://developer.hashicorp.com/terraform/language/expressions/type-constraints#optional-object-type-attributes) is a version 1.3 feature, the configuration will fail if the pinned version is < 1.3.
0 commit comments