Skip to content

Commit

Permalink
correct example of apigee envgroup assignment (#5258) (#10230)
Browse files Browse the repository at this point in the history
apigee_environment_group_attachment_basic_test.tf.erb correctly shows that one
needs to use the envgroup _id_ when creating an attachment but
apigee_environment_group_attachment_basic.tf.erb incorrectly shows the name.

Signed-off-by: Modular Magician <[email protected]>
  • Loading branch information
modular-magician authored Oct 1, 2021
1 parent fcea0cb commit 99dae61
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .changelog/5258.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:none

```
2 changes: 1 addition & 1 deletion website/docs/r/apigee_envgroup_attachment.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ resource "google_apigee_environment" "apigee_env" {
}
resource "google_apigee_envgroup_attachment" "" {
envgroup_id = google_apigee_envgroup.apigee_envgroup.name
envgroup_id = google_apigee_envgroup.apigee_envgroup.id
environment = google_apigee_environment.apigee_env.name
}
```
Expand Down

0 comments on commit 99dae61

Please sign in to comment.