Skip to content

Commit 9a31c15

Browse files
authored
Update terraform examples (logicalclocks#42)
1 parent 8abac23 commit 9a31c15

File tree

1 file changed

+21
-1
lines changed

1 file changed

+21
-1
lines changed

docs/setup_installation/common/terraform.md

+21-1
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ resource "hopsworksai_cluster" "cluster" {
6060
ssh_key = module.aws.ssh_key_pair_name
6161
6262
head {
63+
instance_type = "m5.2xlarge"
6364
}
6465
6566
aws_attributes {
@@ -71,7 +72,15 @@ resource "hopsworksai_cluster" "cluster" {
7172
}
7273
7374
rondb {
74-
75+
management_nodes {
76+
instance_type = "t3a.medium"
77+
}
78+
data_nodes {
79+
instance_type = "r5.large"
80+
}
81+
mysql_nodes {
82+
instance_type = "c5.large"
83+
}
7584
}
7685
7786
open_ports {
@@ -161,6 +170,7 @@ resource "hopsworksai_cluster" "cluster" {
161170
ssh_key = module.azure.ssh_key_pair_name
162171
163172
head {
173+
instance_type = "Standard_D8_v3"
164174
}
165175
166176
azure_attributes {
@@ -173,7 +183,17 @@ resource "hopsworksai_cluster" "cluster" {
173183
}
174184
175185
rondb {
186+
management_nodes {
187+
instance_type = "Standard_D2s_v4"
188+
}
176189
190+
data_nodes {
191+
instance_type = "Standard_D4s_v4"
192+
}
193+
194+
mysql_nodes {
195+
instance_type = "Standard_D2s_v4"
196+
}
177197
}
178198
179199
open_ports {

0 commit comments

Comments
 (0)