Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/influxdata/terraform-aws-influxdb
Deploys InfluxDB Enterprise to AWS
https://github.com/influxdata/terraform-aws-influxdb
devops influx influxdb terraform terraform-modules
Last synced: 4 days ago
JSON representation
Deploys InfluxDB Enterprise to AWS
- Host: GitHub
- URL: https://github.com/influxdata/terraform-aws-influxdb
- Owner: influxdata
- Created: 2017-07-26T02:27:50.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2021-05-25T20:00:47.000Z (over 3 years ago)
- Last Synced: 2024-08-17T01:10:49.836Z (3 months ago)
- Topics: devops, influx, influxdb, terraform, terraform-modules
- Language: HCL
- Homepage: https://www.influxdata.com
- Size: 28.3 KB
- Stars: 29
- Watchers: 7
- Forks: 19
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Terraform InfluxDB Module
Terraform module for deploying Influx OSS and Enterprise to AWS EC2.
This module creates and manages the following resources:
* Meta and Data node instances including associated EBS volumes.
* Security groups for cluster communications.
* Route53 Records for instances in a specified zone.
* Optional tagging of all resources for easy identification of resources. Useful with third-party configuration management tooling.For the sake of deployment flexibility, this module intentionally leaves host level provisioning up to the user. For example users may like to use Ansible, Puppet or Chef to complete the installation procedure. A default AMI is not specified and should to be provided by the user.
Optional tags can be specified making this module easy to use with third-party configuration management systems as outlined in this [Ansible guide](http://docs.ansible.com/ansible/latest/intro_dynamic_inventory.html#example-aws-ec2-external-inventory-script)
## Usage Example
The following example demonstrates deploying a single Influx Enterprise cluster to production. This configuration will deploy 4 data nodes, 3 meta nodes, tagging all resources with an "Environment" tag set to _production_.
See the inputs doc or variable definitions file for more configuration options.
```
provider "aws" {
region = "us-east-2"
access_key = "your-access-key"
secret_key = "your-secret-key"module "influxdb" {
source = "influxdata/influxdb/aws"
version = "1.0.6"data_instances = 2
data_disk_size = 500
data_disk_iops = 1000
meta_instances = 3
ami = "ami-0f42acddbf04bd1b6"
subnet_id = "subnet-8d5c5643"
vpc_id = "vpc-b535e44g"
instance_type = "m4.large"
key_name = "ignacio"
zone_id = "Z044144236NI0U6A5435435"
security_group = ["sg-0c8dc3456"]
}
```