Skip to content

Commit 03494f4

Browse files
committed
fix variables
1 parent 46f6b34 commit 03494f4

File tree

3 files changed

+32
-49
lines changed

3 files changed

+32
-49
lines changed

resources/gemini-3h/variables.tf

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -20,19 +20,19 @@ variable "domain_id" {
2020
variable "domain_labels" {
2121
description = "Tag of the domain to run"
2222
type = list(string)
23-
default = ["nova, "autoid"]
23+
default = ["nova", "autoid"]
2424
}
2525

2626
variable "instance_type" {
2727
type = map(string)
2828
default = {
29-
bootstrap = "c7a.2xlarge"
30-
rpc = "m7a.2xlarge"
31-
domain = "m7a.2xlarge"
32-
rpc-squid = "c7a.2xlarge"
33-
nova-squid = "c7a.2xlarge"
34-
farmer = "c7a.2xlarge"
35-
evm_bootstrap = "c7a.xlarge"
29+
bootstrap = "c7a.2xlarge"
30+
rpc = "m7a.2xlarge"
31+
domain = "m7a.2xlarge"
32+
rpc-squid = "c7a.2xlarge"
33+
nova-squid = "c7a.2xlarge"
34+
farmer = "c7a.2xlarge"
35+
evm_bootstrap = "c7a.xlarge"
3636
autoid_bootstrap = "c7a.xlarge"
3737
}
3838
}
@@ -55,14 +55,14 @@ variable "azs" {
5555
variable "instance_count" {
5656
type = map(number)
5757
default = {
58-
bootstrap = 0
59-
rpc = 2
60-
domain = 0
61-
autoid = 0
62-
rpc-squid = 1
63-
nova-squid = 0
64-
farmer = 0
65-
evm_bootstrap = 0
58+
bootstrap = 0
59+
rpc = 2
60+
domain = 0
61+
autoid = 0
62+
rpc-squid = 1
63+
nova-squid = 0
64+
farmer = 0
65+
evm_bootstrap = 0
6666
autoid_bootstrap = 0
6767
}
6868
}

resources/taurus/variables.tf

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -20,19 +20,19 @@ variable "domain_id" {
2020
variable "domain_labels" {
2121
description = "Tag of the domain to run"
2222
type = list(string)
23-
default = ["nova, "autoid"]
23+
default = ["nova", "autoid"]
2424
}
2525

2626
variable "instance_type" {
2727
type = map(string)
2828
default = {
29-
bootstrap = "c7a.2xlarge"
30-
rpc = "m7a.2xlarge"
31-
domain = "m7a.2xlarge"
32-
rpc-indexer = "c7a.4xlarge"
33-
nova-indexer = "c7a.4xlarge"
34-
farmer = "c7a.2xlarge"
35-
evm_bootstrap = "c7a.xlarge"
29+
bootstrap = "c7a.2xlarge"
30+
rpc = "m7a.2xlarge"
31+
domain = "m7a.2xlarge"
32+
rpc-indexer = "c7a.4xlarge"
33+
nova-indexer = "c7a.4xlarge"
34+
farmer = "c7a.2xlarge"
35+
evm_bootstrap = "c7a.xlarge"
3636
autoid_bootstrap = "c7a.xlarge"
3737
}
3838
}
@@ -55,14 +55,14 @@ variable "azs" {
5555
variable "instance_count" {
5656
type = map(number)
5757
default = {
58-
bootstrap = 2
59-
rpc = 2
60-
domain = 0
61-
autoid = 0
62-
rpc-indexer = 1
63-
nova-indexer = 0
64-
farmer = 1
65-
evm_bootstrap = 0
58+
bootstrap = 2
59+
rpc = 2
60+
domain = 0
61+
autoid = 0
62+
rpc-indexer = 1
63+
nova-indexer = 0
64+
farmer = 1
65+
evm_bootstrap = 0
6666
autoid_bootstrap = 0
6767
}
6868
}

templates/terraform/network-primitives/variables.tf

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -95,23 +95,6 @@ variable "path_to_configs" {
9595
type = string
9696
}
9797

98-
variable "rpc-indexer-node-config" {
99-
description = "Full node deployment config"
100-
type = object({
101-
instance-type = string
102-
deployment-version = number
103-
regions = list(string)
104-
instance-count = number
105-
docker-org = string
106-
docker-tag = string
107-
reserved-only = bool
108-
prune = bool
109-
node-dsn-port = number
110-
disk-volume-size = number
111-
disk-volume-type = string
112-
})
113-
}
114-
11598
variable "rpc-node-config" {
11699
description = "RPC node deployment config"
117100
type = object({

0 commit comments

Comments
 (0)