Skip to content

Commit fdfd373

Browse files
feat: remove plan validation argument (#40)
1 parent 63c8322 commit fdfd373

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
@@ -94,7 +94,6 @@ You need the following permissions to run this module.
9494
| <a name="input_members"></a> [members](#input\_members) | Allocated number of members. For more information, see https://cloud.ibm.com/docs/databases-for-elasticsearch?topic=databases-for-elasticsearch-resources-scaling | `number` | `3` | no |
9595
| <a name="input_name"></a> [name](#input\_name) | The name to give the Elasticsearch instance. | `string` | n/a | yes |
9696
| <a name="input_plan"></a> [plan](#input\_plan) | The name of the service plan that you choose for your Elasticsearch instance | `string` | `"enterprise"` | no |
97-
| <a name="input_plan_validation"></a> [plan\_validation](#input\_plan\_validation) | Enable or disable validating the database parameters for elasticsearch during the plan phase | `bool` | `true` | no |
9897
| <a name="input_region"></a> [region](#input\_region) | The region where you want to deploy your instance. | `string` | `"us-south"` | no |
9998
| <a name="input_resource_group_id"></a> [resource\_group\_id](#input\_resource\_group\_id) | The resource group ID where the Elasticsearch instance will be created. | `string` | n/a | yes |
10099
| <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
@@ -46,7 +46,6 @@ resource "ibm_database" "elasticsearch" {
4646
depends_on = [ibm_iam_authorization_policy.policy]
4747
name = var.name
4848
plan = var.plan
49-
plan_validation = var.plan_validation
5049
location = var.region
5150
service = "databases-for-elasticsearch"
5251
version = var.elasticsearch_version

variables.tf

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,6 @@ variable "tags" {
2424
default = []
2525
}
2626

27-
variable "plan_validation" {
28-
type = bool
29-
description = "Enable or disable validating the database parameters for elasticsearch during the plan phase"
30-
default = true
31-
}
32-
3327
variable "service_endpoints" {
3428
type = string
3529
description = "Sets the endpoint of the instance, valid values are 'public', 'private', or 'public-and-private'"

0 commit comments

Comments
 (0)