Skip to content

Commit

Permalink
made sign_in in google_identity_platform_config O+C (#9001) (#15907)
Browse files Browse the repository at this point in the history
Signed-off-by: Modular Magician <magic-modules@google.com>
  • Loading branch information
modular-magician committed Sep 19, 2023
1 parent 36d9c1a commit 05b68ef
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .changelog/9001.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:bug
identityplayform: fixed a potential perma-diff for `sign_in` in `google_identity_platform_config` resource
```
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,7 @@ func ResourceIdentityPlatformConfig() *schema.Resource {
},
"sign_in": {
Type: schema.TypeList,
Computed: true,
Optional: true,
Description: `Configuration related to local sign in methods.`,
MaxItems: 1,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,6 @@ resource "google_identity_platform_config" "default" {
}

func TestAccIdentityPlatformConfig_identityPlatformConfigMinimalExample(t *testing.T) {
acctest.SkipIfVcr(t)
t.Parallel()

context := map[string]interface{}{
Expand Down Expand Up @@ -164,6 +163,10 @@ resource "google_project_service" "identitytoolkit" {
resource "google_identity_platform_config" "default" {
project = google_project.default.project_id
depends_on = [
google_project_service.identitytoolkit
]
}
`, context)
}

0 comments on commit 05b68ef

Please sign in to comment.