Skip to content

Commit

Permalink
fix(repo_server): setting empty resources in terraform var should ret…
Browse files Browse the repository at this point in the history
…urn empty resource value in yaml file
  • Loading branch information
fsismondi committed May 15, 2024
1 parent 68376a5 commit 4326b49
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,8 @@ variable "resources" {

repo_server = optional(object({
requests = optional(object({
cpu = optional(string, "200m")
memory = optional(string, "128Mi")
cpu = optional(string)
memory = optional(string)
}), {})
limits = optional(object({
cpu = optional(string)
Expand Down

0 comments on commit 4326b49

Please sign in to comment.