The following data block will not work, because it has not been implemented in the AWS Provider.
data "aws_neptune_cluster" "db" {
filter {
name = "tag:Name"
values = ["some name here"]
}
}
It generates the following error.
The provider hashicorp/aws does not support data source "aws_neptune_cluster".
Our application separates the neptune terraform from our application terraform, as we need to deploy multiple copies of the application per neptune cluster. At present we are working around this by writing the endpoint URIs into intermediary SSM parameters, which are then associated with lambdas.
Affected Resource(s) and/or Data Source(s)
aws_neptune_cluster
Potential Terraform Configuration
data "aws_neptune_cluster" "db" {
filter {
name = "tag:Name"
values = ["some name here"]
}
}
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.
Volunteering to Work on This Issue
If you are interested in working on this issue, please leave a comment.
If this would be your first contribution, please review the contribution guide.
Description
The following
data
block will not work, because it has not been implemented in the AWS Provider.It generates the following error.
Our application separates the neptune terraform from our application terraform, as we need to deploy multiple copies of the application per neptune cluster. At present we are working around this by writing the endpoint URIs into intermediary SSM parameters, which are then associated with lambdas.
Affected Resource(s) and/or Data Source(s)
Potential Terraform Configuration
References
No response
Would you like to implement a fix?
No