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
Properly handle errors which occur during provider execution (#262)
Correctly handle empty logstash pipeline metadata in plan diffs (#256)
Fix error when logging API requests in debug mode (#259)
[Breaking Change] Change pipeline_metadata type from schema.TypeMap to schema.TypeString. This is to fix an error caused by updates to Logstash Pipelines outside of TF (#278)
To use the updated pipeline_metadata field, you'll need to encapsulate any Terraform configuration with jsonencode{} as follows:
resource"elasticstack_elasticsearch_logstash_pipeline""example" {
name="example"pipeline=<<-EOF input{} filter{} output{}EOFpipeline_metadata=jsonencode({
type ="logstash_pipeline"
version =1
})
}