hashicorp / terraform-provider-aws

The AWS Provider enables Terraform to manage AWS resources.
https://registry.terraform.io/providers/hashicorp/aws
Mozilla Public License 2.0
9.83k stars 9.19k forks source link

[New Data Source]: Add `aws_neptune_cluster` data source #40081

Open nomad3k opened 4 days ago

nomad3k commented 4 days ago

Description

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)

Potential Terraform Configuration

data "aws_neptune_cluster" "db" {
  filter {
    name   = "tag:Name"
    values = ["some name here"]
  }
}

References

No response

Would you like to implement a fix?

No

github-actions[bot] commented 4 days ago

Community Note

Voting for Prioritization

Volunteering to Work on This Issue