-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
38 lines (32 loc) · 1.09 KB
/
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
32
33
34
35
36
37
##################################################################################
# VARIABLES
##################################################################################
variable "region" {
type = string
description = "(Optional) AWS Region to use. Default: us-east-1"
default = "us-east-1"
}
variable "prefix" {
type = string
description = "(Optional) Prefix to use for all resources in this module. Default: globo-dev"
}
variable "environment" {
type = string
description = "(Optional) Environment of all resources. Default: development"
}
variable "billing_code" {
type = string
description = "(Required) Billing code for network resources"
}
variable "cidr_block" {
type = string
description = "(Optional) The CIDR block for the VPC. Default:10.42.0.0/16"
}
variable "public_subnets" {
type = map(string)
description = "(Optional) Map of public subnets to create with CIDR blocks. Key will be used as subnet name with prefix. Default: {subnet-1 ="
default = {
public-1 = "10.42.10.0/24"
public-2 = "10.42.11.0/24"
}
}