-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample-redundant.tfvars
42 lines (40 loc) · 1.25 KB
/
example-redundant.tfvars
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
name = "demo-cts-redundant"
labels = ["terraform-cts", "nginx"]
asn = 4556
capacity = "10Gbps"
aws_cloud_router_connections = [
{
name = "packetfabric-cts-aws"
aws_region = "us-east-1"
aws_vpc_id = "vpc-bea401c4"
aws_asn1 = 64512
aws_asn2 = 64513
aws_pop = "NYC1" # https://packetfabric.com/locations/cloud-on-ramps
aws_speed = "2Gbps"
redundant = true
bgp_prefixes = [ # The prefixes in question must already be present as routes within the route table that is associated with the VPC
{
prefix = "10.1.1.0/24"
type = "out" # Allowed Prefixes to Cloud (to AWS)
}
]
}
]
google_cloud_router_connections = [
{
name = "packetfabric-cts-google"
google_project = "demo-setting-1234"
google_region = "us-west1"
google_network = "default"
google_asn = 16550
google_pop = "SFO1" # https://packetfabric.com/locations/cloud-on-ramps
google_speed = "1Gbps"
redundant = true
bgp_prefixes = [ # The prefixes in question must already be present as routes within the route table that is associated with the VPC
{
prefix = "172.16.1.0/24"
type = "out" # Allowed Prefixes to Cloud (to Google)
}
]
}
]