بدون توضیح

Chris Mague b5a93b46bc set enable vols to false by default 4 سال پیش
ansible b5a93b46bc set enable vols to false by default 4 سال پیش
test 84cae36ad3 make it possible to disable ephemeral/persistent storage 4 سال پیش
.gitignore a04ccd3a7a ensure that we don't try to attach volumes in ansible if they are disabled 4 سال پیش
.terraform-version a3b2efe75a merge and bump tf version 5 سال پیش
README.md d3429014a8 prepare for usage 5 سال پیش
inputs.tf 31e0ea9062 spin up instaces 6 سال پیش
instances.tf 84cae36ad3 make it possible to disable ephemeral/persistent storage 4 سال پیش
inventory.tpl 5b8bc52409 working setup 6 سال پیش
main.tf 84cae36ad3 make it possible to disable ephemeral/persistent storage 4 سال پیش
outputs.tf b1ec4ad537 output the node ids as well 4 سال پیش
provisioning.tf a04ccd3a7a ensure that we don't try to attach volumes in ansible if they are disabled 4 سال پیش
security.tf 62410d8ffa add in ability to allow public ssh access - off by default 5 سال پیش
ssh.tpl 5b8bc52409 working setup 6 سال پیش
variables.tf b5a93b46bc set enable vols to false by default 4 سال پیش

README.md

A TF module to setup what's necessary to run Redis Enterprise

Sourcing the module:

module "nodes" {
  source           = "github.com/Redislabs-Solution-Architects/tfmodule-aws-redis-enterprise"
  region           = var.region
  profile          = var.profile
  open-nets        = ["1.1.1.1/32", "8.8.8.8/32"] 	#external IPs allowed unfettered access - use w/ caution
  data-node-count  = 3
  re-instance-type = "m5.4xlarge"
  vpc-cidr         = var.vpc-cidr
  vpc-azs          = var.vpc-azs
  vpc-name         = var.vpc-name
  vpc-id           = module.vpc.vpc-id
  vpc-subnets      = module.vpc.subnets-public
  common-tags = {					#tags that go everywhere - you do tag everything right?
    "Owner"   = "maguec"
    "Project" = "example_terraform"
  }
}