Commit 7302302f authored by Chris Adams's avatar Chris Adams Committed by GitHub

docs: Document create_database_subnet_group requiring database_subnets (#424)

I ran into the same issue as https://github.com/terraform-aws-modules/terraform-aws-vpc/issues/126 because there's nothing in the documentation making it clear that `create_database_subnet_group` only has an effect if you also specify `database_subnets`.
parent d9e7a6f8
...@@ -209,7 +209,7 @@ variable "create_elasticache_subnet_route_table" { ...@@ -209,7 +209,7 @@ variable "create_elasticache_subnet_route_table" {
} }
variable "create_database_subnet_group" { variable "create_database_subnet_group" {
description = "Controls if database subnet group should be created" description = "Controls if database subnet group should be created (n.b. database_subnets must also be set)"
type = bool type = bool
default = true default = true
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment