# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: MIT-0 # --- examples/central_egress_ingress/variables.tf --- variable "aws_region" { type = string description = "AWS Region - to build the Hub and Spoke." default = "eu-west-1" } variable "identifier" { type = string description = "Project identifier." default = "central-egress-ingress" } variable "spoke_vpcs" { type = map(any) description = "Spoke VPCs." default = { "vpc1" = { cidr_block = "10.0.0.0/24" number_azs = 2 routing_domain = "prod" } "vpc2" = { cidr_block = "10.0.1.0/24" number_azs = 2 routing_domain = "prod" } } }