-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
34 lines (28 loc) · 981 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
32
33
34
##################################################################################
# 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."
}
variable "environment" {
type = string
description = "(Optional) Environment to use for all resources in this module."
}
variable "cidr_block" {
type = string
description = "(Optional) The CIDR block for the VPC."
}
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."
}
variable "billing_code" {
type = string
description = "(Required) Billing code for network resources"
}