{"id":23054184,"url":"https://github.com/rblcoder/terraform-opensearch-samples","last_synced_at":"2026-02-25T23:05:13.134Z","repository":{"id":207171454,"uuid":"718593510","full_name":"rblcoder/terraform-opensearch-samples","owner":"rblcoder","description":"Sample terraform code","archived":false,"fork":false,"pushed_at":"2024-06-22T14:22:56.000Z","size":189,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-03T04:41:37.896Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/rblcoder.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":"2023-11-14T12:08:52.000Z","updated_at":"2024-06-22T14:22:59.000Z","dependencies_parsed_at":"2023-11-25T08:22:30.974Z","dependency_job_id":"954c4b12-bcba-49ce-aa2c-786ba02dc99c","html_url":"https://github.com/rblcoder/terraform-opensearch-samples","commit_stats":null,"previous_names":["rblcoder/terraform-opensearch-samples"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/rblcoder/terraform-opensearch-samples","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rblcoder%2Fterraform-opensearch-samples","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rblcoder%2Fterraform-opensearch-samples/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rblcoder%2Fterraform-opensearch-samples/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rblcoder%2Fterraform-opensearch-samples/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rblcoder","download_url":"https://codeload.github.com/rblcoder/terraform-opensearch-samples/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rblcoder%2Fterraform-opensearch-samples/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29844845,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-25T22:37:40.667Z","status":"ssl_error","status_checked_at":"2026-02-25T22:37:25.960Z","response_time":61,"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":[],"created_at":"2024-12-16T00:36:58.890Z","updated_at":"2026-02-25T23:05:13.107Z","avatar_url":"https://github.com/rblcoder.png","language":"HCL","funding_links":[],"categories":[],"sub_categories":[],"readme":"## For docker\n```\nexport OSS_IMAGE=\"opensearchproject/opensearch:2\"\nexport OPENSEARCH_INITIAL_ADMIN_PASSWORD=myStrongPassword123@456\nexport OPENSEARCH_URL=http://admin:myStrongPassword123%40456@localhost:9200\n```\n## For AWS OpenSearch\n```\nexport AWS_ACCESS_KEY_ID=key\nexport AWS_SECRET_ACCESS_KEY=secret\nexport AWS_DEFAULT_REGION=us-west-2\n```\n\n## Provider configurations\n```\n\nprovider \"opensearch\" {\n  url = \"url\"\n  healthcheck        = \"false\"\n  aws_profile = \"profilename\"\n  aws_assume_role_arn = \"rolearn\"\n  aws_assume_role_external_id = \"externalid\"\n  aws_region          = \"region\"\n  version_ping_timeout = \"10\"\n\n}\n\n```\nor\n```\nprovider \"opensearch\" {\n  url = \"url\"\n  healthcheck        = \"false\"\n  aws_region          = \"region\"\n  aws_access_key = \"access key\"\n  aws_secret_key = \"secret\"\n  version_ping_timeout = \"10\"\n\n}\n\n```\n\n\n\nFor docker compose -\n\n```\n\nsudo swapoff -a\n\nsudo vi /etc/sysctl.conf\n\nvm.max_map_count=262144\n\nsudo sysctl -p\n\ncat /proc/sys/vm/max_map_count\n```\n## AOSS\n\nhttps://docs.aws.amazon.com/opensearch-service/latest/developerguide/serverless-getting-started.html\n\n## Amazon Linux 2023 setup docker\n\nhttps://docs.aws.amazon.com/serverless-application-model/latest/developerguide/install-docker.html\n\nhttps://gist.github.com/npearce/6f3c7826c7499587f00957fee62f8ee9\n\n## Ubuntu setup docker\n\nhttps://docs.docker.com/engine/install/ubuntu/\n\n## Amazon Linux 2023 setup terraform\n\nhttps://developer.hashicorp.com/terraform/tutorials/aws-get-started/install-cli\n\nsudo yum install -y yum-utils\n\nsudo yum-config-manager --add-repo https://rpm.releases.hashicorp.com/AmazonLinux/hashicorp.repo\n\nsudo yum -y install terraform\n\n\n## Docker commands\nhttps://stackoverflow.com/questions/44785585/how-can-i-delete-all-local-docker-images\n\nTo delete all containers including its volumes use,\n\ndocker rm -vf $(docker ps -aq)\n\nTo delete all the images,\n\ndocker rmi -f $(docker images -aq)\n\nTo delete all volumes\n\ndocker volume rm $(docker volume ls -q)\n\n\n\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frblcoder%2Fterraform-opensearch-samples","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frblcoder%2Fterraform-opensearch-samples","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frblcoder%2Fterraform-opensearch-samples/lists"}