-
Notifications
You must be signed in to change notification settings - Fork 5
/
variables.tf
39 lines (33 loc) · 1.07 KB
/
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
variable "name" {
description = "Name of the Security Group"
type = string
}
variable "vpc_id" {
description = "VPC ID in which to create the Security Group"
type = string
}
variable "description" {
description = "Description of the Security Group"
type = string
default = "Managed by Terraform"
}
variable "ingress_rules" {
description = "A schema list of ingress rules for the Security Group, see <https://www.terraform.io/docs/providers/aws/r/security_group.html#ingress>"
type = list(any)
default = []
}
variable "egress_rules" {
description = "A schema list of egress rules for the Security Group, see <https://www.terraform.io/docs/providers/aws/r/security_group.html#egress>"
type = list(any)
default = []
}
variable "revoke_rules_on_delete" {
description = "Determines whether to forcibly remove rules when destroying the security group"
type = string
default = false
}
variable "tags" {
description = "A map of tags for the Security Group"
type = map(string)
default = {}
}