From 69d44f763f337b59fce9c153b0049d9e8decd5c0 Mon Sep 17 00:00:00 2001 From: Paul Hinze Date: Thu, 25 Jul 2019 13:33:41 -0500 Subject: [PATCH] docs: Update example remote_state to use remote backend The "remote" backend supersedes the "atlas" backend so this is the one we should use in the example. --- website/docs/providers/terraform/d/remote_state.html.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/providers/terraform/d/remote_state.html.md b/website/docs/providers/terraform/d/remote_state.html.md index 213dfdd12..4214a3c76 100644 --- a/website/docs/providers/terraform/d/remote_state.html.md +++ b/website/docs/providers/terraform/d/remote_state.html.md @@ -23,7 +23,7 @@ use interpolations when configuring them. ```hcl data "terraform_remote_state" "vpc" { - backend = "atlas" + backend = "remote" config = { name = "hashicorp/vpc-prod" }