Skip to content

Commit

Permalink
Add missing data prefix to documentation
Browse files Browse the repository at this point in the history
Using the data attribute requires the data prefix
  • Loading branch information
mmartinsky authored Nov 16, 2018
1 parent d82e39b commit da0786b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/docs/d/db_cluster_snapshot.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ data "aws_db_cluster_snapshot" "development_final_snapshot" {
# a new dev database.
resource "aws_rds_cluster" "aurora" {
cluster_identifier = "development_cluster"
snapshot_identifier = "${aws_db_cluster_snapshot.development_final_snapshot.id}"
snapshot_identifier = "${data.aws_db_cluster_snapshot.development_final_snapshot.id}"
db_subnet_group_name = "my_db_subnet_group"
lifecycle {
Expand Down

0 comments on commit da0786b

Please sign in to comment.