Skip to content

Commit cbd8348

Browse files
feat: remove plan validation argument (#75)
1 parent 2eda9ba commit cbd8348

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
@@ -85,7 +85,6 @@ You need the following permissions to run this module.
8585
| <a name="input_members"></a> [members](#input\_members) | Allocated number of members. For more information, see: https://cloud.ibm.com/docs/messages-for-rabbitmq?topic=messages-for-rabbitmq-resources-scaling | `number` | `3` | no |
8686
| <a name="input_memory_mb"></a> [memory\_mb](#input\_memory\_mb) | Allocated memory per-member. For more information, see: https://cloud.ibm.com/docs/messages-for-rabbitmq?topic=messages-for-rabbitmq-resources-scaling | `number` | `1024` | no |
8787
| <a name="input_plan"></a> [plan](#input\_plan) | The name of the service plan that you choose for your RabbitMQ instance | `string` | `"standard"` | no |
88-
| <a name="input_plan_validation"></a> [plan\_validation](#input\_plan\_validation) | Enable or disable validating the database parameters for rabbitmq during the plan phase | `bool` | `true` | no |
8988
| <a name="input_rabbitmq_version"></a> [rabbitmq\_version](#input\_rabbitmq\_version) | The version of RabbitMQ to deploy. If no value passed, the current ICD preferred version is used. | `string` | `null` | no |
9089
| <a name="input_region"></a> [region](#input\_region) | The region where you want to deploy your instance. | `string` | `"us-south"` | no |
9190
| <a name="input_resource_group_id"></a> [resource\_group\_id](#input\_resource\_group\_id) | The resource group ID where the RabbitMQ instance will be created. | `string` | n/a | yes |

main.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ resource "ibm_database" "rabbitmq_database" {
4747
depends_on = [ibm_iam_authorization_policy.kms_policy]
4848
name = var.instance_name
4949
plan = var.plan
50-
plan_validation = var.plan_validation
5150
location = var.region
5251
service = "messages-for-rabbitmq"
5352
version = var.rabbitmq_version

variables.tf

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,6 @@ variable "access_tags" {
3737
}
3838
}
3939

40-
variable "plan_validation" {
41-
type = bool
42-
description = "Enable or disable validating the database parameters for rabbitmq during the plan phase"
43-
default = true
44-
}
45-
4640
variable "endpoints" {
4741
description = "Endpoints available to the database instance (public, private, public-and-private)"
4842
type = string

0 commit comments

Comments
 (0)