Skip to content

Commit

Permalink
Merge pull request #664 from turkenf/bump-tf-5.45.0
Browse files Browse the repository at this point in the history
Bump Terraform provider version to v5.45.0
  • Loading branch information
turkenf authored Dec 5, 2024
2 parents 743ed2c + 17e5b66 commit 1dd915f
Show file tree
Hide file tree
Showing 11 changed files with 124 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ PROJECT_NAME := provider-$(PROVIDER_NAME)
PROJECT_REPO := github.com/upbound/$(PROJECT_NAME)

export TERRAFORM_VERSION := 1.5.5
export TERRAFORM_PROVIDER_VERSION := 5.44.2
export TERRAFORM_PROVIDER_VERSION := 5.45.0
export TERRAFORM_PROVIDER_SOURCE := hashicorp/google
export TERRAFORM_PROVIDER_REPO ?= https://github.com/hashicorp/terraform-provider-google
export TERRAFORM_DOCS_PATH ?= website/docs/r
Expand Down
15 changes: 15 additions & 0 deletions apis/spanner/v1beta1/zz_generated.deepcopy.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 19 additions & 0 deletions apis/spanner/v1beta1/zz_instance_types.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 15 additions & 0 deletions apis/spanner/v1beta2/zz_generated.deepcopy.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 19 additions & 0 deletions apis/spanner/v1beta2/zz_instance_types.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions config/provider-metadata.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -133192,6 +133192,7 @@ resources:
manifest: |-
{
"config": "regional-us-central1",
"default_backup_schedule_type": "AUTOMATIC",
"display_name": "Test Spanner Instance",
"labels": {
"foo": "bar"
Expand Down Expand Up @@ -133311,6 +133312,13 @@ resources:
In order to obtain a valid list please consult the
Configuration section of the docs.
create: '- Default is 20 minutes.'
default_backup_schedule_type: |-
-
(Optional)
Controls the default backup behavior for new databases within the instance.
Note that AUTOMATIC is not permitted for free instances, as backups and backup schedules are not allowed for free instances.
if unset or NONE, no default backup schedule will be created for new databases within the instance.
Possible values are: NONE, AUTOMATIC.
delete: '- Default is 20 minutes.'
display_name: |-
-
Expand Down
2 changes: 1 addition & 1 deletion config/schema.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions examples-generated/spanner/v1beta2/instance.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ metadata:
spec:
forProvider:
config: regional-us-central1
defaultBackupScheduleType: AUTOMATIC
displayName: Test Spanner Instance
labels:
foo: bar
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ require (
github.com/crossplane/upjet v1.4.1-0.20241007154751-5cdf36996e4a
github.com/hashicorp/terraform-json v0.22.1
github.com/hashicorp/terraform-plugin-sdk/v2 v2.33.0
github.com/hashicorp/terraform-provider-google v1.20.1-0.20241011195524-c34353d94531
github.com/hashicorp/terraform-provider-google v1.20.1-0.20241111170140-c875b30c3ae6
github.com/pkg/errors v0.9.1
gopkg.in/alecthomas/kingpin.v2 v2.2.6
k8s.io/apimachinery v0.29.4
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -254,8 +254,8 @@ github.com/hashicorp/terraform-plugin-sdk/v2 v2.33.0 h1:qHprzXy/As0rxedphECBEQAh
github.com/hashicorp/terraform-plugin-sdk/v2 v2.33.0/go.mod h1:H+8tjs9TjV2w57QFVSMBQacf8k/E1XwLXGCARgViC6A=
github.com/hashicorp/terraform-plugin-testing v1.5.1 h1:T4aQh9JAhmWo4+t1A7x+rnxAJHCDIYW9kXyo4sVO92c=
github.com/hashicorp/terraform-plugin-testing v1.5.1/go.mod h1:dg8clO6K59rZ8w9EshBmDp1CxTIPu3yA4iaDpX1h5u0=
github.com/hashicorp/terraform-provider-google v1.20.1-0.20241011195524-c34353d94531 h1:DLf/+VYr3lu99O6DCyAqKupToR8dYMEdf5Pt12O1r18=
github.com/hashicorp/terraform-provider-google v1.20.1-0.20241011195524-c34353d94531/go.mod h1:Iqt6uYg1iDXW2rOMsZQiFpkt2YnD88HfaTEohOJrla4=
github.com/hashicorp/terraform-provider-google v1.20.1-0.20241111170140-c875b30c3ae6 h1:O7G/mWdsQCJJDc2wWmSfEbjsGf0VtxzOVGKZZYj68m4=
github.com/hashicorp/terraform-provider-google v1.20.1-0.20241111170140-c875b30c3ae6/go.mod h1:Iqt6uYg1iDXW2rOMsZQiFpkt2YnD88HfaTEohOJrla4=
github.com/hashicorp/terraform-registry-address v0.2.3 h1:2TAiKJ1A3MAkZlH1YI/aTVcLZRu7JseiXNRHbOAyoTI=
github.com/hashicorp/terraform-registry-address v0.2.3/go.mod h1:lFHA76T8jfQteVfT7caREqguFrW3c4MFSPhZB7HHgUM=
github.com/hashicorp/terraform-svchost v0.1.1 h1:EZZimZ1GxdqFRinZ1tpJwVxxt49xc/S52uzrw4x0jKQ=
Expand Down
42 changes: 42 additions & 0 deletions package/crds/spanner.gcp.upbound.io_instances.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,13 @@ spec:
In order to obtain a valid list please consult the
Configuration section of the docs.
type: string
defaultBackupScheduleType:
description: |-
Controls the default backup behavior for new databases within the instance.
Note that AUTOMATIC is not permitted for free instances, as backups and backup schedules are not allowed for free instances.
if unset or NONE, no default backup schedule will be created for new databases within the instance.
Possible values are: NONE, AUTOMATIC.
type: string
displayName:
description: |-
The descriptive name for this instance as it appears in UIs. Must be
Expand Down Expand Up @@ -267,6 +274,13 @@ spec:
In order to obtain a valid list please consult the
Configuration section of the docs.
type: string
defaultBackupScheduleType:
description: |-
Controls the default backup behavior for new databases within the instance.
Note that AUTOMATIC is not permitted for free instances, as backups and backup schedules are not allowed for free instances.
if unset or NONE, no default backup schedule will be created for new databases within the instance.
Possible values are: NONE, AUTOMATIC.
type: string
displayName:
description: |-
The descriptive name for this instance as it appears in UIs. Must be
Expand Down Expand Up @@ -554,6 +568,13 @@ spec:
In order to obtain a valid list please consult the
Configuration section of the docs.
type: string
defaultBackupScheduleType:
description: |-
Controls the default backup behavior for new databases within the instance.
Note that AUTOMATIC is not permitted for free instances, as backups and backup schedules are not allowed for free instances.
if unset or NONE, no default backup schedule will be created for new databases within the instance.
Possible values are: NONE, AUTOMATIC.
type: string
displayName:
description: |-
The descriptive name for this instance as it appears in UIs. Must be
Expand Down Expand Up @@ -790,6 +811,13 @@ spec:
In order to obtain a valid list please consult the
Configuration section of the docs.
type: string
defaultBackupScheduleType:
description: |-
Controls the default backup behavior for new databases within the instance.
Note that AUTOMATIC is not permitted for free instances, as backups and backup schedules are not allowed for free instances.
if unset or NONE, no default backup schedule will be created for new databases within the instance.
Possible values are: NONE, AUTOMATIC.
type: string
displayName:
description: |-
The descriptive name for this instance as it appears in UIs. Must be
Expand Down Expand Up @@ -903,6 +931,13 @@ spec:
In order to obtain a valid list please consult the
Configuration section of the docs.
type: string
defaultBackupScheduleType:
description: |-
Controls the default backup behavior for new databases within the instance.
Note that AUTOMATIC is not permitted for free instances, as backups and backup schedules are not allowed for free instances.
if unset or NONE, no default backup schedule will be created for new databases within the instance.
Possible values are: NONE, AUTOMATIC.
type: string
displayName:
description: |-
The descriptive name for this instance as it appears in UIs. Must be
Expand Down Expand Up @@ -1184,6 +1219,13 @@ spec:
In order to obtain a valid list please consult the
Configuration section of the docs.
type: string
defaultBackupScheduleType:
description: |-
Controls the default backup behavior for new databases within the instance.
Note that AUTOMATIC is not permitted for free instances, as backups and backup schedules are not allowed for free instances.
if unset or NONE, no default backup schedule will be created for new databases within the instance.
Possible values are: NONE, AUTOMATIC.
type: string
displayName:
description: |-
The descriptive name for this instance as it appears in UIs. Must be
Expand Down

0 comments on commit 1dd915f

Please sign in to comment.