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
| create\_vpn\_gateway | create a VPN gateway |`bool`|`true`| no |
270
270
| external\_vpn\_gateway\_description | An optional description of external VPN Gateway |`string`|`"Terraform managed external VPN gateway"`| no |
271
+
| interconnect\_attachment | URL of the interconnect attachment resource. When the value of this field is present, the VPN Gateway will be used for IPsec-encrypted Cloud Interconnect. |`list(string)`|`[]`| no |
271
272
| ipsec\_secret\_length | The lnegth the of shared secret for VPN tunnels |`number`|`8`| no |
272
273
| keepalive\_interval | The interval in seconds between BGP keepalive messages that are sent to the peer. |`number`|`20`| no |
273
274
| labels | Labels for vpn components |`map(string)`|`{}`| no |
Copy file name to clipboardExpand all lines: modules/vpn_ha/variables.tf
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -44,6 +44,12 @@ variable "stack_type" {
44
44
default="IPV4_ONLY"
45
45
}
46
46
47
+
variable"interconnect_attachment" {
48
+
description="URL of the interconnect attachment resource. When the value of this field is present, the VPN Gateway will be used for IPsec-encrypted Cloud Interconnect."
49
+
type=list(string)
50
+
default=[]
51
+
}
52
+
47
53
variable"network" {
48
54
description="VPC used for the gateway and routes."
0 commit comments