variable "project_prefix" { type = string } variable "env" { type = string } variable "account_id" { type = string } variable "region" { type = string default = "ap-northeast-1" } variable "region_az1" { type = string default = "ap-northeast-1a" } variable "region_az2" { type = string default = "ap-northeast-1c" } variable "vpc_cidr" { type = string default = "10.192.0.0/16" } variable "public_subnet1_cidr" { type = string default = "10.192.10.0/24" } variable "public_subnet2_cidr" { type = string default = "10.192.11.0/24" } variable "private_subnet1_cidr" { type = string default = "10.192.20.0/24" } variable "private_subnet2_cidr" { type = string default = "10.192.21.0/24" } variable "mwaa_env_name" { type = string }