Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added backup support for google_filestore_instance #13209

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 3 additions & 0 deletions .changelog/6742.txt
@@ -0,0 +1,3 @@
```release-note:new-resource
`google_filestore_backup`
```
5 changes: 3 additions & 2 deletions google/provider.go
Expand Up @@ -934,9 +934,9 @@ func Provider() *schema.Provider {
return provider
}

// Generated resources: 250
// Generated resources: 251
// Generated IAM resources: 156
// Total generated resources: 406
// Total generated resources: 407
func ResourceMap() map[string]*schema.Resource {
resourceMap, _ := ResourceMapWithErrors()
return resourceMap
Expand Down Expand Up @@ -1177,6 +1177,7 @@ func ResourceMapWithErrors() (map[string]*schema.Resource, error) {
"google_essential_contacts_contact": resourceEssentialContactsContact(),
"google_filestore_instance": resourceFilestoreInstance(),
"google_filestore_snapshot": resourceFilestoreSnapshot(),
"google_filestore_backup": resourceFilestoreBackup(),
"google_firestore_index": resourceFirestoreIndex(),
"google_firestore_document": resourceFirestoreDocument(),
"google_game_services_realm": resourceGameServicesRealm(),
Expand Down