forked from aws-samples/aws-network-hub-for-terraform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
31 lines (26 loc) · 767 Bytes
/
variables.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
/* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
SPDX-License-Identifier: MIT-0 */
variable "environment" {
description = "Deployment environment passed as argument or environment variable"
type = string
}
variable "env_config" {
description = "Map of objects for per environment configuration"
type = map(object({
ipam_cidr = string
tgw_route_tables = list(string)
root_domain = string
}))
}
variable "aws_region" {
description = "AWS region being deployed to"
type = string
}
variable "vpc_endpoints" {
description = "Which VPC endpoints to use"
type = list(string)
}
variable "tags" {
description = "Default tags to apply to all resources"
type = map(string)
}