-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables.tf
43 lines (36 loc) · 1020 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
variable "name_prefix" {
description = "Creates a unique name beginning with the specified prefix"
default = null
}
variable "name" {
description = "The name of the security group"
default = null
}
variable "description" {
description = "The security group description. Defaults to Managed by Terraform"
default = null
}
variable "ingress" {
description = "Ingress rules for security group"
type = any
default = []
}
variable "egress" {
description = "Egress rules for security group"
type = any
default = []
}
variable "revoke_rules_on_delete" {
description = "Instruct Terraform to revoke all of the Security Groups attached ingress and egress rules before deleting the rule itself"
type = bool
default = false
}
variable "vpc_id" {
description = "The VPC ID"
default = null
}
variable "tags" {
description = "A mapping of tags to assign to the resource."
type = map(string)
default = {}
}