Skip to content

Commit

Permalink
fmt fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mysticaltech committed Dec 24, 2024
1 parent 3abe3b6 commit 3cc96e0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -457,22 +457,22 @@ variable "traefik_resource_limits" {
variable "traefik_resource_values" {
type = object({
requests = object({
cpu = string
cpu = string
memory = string
})
limits = object({
cpu = string
cpu = string
memory = string
})
})
default = {
requests = {
memory = "50Mi"
cpu = "100m"
cpu = "100m"
}
limits = {
memory = "150Mi"
cpu = "300m"
cpu = "300m"
}
}
description = "Requests and limits for Traefik."
Expand Down

0 comments on commit 3cc96e0

Please sign in to comment.