-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaws.tf
67 lines (57 loc) · 1.98 KB
/
aws.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# Copyright 2023 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
locals {
default_num_ha_vpn_interfaces = 2
}
resource "aws_customer_gateway" "gwy" {
count = local.default_num_ha_vpn_interfaces
device_name = "${var.prefix}-gwy-${count.index}"
bgp_asn = var.gcp_router_asn
type = "ipsec.1"
ip_address = google_compute_ha_vpn_gateway.gwy.vpn_interfaces[count.index]["ip_address"]
}
resource "aws_ec2_transit_gateway" "tgw" {
amazon_side_asn = var.aws_router_asn
description = "EC2 transit gateway"
auto_accept_shared_attachments = "enable"
default_route_table_association = "enable"
default_route_table_propagation = "enable"
vpn_ecmp_support = "enable"
dns_support = "enable"
tags = {
Name = "${var.prefix}-tgw"
}
}
resource "awscc_ec2_transit_gateway_attachment" "tgw_attachment" {
subnet_ids = var.aws_private_subnets
transit_gateway_id = aws_ec2_transit_gateway.tgw.id
vpc_id = var.aws_vpc_id
tags = [
{
key = "Name"
value = "${var.prefix}-tgw-attachment"
}
]
}
resource "aws_vpn_connection" "vpn_conn" {
count = var.num_tunnels / 2
customer_gateway_id = aws_customer_gateway.gwy[count.index % 2].id
type = "ipsec.1"
transit_gateway_id = aws_ec2_transit_gateway.tgw.id
tunnel1_preshared_key = var.shared_secret
tunnel2_preshared_key = var.shared_secret
tags = {
Name = "${var.prefix}-vpn-connn"
}
}