Aucune description

Chris Mague fca91b8d6e update instance il y a 3 ans
ansible 2352892b4a ansible to setup a good tester node il y a 3 ans
test 84cae36ad3 make it possible to disable ephemeral/persistent storage il y a 4 ans
.gitignore a04ccd3a7a ensure that we don't try to attach volumes in ansible if they are disabled il y a 4 ans
.terraform-version b637181994 bump required tf version il y a 4 ans
README.md d3429014a8 prepare for usage il y a 4 ans
inputs.tf 6ade5f0e5d ensure we do not get the eks AMIs il y a 3 ans
instances.tf fca91b8d6e update instance il y a 3 ans
inventory.tpl 5b8bc52409 working setup il y a 5 ans
main.tf b3f28db497 setup a tester node il y a 3 ans
outputs.tf b3f28db497 setup a tester node il y a 3 ans
provisioning.tf 2352892b4a ansible to setup a good tester node il y a 3 ans
security.tf d60669eb35 remove all interpolation where not required il y a 4 ans
ssh.tpl 5b8bc52409 working setup il y a 5 ans
testernode.tf b3f28db497 setup a tester node il y a 3 ans
variables.tf fca91b8d6e update instance il y a 3 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"
  }
}