You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 30, 2025. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -101,7 +101,8 @@ You need the following permissions to run this module.
101
101
| <aname="input_kms_key_crn"></a> [kms\_key\_crn](#input\_kms\_key\_crn)| The root key CRN of a Key Management Services like Key Protect or Hyper Protect Crypto Service (HPCS) that you want to use for disk encryption. Only used if var.kms\_encryption\_enabled is set to true. |`string`|`null`| no |
102
102
| <aname="input_member_cpu_count"></a> [member\_cpu\_count](#input\_member\_cpu\_count)| Allocated dedicated CPU per-member. For shared CPU, set to 0. See the following doc for supported values: https://cloud.ibm.com/docs/databases-for-etcd?topic=databases-for-etcd-resources-scaling|`number`|`0`| no |
103
103
| <aname="input_member_disk_mb"></a> [member\_disk\_mb](#input\_member\_disk\_mb)| Allocated memory per-member. See the following doc for supported values: https://cloud.ibm.com/docs/databases-for-etcd?topic=databases-for-etcd-resources-scaling|`number`|`20480`| no |
104
-
| <aname="input_member_memory_mb"></a> [member\_memory\_mb](#input\_member\_memory\_mb)| Allocated memory per-member. See the following doc for supported values: https://cloud.ibm.com/docs/databases-for-etcd?topic=databases-for-etcd-resources-scaling|`number`|`1024`| no |
104
+
| <aname="input_member_host_flavor"></a> [member\_host\_flavor](#input\_member\_host\_flavor)| Allocated host flavor per member. [Learn more](https://registry.terraform.io/providers/IBM-Cloud/ibm/latest/docs/resources/database#host_flavor). |`string`|`null`| no |
105
+
| <aname="input_member_memory_mb"></a> [member\_memory\_mb](#input\_member\_memory\_mb)| Allocated memory per-member. See the following doc for supported values: https://cloud.ibm.com/docs/databases-for-etcd?topic=databases-for-etcd-resources-scaling|`number`|`4096`| no |
105
106
| <aname="input_members"></a> [members](#input\_members)| Allocated number of members. Members can be scaled up but not down. |`number`|`3`| no |
106
107
| <aname="input_name"></a> [name](#input\_name)| The name to give the etcd instance. |`string`| n/a | yes |
107
108
| <aname="input_region"></a> [region](#input\_region)| The region where you want to deploy your instance. |`string`|`"us-south"`| no |
Copy file name to clipboardExpand all lines: modules/fscloud/README.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -41,7 +41,8 @@ No resources.
41
41
| <aname="input_kms_key_crn"></a> [kms\_key\_crn](#input\_kms\_key\_crn)| The root key CRN of the Hyper Protect Crypto Service (HPCS) to use for disk encryption. |`string`| n/a | yes |
42
42
| <aname="input_member_cpu_count"></a> [member\_cpu\_count](#input\_member\_cpu\_count)| Allocated dedicated CPU per-member. For shared CPU, set to 0. See the following doc for supported values: https://cloud.ibm.com/docs/databases-for-etcd?topic=databases-for-etcd-resources-scaling|`number`|`0`| no |
43
43
| <aname="input_member_disk_mb"></a> [member\_disk\_mb](#input\_member\_disk\_mb)| Allocated memory per-member. See the following doc for supported values: https://cloud.ibm.com/docs/databases-for-etcd?topic=databases-for-etcd-resources-scaling|`number`|`20480`| no |
44
-
| <aname="input_member_memory_mb"></a> [member\_memory\_mb](#input\_member\_memory\_mb)| Allocated memory per-member. See the following doc for supported values: https://cloud.ibm.com/docs/databases-for-etcd?topic=databases-for-etcd-resources-scaling|`number`|`1024`| no |
44
+
| <aname="input_member_host_flavor"></a> [member\_host\_flavor](#input\_member\_host\_flavor)| Allocated host flavor per member. [Learn more](https://registry.terraform.io/providers/IBM-Cloud/ibm/latest/docs/resources/database#host_flavor). |`string`|`null`| no |
45
+
| <aname="input_member_memory_mb"></a> [member\_memory\_mb](#input\_member\_memory\_mb)| Allocated memory per-member. See the following doc for supported values: https://cloud.ibm.com/docs/databases-for-etcd?topic=databases-for-etcd-resources-scaling|`number`|`4096`| no |
45
46
| <aname="input_members"></a> [members](#input\_members)| Allocated number of members. Members can be scaled up but not down. |`number`|`3`| no |
46
47
| <aname="input_name"></a> [name](#input\_name)| Name of the etcd\_db instance |`string`| n/a | yes |
47
48
| <aname="input_region"></a> [region](#input\_region)| The region where you want to deploy your instance. Must be the same region as the Hyper Protect Crypto Services instance. |`string`|`"us-south"`| no |
Copy file name to clipboardExpand all lines: modules/fscloud/variables.tf
+8-1Lines changed: 8 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -27,7 +27,7 @@ variable "region" {
27
27
variable"member_memory_mb" {
28
28
type=number
29
29
description="Allocated memory per-member. See the following doc for supported values: https://cloud.ibm.com/docs/databases-for-etcd?topic=databases-for-etcd-resources-scaling"
30
-
default=1024
30
+
default=4096
31
31
# Validation is done in terraform plan phase by IBM provider, so no need to add any extra validation here
32
32
}
33
33
@@ -45,6 +45,13 @@ variable "member_cpu_count" {
45
45
# Validation is done in terraform plan phase by IBM provider, so no need to add any extra validation here
46
46
}
47
47
48
+
variable"member_host_flavor" {
49
+
type=string
50
+
description="Allocated host flavor per member. [Learn more](https://registry.terraform.io/providers/IBM-Cloud/ibm/latest/docs/resources/database#host_flavor)."
51
+
default=null
52
+
# Validation is done in the Terraform plan phase by the IBM provider, so no need to add extra validation here.
53
+
}
54
+
48
55
# actual scaling of the resources could take some time to apply
Copy file name to clipboardExpand all lines: variables.tf
+8-1Lines changed: 8 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -35,7 +35,7 @@ variable "region" {
35
35
variable"member_memory_mb" {
36
36
type=number
37
37
description="Allocated memory per-member. See the following doc for supported values: https://cloud.ibm.com/docs/databases-for-etcd?topic=databases-for-etcd-resources-scaling"
38
-
default=1024
38
+
default=4096
39
39
# Validation is done in terraform plan phase by IBM provider, so no need to add any extra validation here
40
40
}
41
41
@@ -53,6 +53,13 @@ variable "member_cpu_count" {
53
53
# Validation is done in terraform plan phase by IBM provider, so no need to add any extra validation here
54
54
}
55
55
56
+
variable"member_host_flavor" {
57
+
type=string
58
+
description="Allocated host flavor per member. [Learn more](https://registry.terraform.io/providers/IBM-Cloud/ibm/latest/docs/resources/database#host_flavor)."
59
+
default=null
60
+
# Validation is done in the Terraform plan phase by the IBM provider, so no need to add extra validation here.
61
+
}
62
+
56
63
# actual scaling of the resources could take some time to apply
0 commit comments