Skip to content

Commit ba148f1

Browse files
alloydb backup (#6866) (#4959)
Closes hashicorp/terraform-provider-google#11754 Signed-off-by: Modular Magician <[email protected]> Signed-off-by: Modular Magician <[email protected]>
1 parent 913f2e8 commit ba148f1

9 files changed

+1016
-5
lines changed

.changelog/6866.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_alloydb_backup`
3+
```

.goreleaser.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ builds:
2929
- goarch: arm64
3030
goos: windows
3131
ldflags:
32-
- -s -w -X github.com/hashicorp/terraform-provider-google-beta/version.ProviderVersion={{.Version}}
32+
- -s -w -X version.ProviderVersion={{.Version}}
3333
mod_timestamp: '{{ .CommitTimestamp }}'
3434
checksum:
3535
extra_files:

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: 289
1059+
// Generated resources: 290
10601060
// Generated IAM resources: 189
1061-
// Total generated resources: 478
1061+
// Total generated resources: 479
10621062
func ResourceMap() map[string]*schema.Resource {
10631063
resourceMap, _ := ResourceMapWithErrors()
10641064
return resourceMap
@@ -1086,6 +1086,7 @@ func ResourceMapWithErrors() (map[string]*schema.Resource, error) {
10861086
"google_active_directory_domain_trust": resourceActiveDirectoryDomainTrust(),
10871087
"google_alloydb_cluster": resourceAlloydbCluster(),
10881088
"google_alloydb_instance": resourceAlloydbInstance(),
1089+
"google_alloydb_backup": resourceAlloydbBackup(),
10891090
"google_api_gateway_api": resourceApiGatewayApi(),
10901091
"google_api_gateway_api_iam_binding": ResourceIamBinding(ApiGatewayApiIamSchema, ApiGatewayApiIamUpdaterProducer, ApiGatewayApiIdParseFunc),
10911092
"google_api_gateway_api_iam_member": ResourceIamMember(ApiGatewayApiIamSchema, ApiGatewayApiIamUpdaterProducer, ApiGatewayApiIdParseFunc),

0 commit comments

Comments
 (0)