Skip to content

Commit 8530feb

Browse files
feat: remove plan validation argument (#253)
1 parent 42b5ff9 commit 8530feb

File tree

3 files changed

+0
-8
lines changed

3 files changed

+0
-8
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,6 @@ You need the following permissions to run this module.
8989
| <a name="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 |
9090
| <a name="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. | `string` | `null` | no |
9191
| <a name="input_plan"></a> [plan](#input\_plan) | The name of the service plan that you choose for your MongoDB instance | `string` | `"standard"` | no |
92-
| <a name="input_plan_validation"></a> [plan\_validation](#input\_plan\_validation) | Enable or disable validating the database parameters for MongoDB during the plan phase. | `bool` | `true` | no |
9392
| <a name="input_region"></a> [region](#input\_region) | The region where you want to deploy your instance. | `string` | `"us-south"` | no |
9493
| <a name="input_resource_group_id"></a> [resource\_group\_id](#input\_resource\_group\_id) | The resource group ID where the MongoDB instance will be created. | `string` | n/a | yes |
9594
| <a name="input_service_credential_names"></a> [service\_credential\_names](#input\_service\_credential\_names) | Map of name, role for service credentials that you want to create for the database | `map(string)` | `{}` | no |

main.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@ resource "ibm_database" "mongodb" {
5757
adminpassword = var.admin_pass
5858
tags = var.tags
5959
service_endpoints = var.endpoints
60-
plan_validation = var.plan_validation
6160
key_protect_key = var.kms_key_crn
6261
backup_encryption_key_crn = local.backup_encryption_key_crn
6362

variables.tf

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,6 @@ variable "region" {
1313
default = "us-south"
1414
}
1515

16-
variable "plan_validation" {
17-
type = bool
18-
description = "Enable or disable validating the database parameters for MongoDB during the plan phase."
19-
default = true
20-
}
21-
2216
variable "plan" {
2317
type = string
2418
description = "The name of the service plan that you choose for your MongoDB instance"

0 commit comments

Comments
 (0)