Skip to content

Commit

Permalink
Add missing dependency to ensure permission in place before creation (#…
Browse files Browse the repository at this point in the history
…9810) (#16987)

[upstream:9316d5abafa9e4aeaf10d62f19e5dbcda6e3eae2]

Signed-off-by: Modular Magician <[email protected]>
  • Loading branch information
modular-magician authored Jan 12, 2024
1 parent b8818a7 commit 2ea5e6a
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .changelog/9810.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:none

```
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,10 @@ resource "google_storage_insights_report_config" "config" {
destination_path = "test-insights-reports"
}
}
depends_on = [
google_storage_bucket_iam_member.admin
]
}
resource "google_storage_bucket" "report_bucket" {
Expand Down
4 changes: 4 additions & 0 deletions website/docs/r/storage_insights_report_config.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,10 @@ resource "google_storage_insights_report_config" "config" {
destination_path = "test-insights-reports"
}
}
depends_on = [
google_storage_bucket_iam_member.admin
]
}
resource "google_storage_bucket" "report_bucket" {
Expand Down

0 comments on commit 2ea5e6a

Please sign in to comment.