diff --git a/index.html.markdown b/index.html.markdown
index 815c136223..3fca182572 100644
--- a/index.html.markdown
+++ b/index.html.markdown
@@ -18,14 +18,15 @@ Use the navigation to the left to read about the available data sources.
```
# Shared infrastructure state stored in Atlas
data "terraform_remote_state" "vpc" {
- backend = "atlas"
- config {
- name = "hashicorp/vpc-prod"
- }
+ backend = "atlas"
+
+ config {
+ name = "hashicorp/vpc-prod"
+ }
}
resource "aws_instance" "foo" {
- # ...
- subnet_id = "${data.terraform_remote_state.vpc.subnet_id}"
+ # ...
+ subnet_id = "${data.terraform_remote_state.vpc.subnet_id}"
}
```