Skip to content

Commit

Permalink
website/docs: update example in remote_state.html.md (#21661)
Browse files Browse the repository at this point in the history
  • Loading branch information
rayrutjes authored and mildwonkey committed Jun 10, 2019
1 parent 89aa62c commit 0abb0a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/docs/providers/terraform/d/remote_state.html.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ data "terraform_remote_state" "vpc" {
# Terraform >= 0.12
resource "aws_instance" "foo" {
# ...
subnet_id = "${data.terraform_remote_state.vpc.outputs.subnet_id}"
subnet_id = data.terraform_remote_state.vpc.outputs.subnet_id
}
# Terraform <= 0.11
Expand Down

0 comments on commit 0abb0a0

Please sign in to comment.