From cf3d57046a6e0d19c1135010a66734c605b5c793 Mon Sep 17 00:00:00 2001 From: Michele Cereda Date: Tue, 17 Jan 2023 23:21:41 +0100 Subject: [PATCH] Added type constraint --- .../airgapped terraform enterprise on azure/variables.tf | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/terraform/airgapped terraform enterprise on azure/variables.tf b/terraform/airgapped terraform enterprise on azure/variables.tf index 370682b..020dad6 100644 --- a/terraform/airgapped terraform enterprise on azure/variables.tf +++ b/terraform/airgapped terraform enterprise on azure/variables.tf @@ -1,7 +1,9 @@ variable "replicated_config_file_path" { + type = string default = "/etc/replicated.conf" description = "Only read on initial startup." } variable "tfe_config_file_path" { - default = "/etc/ptfe.settings.json" + type = string + default = "/etc/settings.conf" }