Skip to content

Commit

Permalink
use "${}" in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
k24d committed Feb 14, 2020
1 parent 28629d8 commit 0cb5cee
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions website/docs/r/amplify_webhook.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ resource "aws_amplify_app" "app" {
}
resource "aws_amplify_branch" "master" {
app_id = aws_amplify_app.app.id
app_id = "${aws_amplify_app.app.id}"
branch_name = "master"
}
resource "aws_amplify_webhook" "master" {
app_id = aws_amplify_app.app.id
branch_name = aws_amplify_branch.master.branch_name
app_id = "${aws_amplify_app.app.id}"
branch_name = "${aws_amplify_branch.master.branch_name}"
description = "triggermaster"
}
```
Expand Down

0 comments on commit 0cb5cee

Please sign in to comment.