-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathinputs.tf
43 lines (35 loc) · 984 Bytes
/
inputs.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
42
43
# Input variables
variable "region" {
type = string
description = "AWS region where resources will be deployed."
}
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
}
variable "client_vpn_cidr_block" {
type = string
description = "Client CIDR block for MWAA client VPN."
}
variable "vpn_acm_validity_period_in_days" {
type = number
description = "Amount of days after which TLS certificates used for MWAA client VPN should expire."
default = 1095 # 3 years
}