-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
35 lines (31 loc) · 939 Bytes
/
variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
####################################
# API Gateway V1 VPC Link Variables
####################################
variable "create_rest_vpc_links" {
description = "Whether or not to allow creation of an REST VPC Link."
type = bool
default = false
}
variable "rest_vpc_links" {
description = "Map of objects that define the vpc links that get created."
type = any
default = []
}
####################################
# API Gateway V2 VPC Link Variables
####################################
variable "create_http_vpc_links" {
description = "Whether or not to allow creation of an HTTP VPC Link."
type = bool
default = false
}
variable "http_vpc_links" {
description = "Map of objects that define the vpc links that get created."
type = any
default = []
}
variable "tags" {
description = "Tags to assign to each VPC Link resource."
type = any
default = {}
}