Skip to content

Commit

Permalink
add desc to schema for google_monitoring_dashboard (#3677) (#2216)
Browse files Browse the repository at this point in the history
Co-authored-by: Edward Sun <[email protected]>
Signed-off-by: Modular Magician <[email protected]>

Co-authored-by: Edward Sun <[email protected]>
  • Loading branch information
modular-magician and Edward Sun authored Jun 23, 2020
1 parent 2a6952f commit f67ca42
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
3 changes: 3 additions & 0 deletions .changelog/3677.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:none

```
10 changes: 6 additions & 4 deletions google-beta/resource_monitoring_dashboard.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,14 @@ func resourceMonitoringDashboard() *schema.Resource {
json, _ := structure.NormalizeJsonString(v)
return json
},
Description: `The JSON representation of a dashboard, following the format at https://cloud.google.com/monitoring/api/ref_v3/rest/v1/projects.dashboards.`,
},
"project": {
Type: schema.TypeString,
Optional: true,
Computed: true,
ForceNew: true,
Type: schema.TypeString,
Optional: true,
Computed: true,
ForceNew: true,
Description: `The ID of the project in which the resource belongs. If it is not provided, the provider project is used.`,
},
},
}
Expand Down

0 comments on commit f67ca42

Please sign in to comment.