Няма описание

Chris Mague 86e95e512c Merge branch 'master' of github.com:Redislabs-Solution-Architects/tfmodule-aws-redis-enterprise преди 5 години
ansible 73434b357e change location преди 5 години
test 31e0ea9062 spin up instaces преди 6 години
.gitignore 669e0572cf setup security groups преди 6 години
.terraform-version d3429014a8 prepare for usage преди 5 години
README.md d3429014a8 prepare for usage преди 5 години
inputs.tf 31e0ea9062 spin up instaces преди 6 години
instances.tf 5b8bc52409 working setup преди 6 години
inventory.tpl 5b8bc52409 working setup преди 6 години
main.tf 669e0572cf setup security groups преди 6 години
outputs.tf bf57705b3d add outputs for fun преди 6 години
provisioning.tf eafc0dfe2f ensure we set open nets correctly преди 5 години
security.tf eafc0dfe2f ensure we set open nets correctly преди 5 години
ssh.tpl 5b8bc52409 working setup преди 6 години
variables.tf eafc0dfe2f ensure we set open nets correctly преди 5 години

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