terraform-demo/modules/route-add/variables.tf
2023-01-11 01:31:56 +09:00

19 lines
328 B
HCL

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"
}