-
Notifications
You must be signed in to change notification settings - Fork 16
/
variables.tf
44 lines (36 loc) · 878 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
36
37
38
39
40
41
42
43
44
variable "creator-request-id" {
type = "string"
description = "Name to identify the request"
}
variable "direction" {
type = "string"
description = "INBOUND OR OUTBOUND"
}
variable "subnet-ids" {
type = "list"
description = "The ID of subnets that contain the IP addresess"
}
variable "security-groups" {
type = "list"
description = "The ID of security groups that you want to use to control access to this VPC"
}
variable "ip_addresses" {
type = "list"
description = "The IP addresses to apply"
}
variable "endpoint-name" {
type = "string"
description = "A name for your endpoint"
}
variable "aws-profile" {
type = "string"
description = "The AWS profile as found in the ~/.aws/config file"
}
variable "tags" {
type = "string"
}
variable "delete" {
type = "string"
default = "false"
description = "Used to delete the the endpoint"
}