Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Full Mesh Trio

License

NotificationsYou must be signed in to change notification settings

JudeQuintana/terraform-aws-full-mesh-trio

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Full Mesh Trio module builds peering links (red) between existing hub spoke tgws (Centralized Routers) and adds proper routes to all TGWs and their attached VPCs, etc.

The resulting architecture is a full mesh configurion between 3 hub spoke topologies.See it in action in theFull Mesh Trio DemoandDual Stack Full Mesh Trio Demo

v1.0.1:

  • reorganize files
  • ipv4 VPC routes for ipv4 secondary cidrs
  • ipv4 TGW routes for ipv4 secondary cidrs
  • ipv6 VPC routes for ipv6 network cidrs
  • ipv6 TGW routes for ipv6 network cidrs
  • ipv6 VPC routes for ipv6 secondary cidrs
  • ipv6 TGW routes for ipv6 secondary cidrs
  • moar validation
module "full_mesh_trio" {  source  = "JudeQuintana/full-mesh-trio/aws"  version = "1.0.1"...

v1.0.0:

  • ipv4 VPC routes for ipv4 network cidrs
module "full_mesh_trio" {  source  = "JudeQuintana/full-mesh-trio/aws"  version = "1.0.0"  providers = {    aws.one   = aws.use1    aws.two   = aws.use2    aws.three = aws.usw2  } env_prefix = var.env_prefix full_mesh_trio = {   one = {     centralized_router = module.centralized_router_use1   }   two = {     centralized_router = module.centralized_router_use2   }   three = {     centralized_router = module.centralized_router_usw2   } }}output "full_mesh_trio" { value = module.full_mesh_trio}

Requirements

NameVersion
terraform>=1.3
aws>=5.61

Providers

NameVersion
aws.one>=5.61
aws.three>=5.61
aws.two>=5.61

Modules

No modules.

Resources

NameType
aws_ec2_transit_gateway_peering_attachment.this_one_to_this_tworesource
aws_ec2_transit_gateway_peering_attachment.this_three_to_this_oneresource
aws_ec2_transit_gateway_peering_attachment.this_two_to_this_threeresource
aws_ec2_transit_gateway_peering_attachment_accepter.this_one_to_this_tworesource
aws_ec2_transit_gateway_peering_attachment_accepter.this_three_to_this_oneresource
aws_ec2_transit_gateway_peering_attachment_accepter.this_two_to_this_threeresource
aws_ec2_transit_gateway_route.this_one_tgw_ipv6_routes_to_vpcs_in_three_tgwresource
aws_ec2_transit_gateway_route.this_one_tgw_ipv6_routes_to_vpcs_in_two_tgwresource
aws_ec2_transit_gateway_route.this_one_tgw_routes_to_vpcs_in_three_tgwresource
aws_ec2_transit_gateway_route.this_one_tgw_routes_to_vpcs_in_two_tgwresource
aws_ec2_transit_gateway_route.this_three_tgw_ipv6_routes_to_vpcs_in_one_tgwresource
aws_ec2_transit_gateway_route.this_three_tgw_ipv6_routes_to_vpcs_in_two_tgwresource
aws_ec2_transit_gateway_route.this_three_tgw_routes_to_vpcs_in_one_tgwresource
aws_ec2_transit_gateway_route.this_three_tgw_routes_to_vpcs_in_two_tgwresource
aws_ec2_transit_gateway_route.this_two_tgw_ipv6_routes_to_vpcs_in_one_tgwresource
aws_ec2_transit_gateway_route.this_two_tgw_ipv6_routes_to_vpcs_in_three_tgwresource
aws_ec2_transit_gateway_route.this_two_tgw_routes_to_vpcs_in_one_tgwresource
aws_ec2_transit_gateway_route.this_two_tgw_routes_to_vpcs_in_three_tgwresource
aws_ec2_transit_gateway_route_table_association.this_one_to_this_threeresource
aws_ec2_transit_gateway_route_table_association.this_one_to_this_tworesource
aws_ec2_transit_gateway_route_table_association.this_three_to_this_oneresource
aws_ec2_transit_gateway_route_table_association.this_three_to_this_tworesource
aws_ec2_transit_gateway_route_table_association.this_two_to_this_oneresource
aws_ec2_transit_gateway_route_table_association.this_two_to_this_threeresource
aws_route.this_one_vpc_ipv6_routes_to_three_tgw_vpcsresource
aws_route.this_one_vpc_ipv6_routes_to_two_tgw_vpcsresource
aws_route.this_one_vpc_routes_to_three_tgw_vpcsresource
aws_route.this_one_vpc_routes_to_two_tgw_vpcsresource
aws_route.this_three_vpc_ipv6_routes_to_one_tgw_vpcsresource
aws_route.this_three_vpc_ipv6_routes_to_two_tgw_vpcsresource
aws_route.this_three_vpc_routes_to_one_tgw_vpcsresource
aws_route.this_three_vpc_routes_to_two_tgw_vpcsresource
aws_route.this_two_vpc_ipv6_routes_to_one_tgw_vpcsresource
aws_route.this_two_vpc_ipv6_routes_to_three_tgw_vpcsresource
aws_route.this_two_vpc_routes_to_one_tgw_vpcsresource
aws_route.this_two_vpc_routes_to_three_tgw_vpcsresource
aws_caller_identity.this_onedata source
aws_caller_identity.this_threedata source
aws_caller_identity.this_twodata source
aws_region.this_onedata source
aws_region.this_threedata source
aws_region.this_twodata source

Inputs

NameDescriptionTypeDefaultRequired
env_prefixprod, stage, teststringn/ayes
full_mesh_triofull mesh trio configuration
object({
one = object({
centralized_router = object({
account_id = string
amazon_side_asn = string
full_name = string
id = string
name = string
region = string
route_table_id = string
vpc = object({
names = list(string)
network_cidrs = list(string)
secondary_cidrs = list(string)
ipv6_network_cidrs = list(string)
ipv6_secondary_cidrs = list(string)
private_route_table_ids = list(string)
public_route_table_ids = list(string)
})
})
})
two = object({
centralized_router = object({
account_id = string
amazon_side_asn = string
full_name = string
id = string
name = string
region = string
route_table_id = string
vpc = object({
names = list(string)
network_cidrs = list(string)
secondary_cidrs = list(string)
ipv6_network_cidrs = list(string)
ipv6_secondary_cidrs = list(string)
private_route_table_ids = list(string)
public_route_table_ids = list(string)
})
})
})
three = object({
centralized_router = object({
account_id = string
amazon_side_asn = string
full_name = string
id = string
name = string
region = string
route_table_id = string
vpc = object({
names = list(string)
network_cidrs = list(string)
secondary_cidrs = list(string)
ipv6_network_cidrs = list(string)
ipv6_secondary_cidrs = list(string)
private_route_table_ids = list(string)
public_route_table_ids = list(string)
})
})
})
})
n/ayes
tagsAdditional Tagsmap(string){}no

Outputs

NameDescription
peeringn/a

About

Full Mesh Trio

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages


[8]ページ先頭

©2009-2025 Movatter.jp