{"id":20260366,"url":"https://github.com/influxdata/terraform-aws-influx","last_synced_at":"2025-03-03T18:42:20.482Z","repository":{"id":53357895,"uuid":"151734069","full_name":"influxdata/terraform-aws-influx","owner":"influxdata","description":"Reusable infrastructure modules for running TICK stack on AWS","archived":false,"fork":false,"pushed_at":"2021-03-31T08:40:00.000Z","size":973,"stargazers_count":51,"open_issues_count":7,"forks_count":43,"subscribers_count":9,"default_branch":"master","last_synced_at":"2025-01-14T04:14:20.768Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://gruntwork.io/","language":"HCL","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/influxdata.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":"CODEOWNERS","security":null,"support":null}},"created_at":"2018-10-05T14:35:59.000Z","updated_at":"2024-07-01T09:50:06.000Z","dependencies_parsed_at":"2022-09-11T04:31:59.652Z","dependency_job_id":null,"html_url":"https://github.com/influxdata/terraform-aws-influx","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/influxdata%2Fterraform-aws-influx","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/influxdata%2Fterraform-aws-influx/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/influxdata%2Fterraform-aws-influx/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/influxdata%2Fterraform-aws-influx/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/influxdata","download_url":"https://codeload.github.com/influxdata/terraform-aws-influx/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241720439,"owners_count":20008975,"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","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-11-14T11:19:19.017Z","updated_at":"2025-03-03T18:42:20.457Z","avatar_url":"https://github.com/influxdata.png","language":"HCL","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Maintained by Gruntwork.io](https://img.shields.io/badge/maintained%20by-gruntwork.io-%235849a6.svg)](https://gruntwork.io/?ref=repo_aws_influx)\n\n# TICK Stack AWS Module\n\nThis repo contains the **official** module for deploying the [TICK stack](https://www.influxdata.com/time-series-platform/) on [AWS](https://aws.amazon.com/)\nusing [Terraform](https://www.terraform.io/) and [Packer](https://www.packer.io/).\n\n![TICK multi-cluster architecture](https://github.com/gruntwork-io/terraform-aws-influx/blob/master/_docs/tick-multi-cluster-architecture.png?raw=true)\n\n## Quick start\n\nIf you want to quickly spin up an InfluxDB cluster, you can run the simple example that is in the root of this repo.\nCheck out [influxdb-cluster-simple example\ndocumentation](https://github.com/gruntwork-io/terraform-aws-influx/blob/master/examples/influxdb-cluster-simple)\nfor instructions.\n\n## What's in this repo\n\nThis repo has the following folder structure:\n\n- [root](https://github.com/gruntwork-io/terraform-aws-influx/tree/master): The root folder contains an example\n  of how to deploy InfluxDB as a single-cluster. See\n  [influxdb-cluster-simple](https://github.com/gruntwork-io/terraform-aws-influx/blob/master/examples/influxdb-cluster-simple)\n  for the documentation.\n- [modules](https://github.com/gruntwork-io/terraform-aws-influx/tree/master/modules): This folder contains the\n  main implementation code for this Module, broken down into multiple standalone submodules.\n- [examples](https://github.com/gruntwork-io/terraform-aws-influx/tree/master/examples): This folder contains\n  examples of how to use the submodules.\n- [test](https://github.com/gruntwork-io/terraform-aws-influx/tree/master/test): Automated tests for the submodules\n  and examples.\n\n## How to use this repo\n\nThe general idea is to:\n\n- ### Telegraf\n\n  1. Use the scripts in the\n     [install-telegraf](https://github.com/gruntwork-io/terraform-aws-influx/tree/master/modules/install-telegraf)\n     modules to create an AMI with Telegraf installed, this AMI will generally be for the Application server.\n\n  1. Configure each application server to execute the\n     [run-telegraf](https://github.com/gruntwork-io/terraform-aws-influx/tree/master/modules/run-telegraf)\n     script during boot.\n\n- ### InfluxDB\n\n  1. Use the scripts in the\n     [install-influxdb](https://github.com/gruntwork-io/terraform-aws-influx/tree/master/modules/install-influxdb)\n     modules to create an AMI with InfluxDB Enterprise installed.\n\n  1. Deploy the AMI across one or more Auto Scaling Groups (ASG) using the [influxdb-cluster\n     module](https://github.com/gruntwork-io/terraform-aws-influx/tree/master/modules/influxdb-cluster).\n\n  1. Configure each server in the ASGs to execute the\n     [run-influxdb](https://github.com/gruntwork-io/terraform-aws-influx/tree/master/modules/run-influxdb)\n     script during boot.\n\n  1. Deploy a load balancer in front of the data node ASG.\n\n- ### Chronograf\n\n  1. Use the scripts in the\n     [install-chronograf](https://github.com/gruntwork-io/terraform-aws-influx/tree/master/modules/install-chronograf)\n     modules to create an AMI with Chronograf installed.\n\n  1. Deploy the AMI in a single Auto Scaling Group (ASG) using the [chronograf-server\n     module](https://github.com/gruntwork-io/terraform-aws-influx/tree/master/modules/chronograf-server).\n\n  1. Configure the server to execute the\n     [run-chronograf](https://github.com/gruntwork-io/terraform-aws-influx/tree/master/modules/run-chronograf)\n     script during boot.\n\n  1. Deploy a load balancer in front of the ASG.\n\n- ### Kapacitor\n\n  1. Use the scripts in the\n     [install-kapacitor](https://github.com/gruntwork-io/terraform-aws-influx/tree/master/modules/install-kapacitor)\n     modules to create an AMI with Kapacitor installed.\n\n  1. Deploy the AMI in a single Auto Scaling Group (ASG) using the [kapacitor-server\n     module](https://github.com/gruntwork-io/terraform-aws-influx/tree/master/modules/kapacitor-server).\n\n  1. Configure the server to execute the\n     [run-kapacitor](https://github.com/gruntwork-io/terraform-aws-influx/tree/master/modules/run-kapacitor)\n     script during boot.\n\n  1. Deploy a load balancer in front of the ASG.\n\nSee the [examples folder](https://github.com/gruntwork-io/terraform-aws-influx/tree/master/examples) for working\nsample code.\n\n## What's a Module?\n\nA Module is a canonical, reusable, best-practices definition for how to run a single piece of infrastructure, such\nas a database or server cluster. Each Module is written using a combination of [Terraform](https://www.terraform.io/)\nand scripts (mostly bash) and include automated tests, documentation, and examples. It is maintained both by the open\nsource community and companies that provide commercial support.\n\nInstead of figuring out the details of how to run a piece of infrastructure from scratch, you can reuse\nexisting code that has been proven in production. And instead of maintaining all that infrastructure code yourself,\nyou can leverage the work of the Module community to pick up infrastructure improvements through\na version number bump.\n\n## Who maintains this Module?\n\nThis Module is maintained by [Gruntwork](http://www.gruntwork.io/). If you're looking for help or commercial\nsupport, send an email to [modules@gruntwork.io](mailto:modules@gruntwork.io?Subject=InfluxDB%20for%20AWS%20Module).\nGruntwork can help with:\n\n- Setup, customization, and support for this Module.\n- Modules for other types of infrastructure, such as VPCs, Docker clusters, databases, and continuous integration.\n- Modules that meet compliance requirements, such as HIPAA.\n- Consulting \u0026 Training on AWS, Terraform, and DevOps.\n\n## How do I contribute to this Module?\n\nContributions are very welcome! Check out the\n[Contribution Guidelines](https://github.com/gruntwork-io/terraform-aws-influx/tree/master/CONTRIBUTING.md) for instructions.\n\n## How is this Module versioned?\n\nThis Module follows the principles of [Semantic Versioning](http://semver.org/). You can find each new release,\nalong with the changelog, in the [Releases Page](../../releases).\n\nDuring initial development, the major version will be 0 (e.g., `0.x.y`), which indicates the code does not yet have a\nstable API. Once we hit `1.0.0`, we will make every effort to maintain a backwards compatible API and use the MAJOR,\nMINOR, and PATCH versions on each release to indicate any incompatibilities.\n\n## License\n\nThis code is released under the Apache 2.0 License. Please see\n[LICENSE](https://github.com/gruntwork-io/terraform-aws-influx/tree/master/LICENSE) and\n[NOTICE](https://github.com/gruntwork-io/terraform-aws-influx/tree/master/NOTICE) for more details.\n\nCopyright \u0026copy; 2018 Gruntwork, Inc.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finfluxdata%2Fterraform-aws-influx","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Finfluxdata%2Fterraform-aws-influx","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finfluxdata%2Fterraform-aws-influx/lists"}