terraform-provider-sysdig icon indicating copy to clipboard operation
terraform-provider-sysdig copied to clipboard

Error try to create resource using terraform

Open lanania opened this issue 1 year ago • 0 comments
trafficstars

Hi I was trying to create a resource using via terraform just copying from documentation at here :

  • main.tf
resource "sysdig_monitor_alert_event" "sample" {
  name        = "[Kubernetes] Failed to pull image"
  description = "A Kubernetes pod failed to pull an image from the registry"
  severity    = 4

  event_name  = "Failed to pull image"
  source      = "kubernetes"
  event_rel   = ">"
  event_count = 0

  multiple_alerts_by = ["kubernetes.pod.name"]

  trigger_after_minutes = 1
}
  • versions.tf
terraform {
  required_providers {
    sysdig = {
      source = "sysdiglabs/sysdig"
      # version = ">= 0.4.0"
      version = "1.23.4"
    }
  }
}

I received this error:

Empty Summary: This is always a bug in the provider and should be reported to the provider developers

lanania avatar Apr 09 '24 13:04 lanania