Sin descripción

Chris Mague df454d8e1c add outputs hace 5 años
ansible 73434b357e change location hace 5 años
test 1d51fa5710 make ssh key configurable hace 5 años
.gitignore 669e0572cf setup security groups hace 6 años
.terraform-version a3b2efe75a merge and bump tf version hace 5 años
README.md d3429014a8 prepare for usage hace 5 años
inputs.tf 31e0ea9062 spin up instaces hace 6 años
instances.tf a3b2efe75a merge and bump tf version hace 5 años
inventory.tpl 5b8bc52409 working setup hace 6 años
main.tf 1d51fa5710 make ssh key configurable hace 5 años
outputs.tf df454d8e1c add outputs hace 5 años
provisioning.tf 1d51fa5710 make ssh key configurable hace 5 años
security.tf d8835165c2 update with all necessary variables hace 5 años
ssh.tpl 5b8bc52409 working setup hace 6 años
variables.tf d8835165c2 update with all necessary variables hace 5 años

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