Skip to content

Commit

Permalink
Fix issuer uri (#7184) (#5148)
Browse files Browse the repository at this point in the history
* promote resources to GA

* fix issuer uri

Signed-off-by: Modular Magician <magic-modules@google.com>
  • Loading branch information
modular-magician committed Jan 30, 2023
1 parent 046dc68 commit 1525ba5
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
3 changes: 3 additions & 0 deletions .changelog/7184.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:none
Removed google as an IdP in tests
```
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ resource "google_iam_workforce_pool_provider" "example" {
"google.subject" = "assertion.sub"
}
oidc {
issuer_uri = "https://accounts.google.com"
issuer_uri = "https://accounts.thirdparty.com"
client_id = "client-id"
}
}
Expand Down Expand Up @@ -214,7 +214,7 @@ resource "google_iam_workforce_pool_provider" "example" {
"google.subject" = "assertion.sub"
}
oidc {
issuer_uri = "https://accounts.google.com"
issuer_uri = "https://accounts.thirdparty.com"
client_id = "client-id"
}
display_name = "Display name"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ resource "google_iam_workforce_pool_provider" "my_provider" {
"google.subject" = "assertion.sub"
}
oidc {
issuer_uri = "https://accounts.google.com"
issuer_uri = "https://accounts.thirdparty.com"
client_id = "client-id"
}
display_name = "Display name"
Expand All @@ -174,7 +174,7 @@ resource "google_iam_workforce_pool_provider" "my_provider" {
"google.subject" = "false"
}
oidc {
issuer_uri = "https://test.google.com"
issuer_uri = "https://test.thirdparty.com"
client_id = "new-client-id"
}
display_name = "New Display name"
Expand All @@ -201,7 +201,7 @@ resource "google_iam_workforce_pool_provider" "my_provider" {
"google.subject" = "assertion.sub"
}
oidc {
issuer_uri = "https://accounts.google.com"
issuer_uri = "https://accounts.thirdparty.com"
client_id = "client-id"
}
}
Expand Down
4 changes: 2 additions & 2 deletions website/docs/r/iam_workforce_pool_provider.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ resource "google_iam_workforce_pool_provider" "example" {
"google.subject" = "assertion.sub"
}
oidc {
issuer_uri = "https://accounts.google.com"
issuer_uri = "https://accounts.thirdparty.com"
client_id = "client-id"
}
}
Expand All @@ -120,7 +120,7 @@ resource "google_iam_workforce_pool_provider" "example" {
"google.subject" = "assertion.sub"
}
oidc {
issuer_uri = "https://accounts.google.com"
issuer_uri = "https://accounts.thirdparty.com"
client_id = "client-id"
}
display_name = "Display name"
Expand Down

0 comments on commit 1525ba5

Please sign in to comment.