Skip to content

Commit

Permalink
Remove deprecated field (#31)
Browse files Browse the repository at this point in the history
This was actually invalid and was being flagged by the terraform
registry.
  • Loading branch information
bruce-y authored Jul 8, 2024
1 parent 6b1c750 commit e0f9fba
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}

Expand Down

0 comments on commit e0f9fba

Please sign in to comment.