Ingen beskrivning

Chris Mague b1ec4ad537 output the node ids as well 4 år sedan
ansible 73434b357e change location 5 år sedan
test 62410d8ffa add in ability to allow public ssh access - off by default 5 år sedan
.gitignore 669e0572cf setup security groups 6 år sedan
.terraform-version a3b2efe75a merge and bump tf version 5 år sedan
README.md d3429014a8 prepare for usage 5 år sedan
inputs.tf 31e0ea9062 spin up instaces 6 år sedan
instances.tf a3b2efe75a merge and bump tf version 5 år sedan
inventory.tpl 5b8bc52409 working setup 6 år sedan
main.tf 1d51fa5710 make ssh key configurable 5 år sedan
outputs.tf b1ec4ad537 output the node ids as well 4 år sedan
provisioning.tf 1d51fa5710 make ssh key configurable 5 år sedan
security.tf 62410d8ffa add in ability to allow public ssh access - off by default 5 år sedan
ssh.tpl 5b8bc52409 working setup 6 år sedan
variables.tf 62410d8ffa add in ability to allow public ssh access - off by default 5 år sedan

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"
  }
}