From c8aa70820d9e62547c42166824a6e3a81425dc5a Mon Sep 17 00:00:00 2001 From: Valentin Khramtsov Date: Mon, 30 Dec 2024 16:51:56 +0300 Subject: [PATCH] Tflint for aws-pritunl module --- terraform/modules/aws-pritunl/variables.tf | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/terraform/modules/aws-pritunl/variables.tf b/terraform/modules/aws-pritunl/variables.tf index 86992871..7bc19f91 100644 --- a/terraform/modules/aws-pritunl/variables.tf +++ b/terraform/modules/aws-pritunl/variables.tf @@ -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" }