forked from stephenharris/terraform-aws-efs-mount
-
Notifications
You must be signed in to change notification settings - Fork 0
/
inputs.tf
32 lines (27 loc) · 889 Bytes
/
inputs.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
variable "name" {
type = string
description = "(Required) The reference_name of your file system. Also, used in tags."
}
variable "subnets" {
type = list(string)
description = "(Required) A list of subnet ids where mount targets will be."
}
variable "vpc_id" {
type = string
description = "(Required) The VPC ID where NFS security groups will be."
}
variable "encrypted" {
description = "(Optional) If true, the disk will be encrypted"
default = false
type = bool
}
variable "kms_key_id" {
type = string
description = "The ARN of the key that you wish to use if encrypting at rest. If not supplied, uses service managed encryption. Can be specified only if `encrypted = true`"
default = ""
}
variable "tags" {
description = "A mapping of tags to apply to resources"
type = map(string)
default = {}
}