Skip to content

Commit 5a3425d

Browse files
authored
chore: latest bootstrap updates (#37)
1 parent 867172e commit 5a3425d

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

Diff for: bootstrap/instance/main.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ variable "resources" {
5050
})
5151
default = {
5252
limits : {
53-
cpu : "200m",
53+
cpu : "2",
5454
memory : "1Gi"
5555
}
5656
requests : {

Diff for: bootstrap/main.tf

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ module "ogmios_v1_feature" {
2121
metrics_delay = var.metrics_delay
2222
extension_name = var.extension_name
2323
api_key_salt = var.api_key_salt
24+
dcu_per_frame = var.dcu_per_frame
2425
}
2526

2627
module "ogmios_v1_proxy" {

Diff for: bootstrap/variables.tf

+10
Original file line numberDiff line numberDiff line change
@@ -119,5 +119,15 @@ variable "instances" {
119119
ogmios_version = string
120120
compute_arch = string
121121
replicas = number
122+
resources = optional(object({
123+
limits = object({
124+
cpu = string
125+
memory = string
126+
})
127+
requests = object({
128+
cpu = string
129+
memory = string
130+
})
131+
}))
122132
}))
123133
}

0 commit comments

Comments
 (0)