terraform-demo/modules/route-add/variables.tf

30 lines
506 B
HCL

variable "destination_cidr" {
description = "destination cidr"
type = string
}
variable "route_id" {
description = "value"
type = string
}
variable "gw_type" {
description = "gateway type. nat or igw"
type = string
}
variable "igw_id" {
description = "value"
type = string
default = "null"
}
variable "nat_id" {
description = "value"
type = string
default = "null"
}
variable "tgw_id" {
description = "value"
type = string
default = "null"
}