Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: Document create_database_subnet_group requiring database_subnets #424

Merged
merged 1 commit into from
Apr 2, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Document create_database_subnet_group requiring database_subnets
I ran into the same issue as #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`.
  • Loading branch information
acdha authored Apr 1, 2020
commit 1aa51a2384415ddc5be5c8f1aa9f38012e97019a
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ variable "create_elasticache_subnet_route_table" {
}

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
default = true
}
Expand Down