forked from cloudposse/terraform-aws-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
executable file
·33 lines (28 loc) · 1010 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
variable "region" {
type = string
description = "AWS Region"
}
variable "performance_mode" {
type = string
default = "generalPurpose"
description = "The file system performance mode. Can be either `generalPurpose` or `maxIO`"
}
variable "throughput_mode" {
type = string
default = "bursting"
description = "Throughput mode for the file system. Defaults to bursting. Valid values: `bursting`, `provisioned`. When using `provisioned`, also set `provisioned_throughput_in_mibps`"
}
variable "provisioned_throughput_in_mibps" {
type = number
default = 0
description = "The throughput, measured in MiB/s, that you want to provision for the file system. Only applicable with `throughput_mode` set to provisioned"
}
variable "dns_name" {
type = string
description = "Name of the CNAME record to create"
}
variable "use_eks_security_group" {
type = bool
description = "Use the eks default security group"
default = false
}