init
This commit is contained in:
30
modules/route-add/variables.tf
Normal file
30
modules/route-add/variables.tf
Normal file
@ -0,0 +1,30 @@
|
||||
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"
|
||||
}
|
||||
Reference in New Issue
Block a user