-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
41 lines (34 loc) · 905 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
35
36
37
38
39
40
41
variable "prefix" {
type = string
description = "Prefix to many of the resources created which helps as an identifier, could be company name, solution name, etc"
default = "tw-krish-iac-lab"
}
variable "region" {
type = string
description = "Region to deploy the solution"
default = "ap-south-1"
}
variable "vpc_cidr" {
type = string
description = "VPC CIDR block"
}
variable "public_subnets" {
description = "Number of public subnets in the VPC"
type = number
}
variable "private_subnets" {
description = "Number of private subnets in the VPC"
type = number
}
variable "secure_subnets" {
description = "Number of secure subnets in the VPC"
type = number
}
variable "db_username" {
type = string
description = "Database username"
}
variable "db_name" {
type = string
description = "Database name"
}