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
Please provide the following details with your issue report.
Terraform Version
Run terraform -v to show the version. If you are not running the latest version of Terraform, please upgrade because your issue may have already been fixed.
Error not related to TF version.
Affected Resource(s)
Please list the resources as a list, for example:
"astra_access_list"
If this issue appears to affect multiple resources, it may be an issue with Terraform's core, so please mention this.
Please provider a link to a GitHub Gist containing the complete debug output: https://www.terraform.io/docs/internals/debugging.html. Please do NOT paste the debug output in the issue; just paste a link to the Gist.
astra_access_list.test_access_list: Creating...
╷
│ Error: json: cannot unmarshal string into Go value of type astra.Errors
│
│ with astra_access_list.test_access_list,
│ on main.tf line 24, in resource "astra_access_list" "test_access_list":
│ 24: resource "astra_access_list" "test_access_list" {
│
╵
Panic Output
If Terraform produced a panic, please provide a link to a GitHub Gist containing the output of the crash.log.
Expected Behavior
What should have happened?
The error message could be much more descriptive, explaining what is the actual problem with the provided IP address.
Actual Behavior
What actually happened?
The error returned does not contain any meaningful info: "Error: json: cannot unmarshal string into Go value of type astra.Errors"
Steps to Reproduce
Please list the steps required to reproduce the issue, for example:
Add some auth for the Astra provider, for example by adding your token to the TF provider.
terraform init
terraform apply
wait for db to get created, you will get the error on the second step that tried to create the Acess List.
Important Factoids
Are there anything atypical about your accounts that we should know? For example: Running in EC2 Classic? Custom version of OpenStack? Tight ACLs?
References
Are there any other GitHub issues (open or closed) or Pull Requests that should be linked here? For example:
None that Im aware of.
The text was updated successfully, but these errors were encountered:
Propagate error to the user when there is a problem creating an access
list.
Fixes#361
This is caused by the Astra client library swallowing parse errors, so
that the user doesn't see the actual error message. This should be fixed
in the client library at some point.
datastax/astra-client-go#32
Hi there,
Please provide the following details with your issue report.
Terraform Version
Run
terraform -v
to show the version. If you are not running the latest version of Terraform, please upgrade because your issue may have already been fixed.Error not related to TF version.
Affected Resource(s)
Please list the resources as a list, for example:
If this issue appears to affect multiple resources, it may be an issue with Terraform's core, so please mention this.
Terraform Configuration Files
Debug Output
Please provider a link to a GitHub Gist containing the complete debug output: https://www.terraform.io/docs/internals/debugging.html. Please do NOT paste the debug output in the issue; just paste a link to the Gist.
astra_access_list.test_access_list: Creating...
╷
│ Error: json: cannot unmarshal string into Go value of type astra.Errors
│
│ with astra_access_list.test_access_list,
│ on main.tf line 24, in resource "astra_access_list" "test_access_list":
│ 24: resource "astra_access_list" "test_access_list" {
│
╵
Panic Output
If Terraform produced a panic, please provide a link to a GitHub Gist containing the output of the
crash.log
.Expected Behavior
What should have happened?
The error message could be much more descriptive, explaining what is the actual problem with the provided IP address.
Actual Behavior
What actually happened?
The error returned does not contain any meaningful info: "Error: json: cannot unmarshal string into Go value of type astra.Errors"
Steps to Reproduce
Please list the steps required to reproduce the issue, for example:
terraform init
terraform apply
Important Factoids
Are there anything atypical about your accounts that we should know? For example: Running in EC2 Classic? Custom version of OpenStack? Tight ACLs?
References
Are there any other GitHub issues (open or closed) or Pull Requests that should be linked here? For example:
None that Im aware of.
The text was updated successfully, but these errors were encountered: