From 65ed0a6d5713a6e854ad2868d8537d92859f54b3 Mon Sep 17 00:00:00 2001 From: Carlos Castro Date: Thu, 28 Jul 2022 09:13:07 +0100 Subject: [PATCH] fix typos; --- variables.tf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/variables.tf b/variables.tf index a703cce..f76e734 100644 --- a/variables.tf +++ b/variables.tf @@ -1,11 +1,11 @@ -var "mongodbatlas_public_key" { - type = "string" +variable "mongodbatlas_public_key" { + type = string description = "The public key for the MongoDB Atlas API" default = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" } -var "mongodbatlas_private_key" { - type = "string" +variable "mongodbatlas_private_key" { + type = string description = "The private key for the MongoDB Atlas API" default = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" }