Closed robinvdvleuten closed 3 years ago
Can you give a more complete example? Or contact our support and share the name of your instance so we can look into it. Thanks.
Sure! I create in one workspace a CloudAMQP instance like this;
resource "cloudamqp_instance" "this" {
name = local.name
plan = var.cloudamqp_plan
region = "amazon-web-services::${data.aws_region.current.name}"
}
And then in a separate workspace, I try to access the instance by creating a data source like this;
data "cloudamqp_instance" "this" {
instance_id = var.cloudamqp_instance_id
}
But then I run into this no_default_alarms
issue.
The CloudAMQP instance is created as expected btw, but I cannot use it as a data source.
When I use the
cloudamqp_instance
data source, I get the following error on Terraform;Looks like an internal type is invalid?