Skip to content

Commit

Permalink
Add a variable to stage for documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
FreekingDean committed Jun 6, 2019
1 parent df20884 commit 6a4a6b2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion website/docs/d/api_gateway_stage.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,12 @@ data "aws_api_gateway_stage" "production" {
}
resource "aws_api_gateway_stage" "production" {
stage_name = "prod"
stage_name = "production"
rest_api_id = "${aws_api_gateway_rest_api.test.id}"
deployment_id = "${data.aws_api_gateway_stage.deployment_id}"
variables = {
some_variable = "value"
}
}
```

Expand Down

0 comments on commit 6a4a6b2

Please sign in to comment.