Advertisement
Guest User

Untitled

a guest
Feb 4th, 2016
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. ```
  2. module "rds" {
  3. source = "<module-source containing with ref>"
  4. multi_az = "${var.rds_multi_az}"
  5. spath_db_instance_class = "${var.rds_instance_type}"
  6. spath_orgname = "${var.orgname}"
  7. iam_rds_user = "${var.iam_rds_user}"
  8. iam_rds_password = "${var.iam_rds_password}"
  9. spath_rds_sg_id = "${module.vpc.default_sg_id}"
  10. spath_rds_private_subnet_a_id = "${module.vpc.private_subnet_a_id}"
  11. spath_rds_private_subnet_b_id = "${module.vpc.private_subnet_b_id}"
  12. spath_rds_private_subnet_c_id = "${module.vpc.private_subnet_c_id}"
  13. aws_region = "${var.aws_region}"
  14. }
  15. ```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement