From e0f9fba6d5151e929edd60db9b535c91f697d16c Mon Sep 17 00:00:00 2001 From: Bruce Yu <51087152+bruce-y@users.noreply.github.com> Date: Mon, 8 Jul 2024 13:52:11 -0400 Subject: [PATCH] Remove deprecated field (#31) This was actually invalid and was being flagged by the terraform registry. --- variables.tf | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/variables.tf b/variables.tf index f9a89fa..b2b9722 100644 --- a/variables.tf +++ b/variables.tf @@ -36,15 +36,9 @@ variable "superblocks_agent_tags" { EOF } -variable "superblocks_agent_port" { - type = number - default = "8080" - description = "DEPRECATED: Use superblocks_agent_http_port instead." -} - variable "superblocks_agent_http_port" { type = number - default = var.superblocks_agent_port + default = "8080" description = "The http port number used by Superblocks Agent container instance" }