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
Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request
Please do not leave "+1" or other comments that do not add relevant new information or questions, they generate extra noise for issue followers and do not help prioritize the request
If you are interested in working on this issue or have submitted a pull request, please leave a comment
Please include all Terraform configurations required to reproduce the bug. Bug reports without a functional reproduction may be closed without investigation.
resource"ibm_container_vpc_cluster""cluster" {
depends_on=[null_resource.reset_api_key]
count=var.ignore_worker_pool_size_changes?0:1name=var.cluster_namevpc_id=var.vpc_idtags=var.tagskube_version=local.ocp_versionflavor=local.default_pool.machine_typeentitlement=var.ocp_entitlementcos_instance_crn=local.cos_instance_crnworker_count=local.default_pool.workers_per_zoneresource_group_id=var.resource_group_idwait_till=var.cluster_ready_whenforce_delete_storage=var.force_delete_storagedisable_public_service_endpoint=var.disable_public_endpointworker_labels=local.default_pool.labelscrk=local.default_pool.boot_volume_encryption_kms_config==null?null: local.default_pool.boot_volume_encryption_kms_config.crkkms_instance_id=local.default_pool.boot_volume_encryption_kms_config==null?null: local.default_pool.boot_volume_encryption_kms_config.kms_instance_idkms_account_id=local.default_pool.boot_volume_encryption_kms_config==null?null: local.default_pool.boot_volume_encryption_kms_config.kms_account_idlifecycle {
ignore_changes=[kube_version]
}
# default workers are mapped to the subnets that are "private"dynamic"zones" {
for_each=local.default_pool.subnet_prefix!=null? var.vpc_subnets[local.default_pool.subnet_prefix] : local.default_pool.vpc_subnetscontent {
subnet_id=zones.value.idname=zones.value.zone
}
}
# Apply taints to the default worker pools i.e privatedynamic"taints" {
for_each=var.worker_pools_taints==null? [] :concat(var.worker_pools_taints["all"], var.worker_pools_taints["default"])
content {
effect=taints.value.effectkey=taints.value.keyvalue=taints.value.value
}
}
dynamic"kms_config" {
for_each=var.kms_config!=null? [1] : []
content {
crk_id=var.kms_config.crk_idinstance_id=var.kms_config.instance_idprivate_endpoint=var.kms_config.private_endpoint==null?true: var.kms_config.private_endpoint
}
}
timeouts {
# Extend create, update and delete timeout to static values.delete=local.delete_timeoutcreate=local.create_timeoutupdate=local.update_timeout
}
}
│ Error: Request failed with status code: 400, ServerErrorResponse: {"incidentID":"7a84020a-cc80-4188-a711-e419efd80f46","code":"Edbcc","description":"Error fetching the list of security groups for the VPC. Try again.","type":"BadRequest"}
│
│ with module.ocp_fscloud.module.fscloud.ibm_container_vpc_cluster.cluster[0],
│ on ../../main.tf line 76, in resource "ibm_container_vpc_cluster" "cluster":
│ 76: resource "ibm_container_vpc_cluster" "cluster" {
│
╵}
Panic Output
Expected Behavior
apply without error
Actual Behavior
Cannot reproduce at will.
This provider crash happens intermittently, and is not consistent.
Steps to Reproduce
terraform apply
Important Factoids
References
#0000
The text was updated successfully, but these errors were encountered:
Community Note
Terraform CLI and Terraform IBM Provider Version
Affected Resource(s)
Terraform Configuration Files
Please include all Terraform configurations required to reproduce the bug. Bug reports without a functional reproduction may be closed without investigation.
complete code: https://github.com/terraform-ibm-modules/terraform-ibm-base-ocp-vpc/blob/d1f05dd2037a8696bd0ac8a6c079680c99e75dbd/main.tf#L76
Debug Output
Panic Output
Expected Behavior
apply without error
Actual Behavior
Cannot reproduce at will.
This provider crash happens intermittently, and is not consistent.
Steps to Reproduce
terraform apply
Important Factoids
References
The text was updated successfully, but these errors were encountered: