variable "service_tags" {
  description = "Resource tags"
  type        = map(string)
  default     = {}
}

variable "name" {
  description = "Name of the service"
  type        = string
}

variable "root_directory_path" {
  type        = string
  description = "Root directory path for the EFS service"
}

variable "mount_target_security_group_ids" {
  type        = list(string)
  description = "Security group IDs to attach to the EFS mount targets"
}

variable "mount_target_subnet_id" {
  type        = string
  description = "Subnet ID for the EFS mount target"
}

variable "kms_key_id" {
  type        = string
  description = "KMS key id to encrypt the EFS service"
}
