# ----------------------------------------------------------------------------- # Common module variables # ----------------------------------------------------------------------------- variable "username" { type = string description = "Your username - will be prepended to most resource names to track what's yours." } variable "tags" { type = map(any) default = {} description = "Common tags to apply to all taggable resources." } # ----------------------------------------------------------------------------- # Storage Gateway variables # ----------------------------------------------------------------------------- variable "region_prefixlist_mapping" { description = "mapping for finding correct prefix list for amazon corp" default = { "us-east-1" = "pl-60b85b09", "us-west-2" = "pl-f8a64391" } } variable "main_vpc_id" { type = string } variable "subnet_id" { type = string } variable "op_id" { type = string } variable "region" { type = string } variable "gateway_name" { type = string } variable "gateway_type" { type = string } variable "instance_type" { type = string }