Home
Softono

Terraform Aws Scylla

Open source HCL
22
Stars
9
Forks
8
Issues
3
Watchers
5 years
Last Commit

 About Terraform Aws Scylla

Terraform module for creating Scylla clusters on AWS

Platforms

Web Self-hosted Cloud

Languages

HCL

Need Help Installing Terraform Aws Scylla?

We provide expert installation service for this software. Our team will install, configure, and secure Terraform Aws Scylla on your server. plans start at just $30.

Terraform Aws Scylla

View on GitHub

terraform-aws-scylladb

Terraform module for deploying ScyllaDB cluster on AWS. It also deploys Scylla Monitoring Stack alongside the cluster, to monitor its metrics.

Example

$ cat main.tf
module "scylla-cluster" {
	source  = "github.com/rjeczalik/terraform-aws-scylla"

	aws_access_key = "AKIA..."
	aws_secret_key = "..."
	aws_instance_type = "i3.large"

	cluster_count = 3
	cluster_user_cidr = ["0.0.0.0/0"]
}

Usage

Once you configure the module, create the cluster with:

$ terraform apply -no-color -auto-approve

To destroy the cluster, tear it down with:

$ terraform destroy -auto-approve

Related modules