Skip to content

Commit

Permalink
updated example in README file
Browse files Browse the repository at this point in the history
  • Loading branch information
young authored Jan 21, 2019
1 parent 6a26311 commit 51306a8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ odule "your_db" {
app_name = "mysql"
stack = "${var.stack}"
vpc = "${module.spin.vpc_id}"
subnets = "${module.spin.private_subnets}"
source_sg = "${module.spin.node_pool_sg}"
dns_zone = "${var.internal_dns_zone}"
dns_zone_id = "${module.spin.hosted_zone_id}"
vpc = "${module.vpc.id}"
subnets = "${module.vpc.private_subnets}"
source_sg = "${var.src_sg_id}"
dns_zone = "${var.dns_zone}"
dns_zone_id = "${var.dns_zone_id}"
tags = "${map("env", "${var.stack}")}"
mysql_version = "5.7.12"
mysql_node_type = "db.r4.large"
Expand Down

0 comments on commit 51306a8

Please sign in to comment.