terraform-provider-scaleway
terraform-provider-scaleway copied to clipboard
Error: scaleway-sdk-go: resource data source with ID alert scaleway is not found
trafficstars
Community Note
- 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
Terraform Version
Terraform v1.11.4 on darwin_arm64
- provider registry.terraform.io/hashicorp/null v3.2.3
- provider registry.terraform.io/hashicorp/random v3.7.1
- provider registry.terraform.io/integrations/github v6.6.0
- provider registry.terraform.io/scaleway/scaleway v2.54.0
Affected Resource(s)
- scaleway_cockpit_alert_manager
Terraform Configuration Files
# used in module
resource "scaleway_cockpit_alert_manager" "main" {
enable_managed_alerts = var.enable_alert_manager
dynamic "contact_points" {
for_each = var.alert_manager_contact_points
content {
email = contact_points.value.email
}
}
}
Expected Behavior
No change
Actual Behavior
╷
│ Error: scaleway-sdk-go: resource data source with ID 5d4615b9-466e-41a6-970d-3884cd998336 alert scaleway is not found
│
│ with module.cockpit.scaleway_cockpit_alert_manager.main,
│ on ../modules/cockpit/alert_manager.tf line 2, in resource "scaleway_cockpit_alert_manager" "main":
│ 2: resource "scaleway_cockpit_alert_manager" "main" {
│
╵
Steps to Reproduce
terraform apply
Info
My project id : 5d4615b9-466e-41a6-970d-3884cd99833
Before it worked very well.