{"id":21884066,"url":"https://github.com/mongoexpuser/deploy-aws-neptune-graphdb-cluster","last_synced_at":"2026-04-13T18:31:27.555Z","repository":{"id":134452802,"uuid":"361004721","full_name":"MongoExpUser/Deploy-AWS-Neptune-GraphDB-Cluster","owner":"MongoExpUser","description":"Deploy AWS Neptune GraphDB Cluster with Terraform","archived":false,"fork":false,"pushed_at":"2021-05-16T16:18:12.000Z","size":20,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-22T01:31:05.128Z","etag":null,"topics":["aws","graphdb","gremlin","hcl","iac","neptune","terraform"],"latest_commit_sha":null,"homepage":"","language":"HCL","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MongoExpUser.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-04-23T21:01:37.000Z","updated_at":"2021-05-16T16:18:14.000Z","dependencies_parsed_at":null,"dependency_job_id":"4b561229-6d3f-44de-9ee5-a7a8ac04fcf9","html_url":"https://github.com/MongoExpUser/Deploy-AWS-Neptune-GraphDB-Cluster","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/MongoExpUser/Deploy-AWS-Neptune-GraphDB-Cluster","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MongoExpUser%2FDeploy-AWS-Neptune-GraphDB-Cluster","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MongoExpUser%2FDeploy-AWS-Neptune-GraphDB-Cluster/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MongoExpUser%2FDeploy-AWS-Neptune-GraphDB-Cluster/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MongoExpUser%2FDeploy-AWS-Neptune-GraphDB-Cluster/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MongoExpUser","download_url":"https://codeload.github.com/MongoExpUser/Deploy-AWS-Neptune-GraphDB-Cluster/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MongoExpUser%2FDeploy-AWS-Neptune-GraphDB-Cluster/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31766316,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-13T15:25:13.801Z","status":"ssl_error","status_checked_at":"2026-04-13T15:25:09.162Z","response_time":93,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["aws","graphdb","gremlin","hcl","iac","neptune","terraform"],"created_at":"2024-11-28T10:12:08.191Z","updated_at":"2026-04-13T18:31:27.540Z","avatar_url":"https://github.com/MongoExpUser.png","language":"HCL","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Deploy-AWS-Neptune-GraphDB-Cluster\n\n\u003cstrong\u003eTerraform module for the deployment of AWS Neptune graph database cluster with or without a snapshot.\u003c/strong\u003e\n\u003cbr\u003e\n\nThis repo is based on \u003cstrong\u003e```Terraform Version 0.14.8```\u003c/strong\u003e.\n\n## RUNNING MODULE\n\n### To run the module  on ```AWS```:\n\n1) Copy the following script into a file (base.tf) in the current working directory:\n\n```hcl\n\n# define credential variable(s) of provider(s)\nvariable \"aws_access_key\" {}\nvariable \"aws_secret_key\" {}\nvariable \"aws_region\" {}\n\n# define provider(s)\nprovider \"aws\" {\n  access_key = var.aws_access_key\n  secret_key = var.aws_secret_key\n  region     = var.aws_region\n}\n\n# create resources\nmodule \"deploy_aws_neptune\" {\n  source = \"git::https://github.com/mongoexpuser/deploy-aws-neptune-graphdb-cluster.git\"\n}\n\n# create outputs\noutput \"neptune_cluster\" {\n  description = \"Created neptune cluster(s) and related key-value pair attributes\"\n  value = module.deploy_aws_neptune.neptune_cluster_output\n}\n\noutput \"neptune_cluster_instances\" {\n  description = \"A list of created neptune cluster instance(s) and related key-value pair attributes\"\n  value = module.deploy_aws_neptune.neptune_cluster_instances_output\n}\n\n```\n\n2) Check to ensure all the variables defined in the variables.tf file are \u003cstrong\u003e```valid```\u003c/strong\u003e.\n\n3) Finally, execute the module from the base file (base.tf) in the current working directory (CWD) by typing the following commands at the prompt (assuming running via \u003cstrong\u003e```bash```\u003c/strong\u003e  with \u003cstrong\u003e```sudo```\u003c/strong\u003e access):\n\n\n```bash\n  #1) run init\n  sudo terraform init\n  \n  #2) run terraform plan\n  sudo TF_VAR_aws_access_key=\"access-key-value\" \\\n       TF_VAR_aws_secret_key=\"secret-key-value\" \\\n       TF_VAR_aws_region=\"aws-region-value\" \\\n       terraform plan\n                                                                                    \n  #3) run terraform apply\n  sudo TF_VAR_aws_access_key=\"access-key-value\" \\\n      TF_VAR_aws_secret_key=\"secret-key-value\" \\\n      TF_VAR_aws_region=\"aws-region-value\" \\\n      terraform apply\n```\n\n\n\n# License\n\nCopyright © 2015 - present. MongoExpUser\n\nLicensed under the MIT license.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmongoexpuser%2Fdeploy-aws-neptune-graphdb-cluster","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmongoexpuser%2Fdeploy-aws-neptune-graphdb-cluster","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmongoexpuser%2Fdeploy-aws-neptune-graphdb-cluster/lists"}