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.61k stars 9k forks source link

[New Resource]: `aws_neptunegraph_graph` #36806

Open triggan opened 2 months ago

triggan commented 2 months ago

Description

Creates an Amazon Neptune Analytics graph. Amazon Neptune Analytics is a memory-optimized graph database engine for analytics. For more information, see Amazon Neptune Analytics .

Requested Resource(s) and/or Data Source(s)

Potential Terraform Configuration

resource "aws_neptunegraph_graph" "new_graph" {
    deletion_protection = <boolean>
    graph_name = <string>
    provisioned_memory = <integer>
    public_connectivity = <boolean>
    replica_count = <integer>
    tags = {
        Key        = "Value"
    }
    vector_search_configuration = {
        vector_search_dimension = <integer>
    }
}

References

https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/AWS_NeptuneGraph.html https://pkg.go.dev/github.com/aws/aws-sdk-go-v2/service/neptunegraph

Would you like to implement a fix?

Yes

github-actions[bot] commented 2 months ago

Community Note

Voting for Prioritization

Volunteering to Work on This Issue