Skip to content

Commit

Permalink
reorder variables
Browse files Browse the repository at this point in the history
  • Loading branch information
atrull committed Nov 19, 2023
1 parent 9abc5d0 commit a504e4e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@ variable "service_urls" {
description = "List of urls to use for getting our IP"
}

variable "extra_service_urls" {
default = []
type = list(string)
description = "Put your own in here if you want extra ones, this gets merged with the `service_urls` list"
}

variable "request_timeout" {
default = 500
type = number
Expand All @@ -27,12 +33,6 @@ variable "retry_attempts" {
description = "Request retries"
}

variable "extra_service_urls" {
default = []
type = list(string)
description = "Put your own in here if you want extra ones, this gets merged with the `service_urls` list"
}

variable "data_provider" {
default = "curl2"
type = string
Expand Down

0 comments on commit a504e4e

Please sign in to comment.