Skip to content

Commit

Permalink
format modified files
Browse files Browse the repository at this point in the history
  • Loading branch information
mkgharbi-aneo committed Jan 27, 2025
1 parent 1ccd584 commit 0369282
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion storage/onpremise/activemq/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ resource "kubernetes_deployment" "activemq" {
image_pull_policy = "IfNotPresent"
resources {
requests = var.activemq.requests
limits = var.activemq.limits
limits = var.activemq.limits
}
env {
name = "ACTIVEMQ_OPTS_MEMORY"
Expand Down
12 changes: 6 additions & 6 deletions storage/onpremise/activemq/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ variable "namespace" {
variable "activemq" {
description = "Parameters of ActiveMQ"
type = object({
image = string
tag = string
node_selector = any
image_pull_secrets = string
limits = optional(map(string))
requests = optional(map(string))
image = string
tag = string
node_selector = any
image_pull_secrets = string
limits = optional(map(string))
requests = optional(map(string))
activemq_opts_memory = optional(string)
})
}
Expand Down

0 comments on commit 0369282

Please sign in to comment.