Bez popisu

Chris Mague 1d51fa5710 make ssh key configurable před 4 roky
ansible 73434b357e change location před 5 roky
test 1d51fa5710 make ssh key configurable před 4 roky
.gitignore 669e0572cf setup security groups před 5 roky
.terraform-version d3429014a8 prepare for usage před 4 roky
README.md d3429014a8 prepare for usage před 4 roky
inputs.tf 31e0ea9062 spin up instaces před 5 roky
instances.tf 1d51fa5710 make ssh key configurable před 4 roky
inventory.tpl 5b8bc52409 working setup před 5 roky
main.tf 1d51fa5710 make ssh key configurable před 4 roky
outputs.tf bf57705b3d add outputs for fun před 5 roky
provisioning.tf 1d51fa5710 make ssh key configurable před 4 roky
security.tf eafc0dfe2f ensure we set open nets correctly před 4 roky
ssh.tpl 5b8bc52409 working setup před 5 roky
variables.tf 1d51fa5710 make ssh key configurable před 4 roky

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