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

enhancement: Promote Firestore database resource to GA #13874

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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .changelog/7360.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:enhancement
firestore: Promote `google_firestore_database` to GA
```
5 changes: 3 additions & 2 deletions google/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -991,9 +991,9 @@ func Provider() *schema.Provider {
return provider
}

// Generated resources: 268
// Generated resources: 269
// Generated IAM resources: 174
// Total generated resources: 442
// Total generated resources: 443
func ResourceMap() map[string]*schema.Resource {
resourceMap, _ := ResourceMapWithErrors()
return resourceMap
Expand Down Expand Up @@ -1262,6 +1262,7 @@ func ResourceMapWithErrors() (map[string]*schema.Resource, error) {
"google_filestore_backup": ResourceFilestoreBackup(),
"google_filestore_instance": ResourceFilestoreInstance(),
"google_filestore_snapshot": ResourceFilestoreSnapshot(),
"google_firestore_database": ResourceFirestoreDatabase(),
"google_firestore_document": ResourceFirestoreDocument(),
"google_firestore_index": ResourceFirestoreIndex(),
"google_game_services_game_server_cluster": ResourceGameServicesGameServerCluster(),
Expand Down
Loading