Aucune description

Chris Mague d3429014a8 prepare for usage il y a 5 ans
ansible 9ece5ebe2c use flash drives il y a 5 ans
test 31e0ea9062 spin up instaces il y a 6 ans
.gitignore 669e0572cf setup security groups il y a 6 ans
.terraform-version d3429014a8 prepare for usage il y a 5 ans
README.md d3429014a8 prepare for usage il y a 5 ans
inputs.tf 31e0ea9062 spin up instaces il y a 6 ans
instances.tf 5b8bc52409 working setup il y a 6 ans
inventory.tpl 5b8bc52409 working setup il y a 6 ans
main.tf 669e0572cf setup security groups il y a 6 ans
outputs.tf bf57705b3d add outputs for fun il y a 6 ans
provisioning.tf 5b8bc52409 working setup il y a 6 ans
security.tf 789df01676 ready for install il y a 6 ans
ssh.tpl 5b8bc52409 working setup il y a 6 ans
variables.tf d4368cbae6 fix default size il y a 6 ans

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