Skip to content

Commit

Permalink
Fix fetching of app_engine_standard_app_version data (#3536) (#6435)
Browse files Browse the repository at this point in the history
Signed-off-by: Modular Magician <[email protected]>
  • Loading branch information
modular-magician authored May 20, 2020
1 parent 1be3577 commit 75273fa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .changelog/3536.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:bug
appengine: added ability to fully sync `StandardAppVersion` resources
```
2 changes: 1 addition & 1 deletion google/resource_app_engine_standard_app_version.go
Original file line number Diff line number Diff line change
Expand Up @@ -548,7 +548,7 @@ func resourceAppEngineStandardAppVersionCreate(d *schema.ResourceData, meta inte
func resourceAppEngineStandardAppVersionRead(d *schema.ResourceData, meta interface{}) error {
config := meta.(*Config)

url, err := replaceVars(d, config, "{{AppEngineBasePath}}apps/{{project}}/services/{{service}}/versions/{{version_id}}")
url, err := replaceVars(d, config, "{{AppEngineBasePath}}apps/{{project}}/services/{{service}}/versions/{{version_id}}?view=FULL")
if err != nil {
return err
}
Expand Down

0 comments on commit 75273fa

Please sign in to comment.