Skip to content

Commit

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

* fix issuer uri
  • Loading branch information
bohengy authored Jan 30, 2023
1 parent 70e71b1 commit 06702ee
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ resource "google_iam_workforce_pool_provider" "<%= ctx[:primary_resource_id] %>"
"google.subject" = "assertion.sub"
}
oidc {
issuer_uri = "https://accounts.google.com"
issuer_uri = "https://accounts.thirdparty.com"
client_id = "client-id"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ resource "google_iam_workforce_pool_provider" "<%= ctx[:primary_resource_id] %>"
"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 @@ -148,7 +148,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 @@ -175,7 +175,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 @@ -202,7 +202,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

0 comments on commit 06702ee

Please sign in to comment.