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
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
@@ -93,8 +93,9 @@ You need the following permissions to run this module.
93
93
| <aname="input_instance_name"></a> [instance\_name](#input\_instance\_name)| The name to give the MongoDB instance. |`string`| n/a | yes |
94
94
| <aname="input_kms_encryption_enabled"></a> [kms\_encryption\_enabled](#input\_kms\_encryption\_enabled)| Set this to true to control the encryption keys used to encrypt the data that you store in IBM Cloud® Databases. If set to false, the data is encrypted by using randomly generated keys. For more info on Key Protect integration, see https://cloud.ibm.com/docs/cloud-databases?topic=cloud-databases-key-protect. For more info on HPCS integration, see https://cloud.ibm.com/docs/cloud-databases?topic=cloud-databases-hpcs|`bool`|`false`| no |
95
95
| <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 Services (HPCS) that you want to use for disk encryption. Only used if var.kms\_encryption\_enabled is set to true. |`string`|`null`| no |
96
+
| <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 |
96
97
| <aname="input_members"></a> [members](#input\_members)| Allocated number of members |`number`|`3`| no |
97
-
| <aname="input_memory_mb"></a> [memory\_mb](#input\_memory\_mb)| Allocated memory per member. For more information, see https://cloud.ibm.com/docs/databases-for-mongodb?topic=databases-for-mongodb-pricing#mongodb-scale-member|`number`|`1024`| no |
98
+
| <aname="input_memory_mb"></a> [memory\_mb](#input\_memory\_mb)| Allocated memory per member. For more information, see https://cloud.ibm.com/docs/databases-for-mongodb?topic=databases-for-mongodb-pricing#mongodb-scale-member|`number`|`4096`| no |
98
99
| <aname="input_mongodb_version"></a> [mongodb\_version](#input\_mongodb\_version)| The version of the MongoDB to provision. If no value passed, the current ICD preferred version is used. For our version policy, see https://cloud.ibm.com/docs/cloud-databases?topic=cloud-databases-versioning-policy for more details |`string`|`null`| no |
99
100
| <aname="input_plan"></a> [plan](#input\_plan)| The name of the service plan that you choose for your MongoDB instance |`string`|`"standard"`| no |
100
101
| <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
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -41,6 +41,7 @@ No resources.
41
41
| <aname="input_existing_kms_instance_guid"></a> [existing\_kms\_instance\_guid](#input\_existing\_kms\_instance\_guid)| The GUID of the Hyper Protect Crypto Services instance. |`string`| n/a | yes |
42
42
| <aname="input_instance_name"></a> [instance\_name](#input\_instance\_name)| Name of the mongodb instance |`string`| n/a | yes |
43
43
| <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 |
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 |
44
45
| <aname="input_members"></a> [members](#input\_members)| Allocated number of members |`number`|`3`| no |
45
46
| <aname="input_memory_mb"></a> [memory\_mb](#input\_memory\_mb)| Allocated memory per member. For more information, see https://cloud.ibm.com/docs/databases-for-mongodb?topic=databases-for-mongodb-pricing#mongodb-scale-member|`number`|`14336`| no |
46
47
| <aname="input_mongodb_version"></a> [mongodb\_version](#input\_mongodb\_version)| Version of the MongoDB instance. If no value is passed, the current preferred version of IBM Cloud Databases is used. |`string`|`null`| no |
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
@@ -78,7 +78,7 @@ variable "endpoints" {
78
78
variable"memory_mb" {
79
79
type=number
80
80
description="Allocated memory per member. For more information, see https://cloud.ibm.com/docs/databases-for-mongodb?topic=databases-for-mongodb-pricing#mongodb-scale-member"
81
-
default=1024
81
+
default=4096
82
82
# Validation is done in the Terraform plan phase by the IBM provider, so no need to add extra validation here.
83
83
}
84
84
@@ -96,6 +96,13 @@ variable "cpu_count" {
96
96
# Validation is done in the Terraform plan phase by the IBM provider, so no need to add extra validation here.
97
97
}
98
98
99
+
variable"member_host_flavor" {
100
+
type=string
101
+
description="Allocated host flavor per member. [Learn more](https://registry.terraform.io/providers/IBM-Cloud/ibm/latest/docs/resources/database#host_flavor)."
102
+
default=null
103
+
# Validation is done in the Terraform plan phase by the IBM provider, so no need to add extra validation here.
0 commit comments