Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
yadavprakash committed May 15, 2021
1 parent 38f79e8 commit 89fc1b3
Showing 1 changed file with 13 additions and 10 deletions.
23 changes: 13 additions & 10 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,14 @@ variable "managedby" {
# Description : Terraform EFS module variables.
variable "security_groups" {
type = list(string)
description = "Security group IDs to allow access to the EFS"
sensitive = true
description = "Security group IDs to allow access to the EFS"
}

variable "efs_enabled" {
type = bool
description = "Set to false to prevent the module from creating any resources"
default = true
description = "Set to false to prevent the module from creating any resources"
}

variable "creation_token" {
Expand All @@ -55,8 +55,8 @@ variable "creation_token" {

variable "vpc_id" {
type = string
description = "VPC ID"
sensitive = true
description = "VPC ID"
}

variable "region" {
Expand All @@ -66,33 +66,34 @@ variable "region" {

variable "subnets" {
type = list(string)
description = "Subnet IDs"
sensitive = true
description = "Subnet IDs"
}

variable "availability_zones" {
type = list(string)
description = "Availability Zone IDs"
sensitive = true
description = "Availability Zone IDs"
}

variable "zone_id" {
type = string
description = "Route53 DNS zone ID"
default = ""
sensitive = true
description = "Route53 DNS zone ID"
}

variable "delimiter" {
type = string
description = "Delimiter to be used between `namespace`, `stage`, `name` and `attributes`"
default = "-"
description = "Delimiter to be used between `namespace`, `stage`, `name` and `attributes`"

}

variable "attributes" {
type = list(string)
description = "Additional attributes (e.g. `1`)"
default = []
description = "If true, the file system will be encrypted"
}

variable "tags" {
Expand All @@ -103,14 +104,16 @@ variable "tags" {

variable "encrypted" {
type = bool
description = "If true, the file system will be encrypted"
default = true
description = "If true, the file system will be encrypted"

}

variable "performance_mode" {
type = string
description = "The file system performance mode. Can be either `generalPurpose` or `maxIO`"
default = "generalPurpose"
description = "The file system performance mode. Can be either `generalPurpose` or `maxIO`"

}

variable "provisioned_throughput_in_mibps" {
Expand Down

0 comments on commit 89fc1b3

Please sign in to comment.