Skip to content

Commit 3d3467d

Browse files
Added backup support for google_filestore_instance (#6742) (#4963)
Co-authored-by: Cameron Thornton <[email protected]> fixes hashicorp/terraform-provider-google#7655 Signed-off-by: Modular Magician <[email protected]> Signed-off-by: Modular Magician <[email protected]>
1 parent cb72fd2 commit 3d3467d

9 files changed

+1085
-2
lines changed

.changelog/6742.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
```release-note:new-resource
2+
`google_filestore_backup`
3+
```

google-beta/provider.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1056,9 +1056,9 @@ func Provider() *schema.Provider {
10561056
return provider
10571057
}
10581058

1059-
// Generated resources: 290
1059+
// Generated resources: 291
10601060
// Generated IAM resources: 189
1061-
// Total generated resources: 479
1061+
// Total generated resources: 480
10621062
func ResourceMap() map[string]*schema.Resource {
10631063
resourceMap, _ := ResourceMapWithErrors()
10641064
return resourceMap
@@ -1352,6 +1352,7 @@ func ResourceMapWithErrors() (map[string]*schema.Resource, error) {
13521352
"google_essential_contacts_contact": resourceEssentialContactsContact(),
13531353
"google_filestore_instance": resourceFilestoreInstance(),
13541354
"google_filestore_snapshot": resourceFilestoreSnapshot(),
1355+
"google_filestore_backup": resourceFilestoreBackup(),
13551356
"google_firebase_project": resourceFirebaseProject(),
13561357
"google_firebase_project_location": resourceFirebaseProjectLocation(),
13571358
"google_firebase_web_app": resourceFirebaseWebApp(),

0 commit comments

Comments
 (0)