Skip to content

Commit

Permalink
Fix casing of databaseUrl (#8505)
Browse files Browse the repository at this point in the history
  • Loading branch information
rainshen49 authored Aug 1, 2023
1 parent b4ed168 commit 9cd5995
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion mmv1/products/firebasedatabase/Instance.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ properties:
Learn more about using project identifiers in Google's [AIP 2510 standard](https://google.aip.dev/cloud/2510).
output: true
- !ruby/object:Api::Type::String
name: database_url
name: databaseUrl
description: |
The database URL in the form of https://{instance-id}.firebaseio.com for us-central1 instances
or https://{instance-id}.{region}.firebasedatabase.app in other regions.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@ func TestAccFirebaseDatabaseInstance_firebaseDatabaseInstanceStateChange(t *test
ImportState: true,
ImportStateVerify: true,
ImportStateVerifyIgnore: []string{"region", "instance_id", "desired_state"},
Check: resource.ComposeTestCheckFunc(
resource.TestCheckResourceAttrSet("google_firebase_database_instance.updated", "database_url"),
),
},
{
Config: testAccFirebaseDatabaseInstance_firebaseDatabaseInstanceInState(context, "DISABLED"),
Expand Down

0 comments on commit 9cd5995

Please sign in to comment.