Chris Mague fca91b8d6e update instance | il y a 3 ans | |
---|---|---|
ansible | il y a 3 ans | |
test | il y a 4 ans | |
.gitignore | il y a 4 ans | |
.terraform-version | il y a 4 ans | |
README.md | il y a 4 ans | |
inputs.tf | il y a 3 ans | |
instances.tf | il y a 3 ans | |
inventory.tpl | il y a 5 ans | |
main.tf | il y a 3 ans | |
outputs.tf | il y a 3 ans | |
provisioning.tf | il y a 3 ans | |
security.tf | il y a 4 ans | |
ssh.tpl | il y a 5 ans | |
testernode.tf | il y a 3 ans | |
variables.tf | il y a 3 ans |
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"
}
}