forked from claudiobizzotto/aws-mwaa-terraform
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathvariables.tf
37 lines (30 loc) · 756 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
# MWAA input variables
variable "region" {
type = string
description = "AWS region where resources will be deployed."
}
variable "profile" {
type = string
description = "AWS profile to be used."
}
variable "prefix" {
type = string
description = "A prefix to use when naming resources."
}
variable "vpc_cidr" {
type = string
description = "VPC CIDR block."
}
variable "public_subnet_cidrs" {
type = list(string)
description = "Public subnets' CIDR blocks."
}
variable "private_subnet_cidrs" {
type = list(string)
description = "Private subnets' CIDR blocks."
}
variable "mwaa_max_workers" {
type = number
description = "Maximum number of MWAA workers."
default = 2
}