diff --git a/d/remote_state.html.md b/d/remote_state.html.md
index 683ba264e3..5adc371705 100644
--- a/d/remote_state.html.md
+++ b/d/remote_state.html.md
@@ -22,7 +22,7 @@ data "terraform_remote_state" "vpc" {
resource "aws_instance" "foo" {
# ...
- subnet_id = "${data.terraform_remote_state.vpc.output.subnet_id}"
+ subnet_id = "${data.terraform_remote_state.vpc.subnet_id}"
}
```
diff --git a/index.html.markdown b/index.html.markdown
index 20a9dfee3c..aba8053494 100644
--- a/index.html.markdown
+++ b/index.html.markdown
@@ -26,6 +26,6 @@ data "terraform_remote_state" "vpc" {
resource "aws_instance" "foo" {
# ...
- subnet_id = "${data.terraform_remote_state.vpc.output.subnet_id}"
+ subnet_id = "${data.terraform_remote_state.vpc.subnet_id}"
}
```