{"id":22808039,"url":"https://github.com/teohrt/elasticsearch-terraform-provider","last_synced_at":"2026-04-12T15:09:59.300Z","repository":{"id":93187809,"uuid":"191413219","full_name":"teohrt/elasticsearch-terraform-provider","owner":"teohrt","description":"Terraform Provider for AWS ElasticSearch's Slow-Log Config","archived":false,"fork":false,"pushed_at":"2019-07-04T00:01:41.000Z","size":59,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-10-30T17:47:40.459Z","etag":null,"topics":["aws","elasticsearch","go","golang","iac","infrastructure-as-code","terraform","terraform-provider"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/teohrt.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":"2019-06-11T16:50:03.000Z","updated_at":"2024-04-08T20:10:39.000Z","dependencies_parsed_at":"2023-08-24T20:16:12.373Z","dependency_job_id":null,"html_url":"https://github.com/teohrt/elasticsearch-terraform-provider","commit_stats":null,"previous_names":["teohrt/elasticsearch-terraform-provider","teohrt/terraform-provider-esslowlogconfig"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/teohrt/elasticsearch-terraform-provider","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/teohrt%2Felasticsearch-terraform-provider","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/teohrt%2Felasticsearch-terraform-provider/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/teohrt%2Felasticsearch-terraform-provider/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/teohrt%2Felasticsearch-terraform-provider/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/teohrt","download_url":"https://codeload.github.com/teohrt/elasticsearch-terraform-provider/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/teohrt%2Felasticsearch-terraform-provider/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28164084,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2026-01-01T02:00:06.694Z","response_time":59,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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","elasticsearch","go","golang","iac","infrastructure-as-code","terraform","terraform-provider"],"created_at":"2024-12-12T11:07:39.274Z","updated_at":"2026-01-01T21:56:42.386Z","avatar_url":"https://github.com/teohrt.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# terraform-provider-esslowlogconfig\nThis is a terraform provider that lets you provision elasticsearch slow log configuration for indexes at the shard level.\n\n## Installation\n\nBuild the binary, and put it in a good spot on your system. Then update your `~/.terraformrc` to refer to the binary:\n\n```hcl\nproviders {\n  esslowlogconfig = \"/path/to/terraform-provider-esslowlogconfig\"\n}\n```\n\nSee [the docs for more information](https://www.terraform.io/docs/plugins/basics.html).\n\n## Usage\n\n```tf\nprovider \"esslowlogconfig\" {\n    es_endpoint = \"https://search-foo-bar-pqrhr4w3u4dzervg41frow4mmy.us-east-1.es.amazonaws.com\" # Don't include port at the end for aws\n    region = \"us-east-2\"\n}\n\nresource \"esslowlogconfig_index\" \"index_1\" {\n    name = \"activity_points\"\n\n    query_warn_threshold = \"10s\"\n    query_info_threshold = \"5s\"\n    query_debug_threshold = \"2s\"\n    query_trace_threshold = \"500ms\"\n\n    fetch_warn_threshold = \"1s\"\n    fetch_info_threshold = \"800ms\"\n    fetch_debug_threshold = \"500ms\"\n    fetch_trace_threshold = \"200ms\"\n}\n\nresource \"esslowlogconfig_index\" \"index_2\" {\n    name = \".kibana_1\"\n\n    query_warn_threshold = \"10s\"\n    query_info_threshold = \"5s\"\n    query_debug_threshold = \"2s\"\n    query_trace_threshold = \"500ms\"\n\n    fetch_warn_threshold = \"1s\"\n    fetch_info_threshold = \"800ms\"\n    fetch_debug_threshold = \"500ms\"\n    fetch_trace_threshold = \"200ms\"\n}\n```\n\n#### Environment variables\n\nYou can provide your credentials via the `AWS_ACCESS_KEY_ID` and `AWS_SECRET_ACCESS_KEY`, environment variables, representing your AWS Access Key and AWS Secret Key. If applicable, the `AWS_SESSION_TOKEN` environment variables is also supported.\n\nExample usage:\n\n```shell\n$ export AWS_ACCESS_KEY_ID=\"anaccesskey\"\n$ export AWS_SECRET_ACCESS_KEY=\"asecretkey\"\n$ export AWS_SESSION_TOKEN=\"asessiontoken\"\n$ terraform plan\n```\n\n## Development\n\n### Requirements\n\n* [Golang](https://golang.org/dl/) \u003e= 1.11\n\n\n```\ngo build -o /path/to/binary/terraform-provider-esslowlogconfig\n```\n\n## Licence\n\nSee LICENSE.\n\n## Contributing\n\n1. Fork it ( https://github.com/teohrt/terraform-provider-esslowlogconfig/fork )\n2. Create your feature branch (`git checkout -b my-new-feature`)\n3. Commit your changes (`git commit -am 'Add some feature'`)\n4. Push to the branch (`git push origin my-new-feature`)\n5. Create a new Pull Request","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fteohrt%2Felasticsearch-terraform-provider","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fteohrt%2Felasticsearch-terraform-provider","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fteohrt%2Felasticsearch-terraform-provider/lists"}