From da0786bd819cb277c89b24b92ff07e82cee84df9 Mon Sep 17 00:00:00 2001 From: mmartinsky Date: Fri, 16 Nov 2018 16:13:42 -0500 Subject: [PATCH] Add missing data prefix to documentation Using the data attribute requires the data prefix --- website/docs/d/db_cluster_snapshot.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/d/db_cluster_snapshot.html.markdown b/website/docs/d/db_cluster_snapshot.html.markdown index ba532fafb84..af265cabe96 100644 --- a/website/docs/d/db_cluster_snapshot.html.markdown +++ b/website/docs/d/db_cluster_snapshot.html.markdown @@ -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 {