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
Terraform Validate/Plan receives the following Value Conversion Error whenever I tried to use dynamic block on evaluation_schedule in honeycombio_trigger
terraform init && terraform plan
Initializing the backend...
Initializing provider plugins...
- Reusing previous version of honeycombio/honeycombio from the dependency lock file
- Reusing previous version of hashicorp/aws from the dependency lock file
- Using previously-installed honeycombio/honeycombio v0.27.0
- Using previously-installed hashicorp/aws v5.64.0
Terraform has been successfully initialized!
You may now begin working with Terraform. Try running "terraform plan" to see
any changes that are required for your infrastructure. All Terraform commands
should now work.
If you ever set or change modules or backend configuration for Terraform,
rerun this command to reinitialize your working directory. If you forget, other
commands will detect it and remind you to do so if necessary.
╷
│ Error: Value Conversion Error
│
│ with honeycombio_trigger.this,
│ on main.tf line 44, in resource "honeycombio_trigger" "this":
│ 44: resource "honeycombio_trigger" "this" {
│
│ An unexpected error was encountered trying to build a value. This is always an error in the provider.
│ Please report the following to the provider developer:
│
│ Received unknown value, however the target type cannot handle unknown values. Use the corresponding
│ `types` package type or a custom type that handles unknown values.
│
│ Path: evaluation_schedule
│ Target Type: []models.TriggerEvaluationScheduleModel
│ Suggested Type: basetypes.ListValue
╵
terraform validate
╷
│ Error: Value Conversion Error
│
│ with honeycombio_trigger.this,
│ on main.tf line 44, in resource "honeycombio_trigger" "this":
│ 44: resource "honeycombio_trigger" "this" {
│
│ An unexpected error was encountered trying to build a value. This is always an error in the provider.
│ Please report the following to the provider developer:
│
│ Received unknown value, however the target type cannot handle unknown values. Use the corresponding
│ `types` package type or a custom type that handles unknown values.
│
│ Path: evaluation_schedule
│ Target Type: []models.TriggerEvaluationScheduleModel
│ Suggested Type: basetypes.ListValue
Versions
This affects honeycombio provider version 0.24.0 or higher. We were on 0.21.0 and was only able to update to version 0.23.0 as we keep running into the Value Conversion Error.
Terraform Validate/Plan receives the following Value Conversion Error whenever I tried to use dynamic block on evaluation_schedule in
honeycombio_trigger
Versions
This affects honeycombio provider version
0.24.0
or higher. We were on0.21.0
and was only able to update to version 0.23.0 as we keep running into theValue Conversion Error
.Steps to reproduce
Additional context
When I didn't use dynamic block for
evaluation_schedule
, it worked fineThe text was updated successfully, but these errors were encountered: