Skip to content

Commit

Permalink
Tflint for aws-pritunl module
Browse files Browse the repository at this point in the history
  • Loading branch information
kvvit committed Dec 30, 2024
1 parent 9600310 commit c8aa708
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions terraform/modules/aws-pritunl/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,32 +8,32 @@ variable "public_subnets" {
description = "A list of public subnets where Pritunl server will be run"
}

variable "private_subnets" {
type = list(any)
description = "A list of private subnets where EFS will be created"
}

variable "name" {
type = string
default = "pritunl"
description = "Name used for all resources in this module"
}

variable "environment" {
type = string
default = "infra"
description = "Environment name"
}

variable "instance_type" {
type = string
default = "t3.small"
description = "Pritunl server instance type"
}

variable "encrypted" {
type = bool
default = true
description = "Encrypt or not EFS"
}

variable "kms_key_id" {
type = string
default = null
description = "KMS key ID in case of using CMK"
}
Expand Down

0 comments on commit c8aa708

Please sign in to comment.